Last active
April 25, 2019 16:06
-
-
Save feanor07/0b92fae257f817943e595f78a0f8de11 to your computer and use it in GitHub Desktop.
ember-power-select onfocus problem
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
const {isBlank} = Ember; | |
export default Ember.Component.extend({ | |
cities: ['Barcelona', 'London', 'New York', 'Porto'], | |
actions: { | |
handleFocus(select, e) { | |
if (this.focusComesFromOutside(e)) { | |
select.actions.open(); | |
} | |
}, | |
handleBlur() { | |
console.debug('EPS blurred!'); | |
} | |
}, | |
// Methods | |
focusComesFromOutside(e) { | |
let blurredEl = e.relatedTarget; | |
if (isBlank(blurredEl)) { | |
return false; | |
} | |
return !blurredEl.classList.contains('ember-power-select-search-input'); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
cities: ['Barcelona', 'London', 'New York', 'Porto'], | |
actions: { | |
handleFocus(select, e) { | |
if (this.focusComesFromOutside(e)) { | |
select.actions.open(); | |
} | |
}, | |
handleBlur() { | |
console.debug('EPS blurred!'); | |
} | |
}, | |
// Methods | |
focusComesFromOutside(e) { | |
let blurredEl = e.relatedTarget; | |
return !blurredEl || !blurredEl.classList.contains('ember-power-select-search-input'); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.11.0", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "2.10.2", | |
"ember-data": "2.11.0", | |
"ember-template-compiler": "2.10.2", | |
"ember-testing": "2.10.2" | |
}, | |
"addons": { | |
"ember-power-select": "1.4.3" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment