1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/components/gh-upload-modal.js

75 lines
2.2 KiB
JavaScript
Raw Normal View History

import ModalDialog from 'ghost/components/gh-modal-dialog';
2014-06-06 16:44:09 +02:00
import upload from 'ghost/assets/lib/uploader';
import cajaSanitizers from 'ghost/utils/caja-sanitizers';
2014-03-31 06:07:05 +02:00
var UploadModal = ModalDialog.extend({
layoutName: 'components/gh-modal-dialog',
2014-03-31 06:07:05 +02:00
didInsertElement: function () {
this._super();
upload.call(this.$('.js-drop-zone'), {fileStorage: this.get('config.fileStorage')});
2014-06-06 16:44:09 +02:00
},
keyDown: function () {
this.setErrorState(false);
},
setErrorState: function (state) {
if (state) {
this.$('.js-upload-url').addClass('error');
} else {
this.$('.js-upload-url').removeClass('error');
}
},
2014-06-06 16:44:09 +02:00
confirm: {
reject: {
func: function () { // The function called on rejection
return true;
},
buttonClass: 'btn btn-default',
2014-06-06 16:44:09 +02:00
text: 'Cancel' // The reject button text
},
accept: {
2014-08-06 13:34:08 +02:00
buttonClass: 'btn btn-blue right',
text: 'Save', // The accept button text: 'Save'
2014-06-06 16:44:09 +02:00
func: function () {
var imageType = 'model.' + this.get('imageType'),
value;
2014-03-31 06:07:05 +02:00
2014-06-06 16:44:09 +02:00
if (this.$('.js-upload-url').val()) {
value = this.$('.js-upload-url').val();
if (!Ember.isEmpty(value) && !cajaSanitizers.url(value)) {
this.setErrorState(true);
return {message: 'Image URI is not valid'};
}
2014-06-06 16:44:09 +02:00
} else {
value = this.$('.js-upload-target').attr('src');
2014-06-06 16:44:09 +02:00
}
this.set(imageType, value);
2014-06-06 16:44:09 +02:00
return true;
}
}
2014-03-31 06:07:05 +02:00
},
actions: {
closeModal: function () {
this.sendAction();
},
confirm: function (type) {
var result,
func = this.get('confirm.' + type + '.func');
2014-03-31 06:07:05 +02:00
if (typeof func === 'function') {
result = func.apply(this);
}
if (!result.message) {
this.sendAction();
this.sendAction('confirm' + type);
2014-03-31 06:07:05 +02:00
}
}
2014-06-06 16:44:09 +02:00
}
2014-03-31 06:07:05 +02:00
});
export default UploadModal;