mirror of
https://github.com/flarum/framework.git
synced 2024-12-05 09:03:36 +08:00
39 lines
985 B
JavaScript
39 lines
985 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend({
|
|
classNames: ['search-input'],
|
|
classNameBindings: ['active', 'value:clearable'],
|
|
|
|
didInsertElement: function() {
|
|
var self = this;
|
|
this.$().find('input').on('keydown', function(e) {
|
|
if (e.which == 27) {
|
|
self.clear();
|
|
}
|
|
});
|
|
this.$().find('.clear').on('mousedown', function(e) {
|
|
e.preventDefault();
|
|
}).on('click', function(e) {
|
|
e.preventDefault();
|
|
self.clear();
|
|
})
|
|
},
|
|
|
|
clear: function() {
|
|
this.set('value', '');
|
|
this.sendAction('action', '');
|
|
this.$().find('input').focus();
|
|
},
|
|
|
|
willDestroyElement: function() {
|
|
this.$().find('input').off('keydown');
|
|
this.$().find('.clear').off('mousedown click');
|
|
},
|
|
|
|
actions: {
|
|
search: function() {
|
|
this.sendAction('action', this.get('value'));
|
|
}
|
|
}
|
|
});
|