mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
feac9682d0
- Refactor to handle deprecations including removal of all Views, ArrayControllers, and ItemControllers.
37 lines
843 B
JavaScript
37 lines
843 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend({
|
|
_file: null,
|
|
|
|
uploadButtonText: 'Text',
|
|
|
|
uploadButtonDisabled: true,
|
|
|
|
onUpload: null,
|
|
onAdd: null,
|
|
|
|
shouldResetForm: true,
|
|
|
|
change: function (event) {
|
|
this.set('uploadButtonDisabled', false);
|
|
this.sendAction('onAdd');
|
|
this._file = event.target.files[0];
|
|
},
|
|
|
|
actions: {
|
|
upload: function () {
|
|
if (!this.get('uploadButtonDisabled') && this._file) {
|
|
this.sendAction('onUpload', this._file);
|
|
}
|
|
|
|
// Prevent double post by disabling the button.
|
|
this.set('uploadButtonDisabled', true);
|
|
|
|
// Reset form
|
|
if (this.get('shouldResetForm')) {
|
|
this.$().closest('form').get(0).reset();
|
|
}
|
|
}
|
|
}
|
|
});
|