0
1
Fork 0
hedera-web-mindshore/js/htk/image-editor.js

71 lines
1.3 KiB
JavaScript
Raw Normal View History

Vn.resource ('js/htk/image-editor.xml');
2015-09-24 11:50:27 +00:00
Vn.define (function () {
/**
* A form to handle the image database, it allows to add new images or
* replace it.
**/
2015-03-06 23:33:54 +00:00
Htk.ImageEditor = new Class
({
2015-03-06 23:33:54 +00:00
Extends: Htk.Widget
,initialize: function (props)
2015-03-06 23:33:54 +00:00
{
this.builderInit (this.constructor.Xml);
this.$('max-size').value = 10 /* MB */ * 1048576;
this.$('form').action =
2015-09-28 10:34:59 +00:00
'//'+ Vn.Config['image_host'] +'/rest.php?action=image';
2015-11-09 08:14:33 +00:00
this.parent (props);
}
,onNameChange: function ()
{
2015-12-10 13:48:43 +00:00
var newValue = this.$('name').value;
if (!newValue)
newValue = null
this.signalEmit ('name-changed', newValue);
}
,onFormSubmit: function ()
{
this.$('submit').disabled = true;
2016-05-02 13:05:49 +00:00
this.$('spinner').start ();
}
,onIframeLoad: function ()
{
this.$('submit').disabled = false;
2016-05-02 13:05:49 +00:00
this.$('spinner').stop ();
2015-03-06 23:33:54 +00:00
try {
var responseText = this.$('iframe').contentDocument.body.textContent;
var response = eval ('('+ responseText +')');
2015-03-06 23:33:54 +00:00
if (response.data)
{
this.signalEmit ('file-uploaded', this.$('name').value);
Htk.Toast.showMessage (_('ImageAdded'));
2015-03-06 23:33:54 +00:00
}
else
Htk.Toast.showError (response.error.message +' ('+ response.error.code +')');
2015-03-06 23:33:54 +00:00
}
catch (e) {}
2015-03-06 23:33:54 +00:00
}
,setData: function (image, directory)
{
this.$('name').value = image;
this.$('schema').value = directory;
}
}).extend
({
Xml: 'js/htk/image-editor.xml'
2015-03-06 23:33:54 +00:00
});
});