Skip to content

Instantly share code, notes, and snippets.

@iezer
Last active June 14, 2017 19:56
Show Gist options
  • Save iezer/ea3483d5872980ef3740c076713fcf45 to your computer and use it in GitHub Desktop.
Save iezer/ea3483d5872980ef3740c076713fcf45 to your computer and use it in GitHub Desktop.
multiple focus events
import Ember from 'ember';
export default Ember.Component.extend({
isFocused: false,
secondaryIsFocused: false,
_bindFocusHandler: Ember.on('didInsertElement', function() {
this.$()
.on('focusout', 'input,textarea', this.set.bind(this, 'isFocused', false))
.on('focusin', 'input,textarea', this.set.bind(this, 'isFocused', true));
}),
_unbindFocusHandler: Ember.on('willDestroyElement', function() {
this.$().off('focusin focusout', 'input,textarea');
}),
actions: {
onFocusIn() {
this.set('secondaryIsFocused', true);
},
onFocusOut() {
this.set('secondaryIsFocused', false);
}
}
});
import Ember from 'ember';
export default Ember.Component.extend({
isFocused: false,
secondaryIsFocused: false,
_bindFocusHandler: Ember.on('didInsertElement', function() {
this.$()
.on('focusout', 'input,textarea', () => { this.set('isFocused', false); })
.on('focusin', 'input,textarea', () => { this.set('isFocused', true); });
}),
_unbindFocusHandler: Ember.on('willDestroyElement', function() {
this.$().off('focusin focusout', 'input,textarea');
}),
actions: {
onFocusIn() {
this.set('secondaryIsFocused', true);
},
onFocusOut() {
this.set('secondaryIsFocused', false);
}
}
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
<p>
my-input: Focus in and focus out handlers fire
{{my-input}}
</p>
<p>
my-bind-input: Focus in fires but focus out does not
{{my-bind-input}}
</p>
{{input focus-in=(action 'onFocusIn') focus-out=(action 'onFocusOut')}}
focused: {{isFocused}}
secondary-is-focused {{secondaryIsFocused}}
{{input focus-in=(action 'onFocusIn') focus-out=(action 'onFocusOut')}}
focused: {{isFocused}}
secondary-is-focused {{secondaryIsFocused}}
{
"version": "0.12.1",
"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.12.0",
"ember-template-compiler": "2.12.0",
"ember-testing": "2.12.0"
},
"addons": {
"ember-data": "2.12.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment