mirror of
https://github.com/discourse/discourse.git
synced 2024-12-17 00:43:41 +08:00
64 lines
1.6 KiB
JavaScript
64 lines
1.6 KiB
JavaScript
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
import { ajax } from 'discourse/lib/ajax';
|
|
import { default as computed, observes } from 'ember-addons/ember-computed-decorators';
|
|
import { popupAjaxError } from 'discourse/lib/ajax-error';
|
|
|
|
export default Ember.Controller.extend(ModalFunctionality, {
|
|
adminCustomizeThemesShow: Ember.inject.controller(),
|
|
|
|
onShow() {
|
|
this.set('name', null);
|
|
this.set('fileSelected', false);
|
|
},
|
|
|
|
enabled: Em.computed.and('nameValid', 'fileSelected'),
|
|
disabled: Em.computed.not('enabled'),
|
|
|
|
@computed('name')
|
|
nameValid(name) {
|
|
return name && name.match(/^[a-zA-Z0-9-_]+$/);
|
|
},
|
|
|
|
@observes('name')
|
|
uploadChanged(){
|
|
let file = $('#file-input')[0];
|
|
this.set('fileSelected', file && file.files[0]);
|
|
},
|
|
|
|
actions: {
|
|
updateName() {
|
|
let name = this.get('name');
|
|
if (Em.isEmpty(name)) {
|
|
name = $('#file-input')[0].files[0].name;
|
|
this.set('name', name.split(".")[0]);
|
|
}
|
|
this.uploadChanged();
|
|
},
|
|
upload() {
|
|
|
|
let options = {
|
|
type: 'POST'
|
|
};
|
|
|
|
options.processData = false;
|
|
options.contentType = false;
|
|
options.data = new FormData();
|
|
let file = $('#file-input')[0].files[0];
|
|
options.data.append('file', file);
|
|
|
|
ajax('/admin/themes/upload_asset', options).then(result=>{
|
|
let upload = {
|
|
upload_id: result.upload_id,
|
|
name: this.get('name'),
|
|
original_filename: file.name
|
|
};
|
|
this.get('adminCustomizeThemesShow').send('addUpload', upload);
|
|
this.send('closeModal');
|
|
}).catch(e => {
|
|
popupAjaxError(e);
|
|
});
|
|
|
|
}
|
|
}
|
|
});
|