forked from verdnatura/hedera-web
67 lines
1.3 KiB
JavaScript
67 lines
1.3 KiB
JavaScript
require('./style.scss');
|
|
var Component = require('vn/component');
|
|
var Toast = require('../toast');
|
|
var Tpl = require('./ui.xml').default;
|
|
|
|
/**
|
|
* A form to handle the image database, it allows to add new images or
|
|
* replace it.
|
|
*/
|
|
module.exports = new Class({
|
|
Extends: Component,
|
|
Properties: {
|
|
/**
|
|
* The REST connection used to upload the image.
|
|
*/
|
|
conn: {
|
|
type: Vn.JsonConnection
|
|
}
|
|
},
|
|
|
|
initialize: function(props) {
|
|
this.loadTemplateFromString(Tpl);
|
|
|
|
var self = this;
|
|
this.$.form.onsubmit = function() {
|
|
self._onSubmit(); return false;
|
|
};
|
|
|
|
Component.prototype.initialize.call(this, props);
|
|
},
|
|
|
|
onNameChange: function() {
|
|
var newValue = this.$.name.value;
|
|
|
|
if (!newValue)
|
|
newValue = null
|
|
|
|
this.emit('name-changed', newValue);
|
|
},
|
|
|
|
_onSubmit: function() {
|
|
this.$.hiddenName.value = this.$.name.value;
|
|
this.$.submit.disabled = true;
|
|
this.$.spinner.start();
|
|
|
|
this.conn.sendFormMultipart(this.$.form,
|
|
this._onResponse.bind(this));
|
|
},
|
|
|
|
_onResponse: function(json, error) {
|
|
this.$.submit.disabled = false;
|
|
this.$.spinner.stop();
|
|
|
|
if (error)
|
|
throw error;
|
|
|
|
Toast.showMessage(_('ImageAdded'));
|
|
this.emit('file-uploaded', this.$.name.value);
|
|
},
|
|
|
|
setData: function(image, directory) {
|
|
this.$.name.value = image;
|
|
this.$.schema.value = directory;
|
|
}
|
|
});
|
|
|