2021-02-17 11:56:36 +00:00
|
|
|
/* global dojo, xhrPost, Plugins, xhrJson, Notify, fox, __ */
|
2021-02-12 12:22:10 +00:00
|
|
|
|
2020-02-27 04:59:57 +00:00
|
|
|
Plugins.Note = {
|
|
|
|
edit: function(id) {
|
2021-02-12 12:22:10 +00:00
|
|
|
const dialog = new fox.SingleUseDialog({
|
2020-02-27 04:59:57 +00:00
|
|
|
title: __("Edit article note"),
|
|
|
|
execute: function () {
|
|
|
|
if (this.validate()) {
|
|
|
|
Notify.progress("Saving article note...", true);
|
|
|
|
|
|
|
|
xhrJson("backend.php", this.attr('value'), (reply) => {
|
|
|
|
Notify.close();
|
|
|
|
dialog.hide();
|
|
|
|
|
|
|
|
if (reply) {
|
|
|
|
const elem = $("POSTNOTE-" + id);
|
|
|
|
|
|
|
|
if (elem) {
|
|
|
|
elem.innerHTML = reply.note;
|
|
|
|
|
|
|
|
if (reply.raw_length != 0)
|
|
|
|
Element.show(elem);
|
|
|
|
else
|
|
|
|
Element.hide(elem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2021-02-17 11:56:36 +00:00
|
|
|
content: __("Loading, please wait...")
|
|
|
|
});
|
|
|
|
|
|
|
|
const tmph = dojo.connect(dialog, 'onShow', function () {
|
|
|
|
dojo.disconnect(tmph);
|
|
|
|
|
2021-02-17 18:44:21 +00:00
|
|
|
xhrPost("backend.php", App.getPhArgs("note", "edit", {id: id}), (transport) => {
|
2021-02-17 11:56:36 +00:00
|
|
|
dialog.attr('content', transport.responseText);
|
|
|
|
});
|
2011-12-21 06:58:06 +00:00
|
|
|
});
|
2020-02-27 04:59:57 +00:00
|
|
|
|
|
|
|
dialog.show();
|
2011-12-21 06:58:06 +00:00
|
|
|
}
|
2021-02-12 12:22:10 +00:00
|
|
|
};
|