mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
fb239054a0
follow up from #95 - converts components to use ember-cli-shims
48 lines
1.0 KiB
JavaScript
48 lines
1.0 KiB
JavaScript
/*global device*/
|
|
import computed from 'ember-computed';
|
|
import GhostInput from 'ghost-admin/components/gh-input';
|
|
|
|
/**
|
|
* This doesn't override the OneWayInput component because
|
|
* we need finer control. It borrows
|
|
* parts from both the OneWayInput component and Ember's default
|
|
* input component
|
|
*/
|
|
const TrimFocusInputComponent = GhostInput.extend({
|
|
|
|
shouldFocus: true,
|
|
|
|
attributeBindings: ['autofocus'],
|
|
|
|
autofocus: computed(function () {
|
|
if (this.get('shouldFocus')) {
|
|
return (device.ios()) ? false : 'autofocus';
|
|
}
|
|
|
|
return false;
|
|
}),
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
},
|
|
|
|
didInsertElement() {
|
|
this._super(...arguments);
|
|
this._focus();
|
|
},
|
|
|
|
sanitizeInput(input) {
|
|
return input.trim();
|
|
},
|
|
|
|
_focus() {
|
|
// Until mobile safari has better support
|
|
// for focusing, we just ignore it
|
|
if (this.get('shouldFocus') && !device.ios()) {
|
|
this.element.focus();
|
|
}
|
|
}
|
|
});
|
|
|
|
export default TrimFocusInputComponent;
|