Newer
Older
define('package/quiqqer/ckeditor4/bin/backend/controls/UploadWindow', [
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
'qui/QUI',
'qui/controls/windows/Confirm',
'Locale',
'controls/upload/Form'
], function (QUI, QUIConfirm, QUILocale, UploadForm) {
"use strict";
return new Class({
Extends: QUIConfirm,
Type : 'package/quiqqer/ckeditor4/bin/windows/Upload',
Binds: [
'$onSubmit',
'$onOpen',
'$onComplete'
],
initialize: function (options) {
this.setAttributes({
title : QUILocale.get("quiqqer/ckeditor4", "window.upload.title"),
icon : 'fa fa-upload',
maxWidth : 400,
maxHeight : 600,
autoclose : false,
texticon : false,
cancel_button: {
text : false,
textimage: 'icon-remove fa fa-remove'
},
ok_button : {
text : QUILocale.get("quiqqer/ckeditor4", "window.upload.button.upload"),
textimage: 'fa fa-upload'
}
});
this.$Upload = null;
this.parent(options);
this.addEvents({
onOpen: this.$onOpen,
});
},
/**
* Calls the ajax function to get the labels from gitlab and sets up its controls.
*/
$onOpen: function () {
var Content = this.getContent();
this.$Upload = new UploadForm({
multible : false,
sendbutton : false,
cancelbutton: false,
events : {
height: '80%'
}
});
this.$Upload.setParam('onfinish', 'package_quiqqer_ckeditor4_ajax_uploadComplete');
this.$Upload.setParam('extract', 0);
this.$Upload.inject(Content);
var description = new Element("div", {
"html" : QUILocale.get("quiqqer/ckeditor4", "message.settings.upload.warning.external"),
"class": "content-message-attention",
"style": "margin-top: 10px;"
});
description.inject(Content);
},
$onSubmit: function () {
this.$Upload.submit();
},
$onComplete: function (Form, File, result) {
QUI.MessageHandler.addSuccess(
QUILocale.get("quiqqer/ckeditor4", "message.window.upload.complete")
);

Florian Bogner
committed
this.fireEvent("uploadDone");