/* global Plugins, Headlines, dojo, xhrPost, xhrJson, Notify, fox, __ */ Plugins.Mail = { send: function(id) { if (!id) { const ids = Headlines.getSelected(); if (ids.length == 0) { alert(__("No articles selected.")); return; } id = ids.toString(); } const dialog = new fox.SingleUseDialog({ title: __("Forward article by email"), execute: function () { if (this.validate()) { xhrJson("backend.php", this.attr('value'), (reply) => { if (reply) { const error = reply['error']; if (error) { alert(__('Error sending email:') + ' ' + error); } else { Notify.info('Your message has been sent.'); dialog.hide(); } } }); } }, content: __("Loading, please wait...") }); const tmph = dojo.connect(dialog, 'onShow', function () { dojo.disconnect(tmph); xhrPost("backend.php", {op: "pluginhandler", plugin: "mail", method: "emailArticle", ids: id}, (transport) => { dialog.attr('content', transport.responseText); }); }); dialog.show(); }, onHotkey: function(id) { Plugins.Mail.send(id); } };