ttrss/plugins/note/note.js

41 lines
885 B
JavaScript
Raw Normal View History

Plugins.Note = {
edit: function(id) {
const query = "backend.php?op=pluginhandler&plugin=note&method=edit&param=" + encodeURIComponent(id);
2011-12-21 06:58:06 +00:00
if (dijit.byId("editNoteDlg"))
dijit.byId("editNoteDlg").destroyRecursive();
const dialog = new dijit.Dialog({
2011-12-21 06:58:06 +00:00
id: "editNoteDlg",
title: __("Edit article note"),
style: "width: 600px",
execute: function () {
2011-12-21 06:58:06 +00:00
if (this.validate()) {
2018-12-02 17:56:30 +00:00
Notify.progress("Saving article note...", true);
2011-12-21 06:58:06 +00:00
xhrJson("backend.php", this.attr('value'), (reply) => {
Notify.close();
dialog.hide();
2011-12-21 06:58:06 +00:00
if (reply) {
ArticleCache.del(id);
2011-12-21 06:58:06 +00:00
var elem = $("POSTNOTE-" + id);
2011-12-21 06:58:06 +00:00
if (elem) {
Element.hide(elem);
elem.innerHTML = reply.note;
2011-12-21 06:58:06 +00:00
if (reply.raw_length != 0)
new Effect.Appear(elem);
}
}
});
2011-12-21 06:58:06 +00:00
}
},
href: query,
});
dialog.show();
}
};