summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-21 10:35:39 +0300
committerAndrew Dolgov <[email protected]>2021-02-21 10:35:39 +0300
commitfb471652c00abec604e07c2383685c0e352c897e (patch)
treedfa709287b28318173c8c327ee358a1f28667e1d /js
parent9e56896bd428114ff9bfd979c2d4ff8d93f99485 (diff)
parent3b8d69206ccc24b41b45acd55f0c63681e749fd1 (diff)
Merge branch 'wip-filter-stuff'
Diffstat (limited to 'js')
-rw-r--r--js/App.js21
-rw-r--r--js/CommonFilters.js791
-rwxr-xr-xjs/common.js22
3 files changed, 517 insertions, 317 deletions
diff --git a/js/App.js b/js/App.js
index 2041a6168..68f3740c5 100644
--- a/js/App.js
+++ b/js/App.js
@@ -358,6 +358,27 @@ const App = {
return p;
}
},
+ // http://stackoverflow.com/questions/6251937/how-to-get-selecteduser-highlighted-text-in-contenteditable-element-and-replac
+ getSelectedText: function() {
+ let text = "";
+
+ if (typeof window.getSelection != "undefined") {
+ const sel = window.getSelection();
+ if (sel.rangeCount) {
+ const container = document.createElement("div");
+ for (let i = 0, len = sel.rangeCount; i < len; ++i) {
+ container.appendChild(sel.getRangeAt(i).cloneContents());
+ }
+ text = container.innerHTML;
+ }
+ } else if (typeof document.selection != "undefined") {
+ if (document.selection.type == "Text") {
+ text = document.selection.createRange().textText;
+ }
+ }
+
+ return text.stripTags();
+ },
displayIfChecked: function(checkbox, elemId) {
if (checkbox.checked) {
Element.show(elemId);
diff --git a/js/CommonFilters.js b/js/CommonFilters.js
index 0fc8f87ae..5874170b8 100644
--- a/js/CommonFilters.js
+++ b/js/CommonFilters.js
@@ -5,358 +5,559 @@
/* global __, App, Article, Lists, fox */
/* global xhr, dojo, dijit, Notify, Feeds */
+/* exported Filters */
const Filters = {
- filterDlgCheckAction: function(sender) {
- const action = sender.value;
-
- const action_param = App.byId("filterDlg_paramBox");
-
- if (!action_param) {
- console.log("filterDlgCheckAction: can't find action param box!");
- return;
- }
-
- // if selected action supports parameters, enable params field
- if (action == 4 || action == 6 || action == 7 || action == 9) {
- Element.show(action_param);
-
- Element.hide(dijit.byId("filterDlg_actionParam").domNode);
- Element.hide(dijit.byId("filterDlg_actionParamLabel").domNode);
- Element.hide(dijit.byId("filterDlg_actionParamPlugin").domNode);
-
- if (action == 7) {
- Element.show(dijit.byId("filterDlg_actionParamLabel").domNode);
- } else if (action == 9) {
- Element.show(dijit.byId("filterDlg_actionParamPlugin").domNode);
- } else {
- Element.show(dijit.byId("filterDlg_actionParam").domNode);
- }
-
- } else {
- Element.hide(action_param);
- }
- },
- createNewRuleElement: function(parentNode, replaceNode) {
- const rule = dojo.formToJson("filter_new_rule_form");
-
- xhr.post("backend.php", {op: "pref-filters", method: "printrulename", rule: rule}, (reply) => {
- try {
- const li = document.createElement('li');
-
- li.innerHTML = `<input dojoType='dijit.form.CheckBox' type='checkbox' onclick='Lists.onRowChecked(this)'>
- <span onclick='App.dialogOf(this).editRule(this)'>${reply}</span>
- ${App.FormFields.hidden_tag("rule[]", rule)}`;
+ edit: function(filter_id = null) { // if no id, new filter dialog
- dojo.parser.parse(li);
-
- if (replaceNode) {
- parentNode.replaceChild(li, replaceNode);
- } else {
- parentNode.appendChild(li);
- }
- } catch (e) {
- App.Error.report(e);
- }
- });
- },
- createNewActionElement: function(parentNode, replaceNode) {
- const form = document.forms["filter_new_action_form"];
+ const dialog = new fox.SingleUseDialog({
+ id: "filterEditDlg",
+ title: filter_id ? __("Edit Filter") : __("Create Filter"),
+ ACTION_TAG: 4,
+ ACTION_SCORE: 6,
+ ACTION_LABEL: 7,
+ ACTION_PLUGIN: 9,
+ PARAM_ACTIONS: [4, 6, 7, 9],
+ filter_info: {},
+ test: function() {
+ const test_dialog = new fox.SingleUseDialog({
+ title: "Test Filter",
+ results: 0,
+ limit: 100,
+ max_offset: 10000,
+ getTestResults: function (params, offset) {
+ params.method = 'testFilterDo';
+ params.offset = offset;
+ params.limit = test_dialog.limit;
+
+ console.log("getTestResults:" + offset);
+
+ xhr.json("backend.php", params, (result) => {
+ try {
+ if (result && test_dialog && test_dialog.open) {
+ test_dialog.results += result.length;
+
+ console.log("got results:" + result.length);
+
+ App.byId("prefFilterProgressMsg").innerHTML = __("Looking for articles (%d processed, %f found)...")
+ .replace("%f", test_dialog.results)
+ .replace("%d", offset);
+
+ console.log(offset + " " + test_dialog.max_offset);
+
+ for (let i = 0; i < result.length; i++) {
+ const tmp = dojo.create("table", { innerHTML: result[i]});
+
+ App.byId("prefFilterTestResultList").innerHTML += tmp.innerHTML;
+ }
+
+ if (test_dialog.results < 30 && offset < test_dialog.max_offset) {
+
+ // get the next batch
+ window.setTimeout(function () {
+ test_dialog.getTestResults(params, offset + test_dialog.limit);
+ }, 0);
+
+ } else {
+ // all done
+
+ Element.hide("prefFilterLoadingIndicator");
+
+ if (test_dialog.results == 0) {
+ App.byId("prefFilterTestResultList").innerHTML = `<tr><td align='center'>
+ ${__('No recent articles matching this filter have been found.')}</td></tr>`;
+ App.byId("prefFilterProgressMsg").innerHTML = "Articles matching this filter:";
+ } else {
+ App.byId("prefFilterProgressMsg").innerHTML = __("Found %d articles matching this filter:")
+ .replace("%d", test_dialog.results);
+ }
+
+ }
+
+ } else if (!result) {
+ console.log("getTestResults: can't parse results object");
+ Element.hide("prefFilterLoadingIndicator");
+ Notify.error("Error while trying to get filter test results.");
+ } else {
+ console.log("getTestResults: dialog closed, bailing out.");
+ }
+ } catch (e) {
+ App.Error.report(e);
+ }
+ });
+ },
+ content: `
+ <div>
+ <img id='prefFilterLoadingIndicator' src='images/indicator_tiny.gif'>&nbsp;
+ <span id='prefFilterProgressMsg'>Looking for articles...</span>
+ </div>
+
+ <ul class='panel panel-scrollable list list-unstyled' id='prefFilterTestResultList'></ul>
+
+ <footer class='text-center'>
+ <button dojoType='dijit.form.Button' type='submit' class='alt-primary'>${__('Close this window')}</button>
+ </footer>
+ `
+ });
- if (form.action_id.value == 7) {
- form.action_param.value = form.action_param_label.value;
- } else if (form.action_id.value == 9) {
- form.action_param.value = form.action_param_plugin.value;
- }
+ const tmph = dojo.connect(test_dialog, "onShow", null, function (/* e */) {
+ dojo.disconnect(tmph);
- const action = dojo.formToJson(form);
+ test_dialog.getTestResults(dialog.attr('value'), 0);
+ });
- xhr.post("backend.php", { op: "pref-filters", method: "printactionname", action: action }, (reply) => {
- try {
- const li = document.createElement('li');
+ test_dialog.show();
+ },
+ insertRule: function(parentNode, replaceNode) {
+ const rule = dojo.formToJson("filter_new_rule_form");
- li.innerHTML = `<input dojoType='dijit.form.CheckBox' type='checkbox' onclick='Lists.onRowChecked(this)'>
- <span onclick='App.dialogOf(this).editAction(this)'>${reply}</span>
- ${App.FormFields.hidden_tag("action[]", action)}`;
+ xhr.post("backend.php", {op: "pref-filters", method: "printrulename", rule: rule}, (reply) => {
+ try {
+ const li = document.createElement('li');
+ li.addClassName("rule");
- dojo.parser.parse(li);
+ li.innerHTML = `${App.FormFields.checkbox_tag("", false, {onclick: 'Lists.onRowChecked(this)'})}
+ <span class="name" onclick='App.dialogOf(this).onRuleClicked(this)'>${reply}</span>
+ <span class="payload" >${App.FormFields.hidden_tag("rule[]", rule)}</span>`;
- if (replaceNode) {
- parentNode.replaceChild(li, replaceNode);
- } else {
- parentNode.appendChild(li);
- }
+ dojo.parser.parse(li);
- } catch (e) {
- App.Error.report(e);
- }
- });
- },
- addFilterRule: function(replaceNode, ruleStr) {
- const dialog = new fox.SingleUseDialog({
- id: "filterNewRuleDlg",
- title: ruleStr ? __("Edit rule") : __("Add rule"),
- execute: function () {
- if (this.validate()) {
- Filters.createNewRuleElement(App.byId("filterDlg_Matches"), replaceNode);
- this.hide();
- }
+ if (replaceNode) {
+ parentNode.replaceChild(li, replaceNode);
+ } else {
+ parentNode.appendChild(li);
+ }
+ } catch (e) {
+ App.Error.report(e);
+ }
+ });
},
- content: __('Loading, please wait...'),
- });
-
- const tmph = dojo.connect(dialog, "onShow", null, function (/* e */) {
- dojo.disconnect(tmph);
-
- xhr.post("backend.php", {op: 'pref-filters', method: 'newrule', rule: ruleStr}, (reply) => {
- dialog.attr('content', reply);
- });
- });
+ insertAction: function(parentNode, replaceNode) {
+ const form = document.forms["filter_new_action_form"];
- dialog.show();
- },
- addFilterAction: function(replaceNode, actionStr) {
- const dialog = new fox.SingleUseDialog({
- title: actionStr ? __("Edit action") : __("Add action"),
- execute: function () {
- if (this.validate()) {
- Filters.createNewActionElement(App.byId("filterDlg_Actions"), replaceNode);
- this.hide();
+ if (form.action_id.value == 7) {
+ form.action_param.value = form.action_param_label.value;
+ } else if (form.action_id.value == 9) {
+ form.action_param.value = form.action_param_plugin.value;
}
- }
- });
-
- const tmph = dojo.connect(dialog, "onShow", null, function (/* e */) {
- dojo.disconnect(tmph);
- xhr.post("backend.php", {op: 'pref-filters', method: 'newaction', action: actionStr}, (reply) => {
- dialog.attr('content', reply);
- });
- });
+ const action = dojo.formToJson(form);
- dialog.show();
- },
- test: function(params) {
-
- const dialog = new fox.SingleUseDialog({
- title: "Test Filter",
- results: 0,
- limit: 100,
- max_offset: 10000,
- getTestResults: function (params, offset) {
- params.method = 'testFilterDo';
- params.offset = offset;
- params.limit = dialog.limit;
-
- console.log("getTestResults:" + offset);
-
- xhr.json("backend.php", params, (result) => {
+ xhr.post("backend.php", { op: "pref-filters", method: "printactionname", action: action }, (reply) => {
try {
- if (result && dialog && dialog.open) {
- dialog.results += result.length;
-
- console.log("got results:" + result.length);
-
- App.byId("prefFilterProgressMsg").innerHTML = __("Looking for articles (%d processed, %f found)...")
- .replace("%f", dialog.results)
- .replace("%d", offset);
+ const li = document.createElement('li');
+ li.addClassName("action");
- console.log(offset + " " + dialog.max_offset);
+ li.innerHTML = `${App.FormFields.checkbox_tag("", false, {onclick: 'Lists.onRowChecked(this)'})}
+ <span class="name" onclick='App.dialogOf(this).onActionClicked(this)'>${reply}</span>
+ <span class="payload">${App.FormFields.hidden_tag("action[]", action)}</span>`;
- for (let i = 0; i < result.length; i++) {
- const tmp = dojo.create("table", { innerHTML: result[i]});
+ dojo.parser.parse(li);
- App.byId("prefFilterTestResultList").innerHTML += tmp.innerHTML;
- }
-
- if (dialog.results < 30 && offset < dialog.max_offset) {
-
- // get the next batch
- window.setTimeout(function () {
- dialog.getTestResults(params, offset + dialog.limit);
- }, 0);
-
- } else {
- // all done
-
- Element.hide("prefFilterLoadingIndicator");
-
- if (dialog.results == 0) {
- App.byId("prefFilterTestResultList").innerHTML = `<tr><td align='center'>
- ${__('No recent articles matching this filter have been found.')}</td></tr>`;
- App.byId("prefFilterProgressMsg").innerHTML = "Articles matching this filter:";
- } else {
- App.byId("prefFilterProgressMsg").innerHTML = __("Found %d articles matching this filter:")
- .replace("%d", dialog.results);
- }
-
- }
-
- } else if (!result) {
- console.log("getTestResults: can't parse results object");
- Element.hide("prefFilterLoadingIndicator");
- Notify.error("Error while trying to get filter test results.");
+ if (replaceNode) {
+ parentNode.replaceChild(li, replaceNode);
} else {
- console.log("getTestResults: dialog closed, bailing out.");
+ parentNode.appendChild(li);
}
+
} catch (e) {
App.Error.report(e);
}
});
},
- content: `
- <div>
- <img id='prefFilterLoadingIndicator' src='images/indicator_tiny.gif'>&nbsp;
- <span id='prefFilterProgressMsg'>Looking for articles...</span>
- </div>
-
- <ul class='panel panel-scrollable list list-unstyled' id='prefFilterTestResultList'></ul>
-
- <footer class='text-center'>
- <button dojoType='dijit.form.Button' type='submit' class='alt-primary'>${__('Close this window')}</button>
- </footer>
- `
- });
-
- dojo.connect(dialog, "onShow", null, function (/* e */) {
- dialog.getTestResults(params, 0);
- });
-
- dialog.show();
- },
- edit: function(id) { // if no id, new filter dialog
- let query;
-
- if (!App.isPrefs()) {
- query = {
- op: "pref-filters", method: "edit",
- feed: Feeds.getActive(), is_cat: Feeds.activeIsCat()
- };
- } else {
- query = {op: "pref-filters", method: "edit", id: id};
- }
-
- console.log('Filters.edit', query);
-
- xhr.post("backend.php", query, function (reply) {
- try {
- const dialog = new fox.SingleUseDialog({
- id: "filterEditDlg",
- title: id ? __("Edit Filter") : __("Create Filter"),
- test: function () {
- Filters.test(this.attr('value'));
- },
- selectRules: function (select) {
- Lists.select("filterDlg_Matches", select);
- },
- selectActions: function (select) {
- Lists.select("filterDlg_Actions", select);
- },
- editRule: function (e) {
- const li = e.closest('li');
- const rule = li.querySelector('input[name="rule[]"]').value
-
- Filters.addFilterRule(li, rule);
+ editRule: function(replaceNode, ruleStr = null) {
+ const edit_rule_dialog = new fox.SingleUseDialog({
+ id: "filterNewRuleDlg",
+ title: ruleStr ? __("Edit rule") : __("Add rule"),
+ execute: function () {
+ if (this.validate()) {
+ dialog.insertRule(App.byId("filterDlg_Matches"), replaceNode);
+ this.hide();
+ }
},
- editAction: function (e) {
- const li = e.closest('li');
- const action = li.querySelector('input[name="action[]"]').value
+ content: __('Loading, please wait...'),
+ });
- Filters.addFilterAction(li, action);
- },
- removeFilter: function () {
- const msg = __("Remove filter?");
+ const tmph = dojo.connect(edit_rule_dialog, "onShow", null, function () {
+ dojo.disconnect(tmph);
- if (confirm(msg)) {
- this.hide();
+ let rule;
- Notify.progress("Removing filter...");
+ if (ruleStr) {
+ rule = JSON.parse(ruleStr);
+ } else {
+ rule = {
+ reg_exp: "",
+ filter_type: 1,
+ feed_id: ["0"],
+ inverse: false,
+ };
+ }
- const query = {op: "pref-filters", method: "remove", ids: this.attr('value').id};
+ console.log(rule, dialog.filter_info);
+
+ xhr.json("backend.php", {op: "pref-filters", method: "editrule", ids: rule.feed_id.join(",")}, function (editrule) {
+ edit_rule_dialog.attr('content',
+ `
+ <form name="filter_new_rule_form" id="filter_new_rule_form" onsubmit="return false">
+
+ <section>
+ <textarea dojoType="fox.form.ValidationTextArea"
+ required="true" id="filterDlg_regExp" ValidRegExp="true"
+ rows="4" style="font-size : 14px; width : 530px; word-break: break-all"
+ name="reg_exp">${rule.reg_exp}</textarea>
+
+ <div dojoType="dijit.Tooltip" id="filterDlg_regExp_tip" connectId="filterDlg_regExp" position="below"></div>
+
+ <fieldset>
+ <label class="checkbox">
+ ${App.FormFields.checkbox_tag("inverse", rule.inverse)}
+ ${__("Inverse regular expression matching")}
+ </label>
+ </fieldset>
+ <fieldset>
+ <label style="display : inline">${__("on")}</label>
+ ${App.FormFields.select_hash("filter_type", rule.filter_type, dialog.filter_info.filter_types)}
+ <label style="padding-left : 10px; display : inline">${__("in")}</label>
+ </fieldset>
+ <fieldset>
+ <span id="filterDlg_feeds">
+ ${editrule.multiselect}
+ </span>
+ </fieldset>
+ </section>
+
+ <footer>
+ ${App.FormFields.button_tag(App.FormFields.icon("help") + " " + __("More info"), "", {class: 'pull-left alt-info',
+ onclick: "window.open('https://tt-rss.org/wiki/ContentFilters')"})}
+ ${App.FormFields.submit_tag(__("Save rule"), {onclick: "App.dialogOf(this).execute()"})}
+ ${App.FormFields.cancel_dialog_tag(__("Cancel"))}
+ </footer>
+
+ </form>
+ `);
+ });
- xhr.post("backend.php", query, () => {
- const tree = dijit.byId("filterTree");
+ });
- if (tree) tree.reload();
- });
- }
- },
- addAction: function () {
- Filters.addFilterAction();
- },
- addRule: function () {
- Filters.addFilterRule();
- },
- deleteAction: function () {
- App.findAll("#filterDlg_Actions li[class*=Selected]").forEach(function (e) {
- e.parentNode.removeChild(e)
- });
+ edit_rule_dialog.show();
+ },
+ editAction: function(replaceNode, actionStr) {
+ const edit_action_dialog = new fox.SingleUseDialog({
+ title: actionStr ? __("Edit action") : __("Add action"),
+ select_labels: function(name, value, labels, attributes = {}, id = "") {
+ const values = Object.values(labels).map((label) => label.caption);
+ return App.FormFields.select_tag(name, value, values, attributes, id);
},
- deleteRule: function () {
- App.findAll("#filterDlg_Matches li[class*=Selected]").forEach(function (e) {
- e.parentNode.removeChild(e)
- });
+ toggleParam: function(sender) {
+ const action = parseInt(sender.value);
+
+ dijit.byId("filterDlg_actionParam").domNode.hide();
+ dijit.byId("filterDlg_actionParamLabel").domNode.hide();
+ dijit.byId("filterDlg_actionParamPlugin").domNode.hide();
+
+ // if selected action supports parameters, enable params field
+ if (action == dialog.ACTION_LABEL) {
+ dijit.byId("filterDlg_actionParamLabel").domNode.show();
+ } else if (action == dialog.ACTION_PLUGIN) {
+ dijit.byId("filterDlg_actionParamPlugin").domNode.show();
+ } else if (dialog.PARAM_ACTIONS.indexOf(action) != -1) {
+ dijit.byId("filterDlg_actionParam").domNode.show();
+ }
},
execute: function () {
if (this.validate()) {
-
- Notify.progress("Saving data...", true);
-
- xhr.post("backend.php", this.attr('value'), () => {
- dialog.hide();
-
- const tree = dijit.byId("filterTree");
- if (tree) tree.reload();
- });
+ dialog.insertAction(App.byId("filterDlg_Actions"), replaceNode);
+ this.hide();
}
},
- content: reply
+ content: __("Loading, please wait...")
});
- if (!App.isPrefs()) {
- /* global getSelectionText */
- const selectedText = getSelectionText();
+ const tmph = dojo.connect(edit_action_dialog, "onShow", null, function () {
+ dojo.disconnect(tmph);
- const lh = dojo.connect(dialog, "onShow", function () {
- dojo.disconnect(lh);
+ let action;
- if (selectedText != "") {
+ if (actionStr) {
+ action = JSON.parse(actionStr);
+ } else {
+ action = {
+ action_id: 2,
+ action_param: ""
+ };
+ }
- const feed_id = Feeds.activeIsCat() ? 'CAT:' + parseInt(Feeds.getActive()) :
- Feeds.getActive();
+ console.log(action);
+
+ edit_action_dialog.attr('content',
+ `
+ <form name="filter_new_action_form" id="filter_new_action_form" onsubmit="return false;">
+ <section>
+ ${App.FormFields.select_hash("action_id", -1,
+ dialog.filter_info.action_types,
+ {onchange: "App.dialogOf(this).toggleParam(this)"},
+ "filterDlg_actionSelect")}
+
+ <input dojoType="dijit.form.TextBox"
+ id="filterDlg_actionParam" style="$param_hidden"
+ name="action_param" value="${App.escapeHtml(action.action_param)}">
+
+ ${edit_action_dialog.select_labels("action_param_label", action.action_param,
+ dialog.filter_info.labels,
+ {},
+ "filterDlg_actionParamLabel")}
+
+ ${App.FormFields.select_hash("action_param_plugin", action.action_param,
+ dialog.filter_info.plugin_actions,
+ {},
+ "filterDlg_actionParamPlugin")}
+ </section>
+ <footer>
+ ${App.FormFields.submit_tag(__("Save action"), {onclick: "App.dialogOf(this).execute()"})}
+ ${App.FormFields.cancel_dialog_tag(__("Cancel"))}
+ </footer>
+ </form>
+ `);
+
+ dijit.byId("filterDlg_actionSelect").attr('value', action.action_id);
+
+ /*xhr.post("backend.php", {op: 'pref-filters', method: 'newaction', action: actionStr}, (reply) => {
+ edit_action_dialog.attr('content', reply);
+
+ setTimeout(() => {
+ edit_action_dialog.hideOrShowActionParam(dijit.byId("filterDlg_actionSelect").attr('value'));
+ }, 250);
+ });*/
+ });
- const rule = {reg_exp: selectedText, feed_id: [feed_id], filter_type: 1};
+ edit_action_dialog.show();
+ },
+ selectRules: function (select) {
+ Lists.select("filterDlg_Matches", select);
+ },
+ selectActions: function (select) {
+ Lists.select("filterDlg_Actions", select);
+ },
+ onRuleClicked: function (elem) {
- Filters.addFilterRule(null, dojo.toJson(rule));
+ const li = elem.closest('li');
+ const rule = li.querySelector('input[name="rule[]"]').value;
- } else {
+ this.editRule(li, rule);
+ },
+ onActionClicked: function (elem) {
- const query = {op: "article", method: "getmetadatabyid", id: Article.getActive()};
+ const li = elem.closest('li');
+ const action = li.querySelector('input[name="action[]"]').value;
- xhr.json("backend.php", query, (reply) => {
- let title = false;
+ this.editAction(li, action);
+ },
+ removeFilter: function () {
+ const msg = __("Remove filter?");
- if (reply && reply.title) title = reply.title;
+ if (confirm(msg)) {
+ this.hide();
- if (title || Feeds.getActive() || Feeds.activeIsCat()) {
+ Notify.progress("Removing filter...");
- console.log(title + " " + Feeds.getActive());
+ const query = {op: "pref-filters", method: "remove", ids: this.attr('value').id};
- const feed_id = Feeds.activeIsCat() ? 'CAT:' + parseInt(Feeds.getActive()) :
- Feeds.getActive();
+ xhr.post("backend.php", query, () => {
+ const tree = dijit.byId("filterTree");
- const rule = {reg_exp: title, feed_id: [feed_id], filter_type: 1};
+ if (tree) tree.reload();
+ });
+ }
+ },
+ addAction: function () {
+ this.editAction();
+ },
+ addRule: function () {
+ this.editRule();
+ },
+ deleteAction: function () {
+ App.findAll("#filterDlg_Actions li[class*=Selected]").forEach(function (e) {
+ e.parentNode.removeChild(e)
+ });
+ },
+ deleteRule: function () {
+ App.findAll("#filterDlg_Matches li[class*=Selected]").forEach(function (e) {
+ e.parentNode.removeChild(e)
+ });
+ },
+ execute: function () {
+ if (this.validate()) {
- Filters.addFilterRule(null, dojo.toJson(rule));
- }
- });
- }
+ Notify.progress("Saving data...", true);
+
+ xhr.post("backend.php", this.attr('value'), () => {
+ dialog.hide();
+
+ const tree = dijit.byId("filterTree");
+ if (tree) tree.reload();
});
}
- dialog.show();
+ },
+ content: __("Loading, please wait...")
+ });
- } catch (e) {
- App.Error.report(e);
- }
+ const tmph = dojo.connect(dialog, 'onShow', function () {
+ dojo.disconnect(tmph);
+
+ xhr.json("backend.php", {op: "pref-filters", method: "edit", id: filter_id}, function (filter) {
+
+ dialog.filter_info = filter;
+
+ const options = {
+ enabled: [ filter.enabled, __('Enabled') ],
+ match_any_rule: [ filter.match_any_rule, __('Match any rule') ],
+ inverse: [ filter.inverse, __('Inverse matching') ],
+ };
+
+ dialog.attr('content',
+ `
+ <form onsubmit='return false'>
+
+ ${App.FormFields.hidden_tag("op", "pref-filters")}
+ ${App.FormFields.hidden_tag("id", filter_id)}
+ ${App.FormFields.hidden_tag("method", filter_id ? "editSave" : "add")}
+ ${App.FormFields.hidden_tag("csrf_token", App.getInitParam('csrf_token'))}
+
+ <section>
+ <input required="true" dojoType="dijit.form.ValidationTextBox" style="width : 530px"
+ placeholder="${__("Title")}" name="title" value="${App.escapeHtml(filter.title)}">
+ </section>
+
+ <div dojoType="dijit.layout.TabContainer" style="height : 300px">
+ <div dojoType="dijit.layout.ContentPane" title="${__('Match')}">
+ <div style="padding : 0" dojoType="dijit.layout.BorderContainer" gutters="false">
+ <div dojoType="fox.Toolbar" region="top">
+ <div dojoType="fox.form.DropDownButton">
+ <span>${__("Select")}</span>
+ <div dojoType="dijit.Menu" style="display: none;">
+ <!-- can"t use App.dialogOf() here because DropDownButton is not a child of the Dialog -->
+ <div onclick="dijit.byId('filterEditDlg').selectRules(true)"
+ dojoType="dijit.MenuItem">${__("All")}</div>
+ <div onclick="dijit.byId('filterEditDlg').selectRules(false)"
+ dojoType="dijit.MenuItem">${__("None")}</div>
+ </div>
+ </div>
+ <button dojoType="dijit.form.Button" onclick="App.dialogOf(this).addRule()">
+ ${__("Add")}
+ </button>
+ <button dojoType="dijit.form.Button" onclick="App.dialogOf(this).deleteRule()">
+ ${__("Delete")}
+ </button>
+ </div>
+ <div dojoType="dijit.layout.ContentPane" region="center">
+ <ul id="filterDlg_Matches">
+ ${filter.rules.map((rule) => `
+ <li class='rule'>
+ ${App.FormFields.checkbox_tag("", false, "", {onclick: 'Lists.onRowChecked(this)'})}
+ <span class='name' onclick='App.dialogOf(this).onRuleClicked(this)'>${rule.name}</span>
+ <span class='payload'>${App.FormFields.hidden_tag("rule[]", JSON.stringify(rule))}</span>
+ </li>
+ `).join("")}
+ </ul>
+ </div>
+ </div>
+ </div>
+ <div dojoType="dijit.layout.ContentPane" title="${__('Apply actions')}">
+ <div style="padding : 0" dojoType="dijit.layout.BorderContainer" gutters="false">
+ <div dojoType="fox.Toolbar" region="top">
+ <div dojoType="fox.form.DropDownButton">
+ <span>${__("Select")}</span>
+ <div dojoType="dijit.Menu" style="display: none">
+ <div onclick="dijit.byId('filterEditDlg').selectActions(true)"
+ dojoType="dijit.MenuItem">${__("All")}</div>
+ <div onclick="dijit.byId('filterEditDlg').selectActions(false)"
+ dojoType="dijit.MenuItem">${__("None")}</div>
+ </div>
+ </div>
+ <button dojoType="dijit.form.Button" onclick="App.dialogOf(this).addAction()">
+ ${__("Add")}
+ </button>
+ <button dojoType="dijit.form.Button" onclick="App.dialogOf(this).deleteAction()">
+ ${__("Delete")}
+ </button>
+ </div>
+ <div dojoType="dijit.layout.ContentPane" region="center">
+ <ul id="filterDlg_Actions">
+ ${filter.actions.map((action) => `
+ <li class='rule'>
+ ${App.FormFields.checkbox_tag("", false, "", {onclick: 'Lists.onRowChecked(this)'})}
+ <span class='name' onclick='App.dialogOf(this).onActionClicked(this)'>${App.escapeHtml(action.name)}</span>
+ <span class='payload'>${App.FormFields.hidden_tag("action[]", JSON.stringify(action))}</span>
+ </li>
+ `).join("")}
+ </ul>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <br/>
+
+ <section class="narrow">
+ ${Object.keys(options).map((name) =>
+ `
+ <fieldset class='narrow'>
+ <label class="checkbox">
+ ${App.FormFields.checkbox_tag(name, options[name][0])}
+ ${options[name][1]}
+ </label>
+ </fieldset>
+ `).join("")}
+ </section>
+
+ <footer>
+ ${filter_id ?
+ `
+ ${App.FormFields.button_tag(__("Remove"), "", {class: "pull-left alt-danger", onclick: "App.dialogOf(this).removeFilter()"})}
+ ${App.FormFields.button_tag(__("Test"), "", {class: "alt-info", onclick: "App.dialogOf(this).test()"})}
+ ${App.FormFields.submit_tag(__("Save"), {onclick: "App.dialogOf(this).execute()"})}
+ ${App.FormFields.cancel_dialog_tag(__("Cancel"))}
+ ` : `
+ ${App.FormFields.button_tag(__("Test"), "", {class: "alt-info", onclick: "App.dialogOf(this).test()"})}
+ ${App.FormFields.submit_tag(__("Create"), {onclick: "App.dialogOf(this).execute()"})}
+ ${App.FormFields.cancel_dialog_tag(__("Cancel"))}
+ `}
+ </footer>
+ </form>
+ `);
+
+ if (!App.isPrefs()) {
+ const selectedText = App.getSelectedText();
+
+ if (selectedText != "") {
+ const feed_id = Feeds.activeIsCat() ? 'CAT:' + parseInt(Feeds.getActive()) :
+ Feeds.getActive();
+ const rule = {reg_exp: selectedText, feed_id: [feed_id], filter_type: 1};
+
+ dialog.editRule(null, dojo.toJson(rule));
+ } else {
+ const query = {op: "article", method: "getmetadatabyid", id: Article.getActive()};
+
+ xhr.json("backend.php", query, (reply) => {
+ let title;
+
+ if (reply && reply.title) title = reply.title;
+
+ if (title || Feeds.getActive() || Feeds.activeIsCat()) {
+ console.log(title + " " + Feeds.getActive());
+
+ const feed_id = Feeds.activeIsCat() ? 'CAT:' + parseInt(Feeds.getActive()) :
+ Feeds.getActive();
+ const rule = {reg_exp: title, feed_id: [feed_id], filter_type: 1};
+
+ dialog.editRule(null, dojo.toJson(rule));
+ }
+ });
+ }
+ }
+ });
});
+
+ dialog.show();
},
};
diff --git a/js/common.js b/js/common.js
index e85862990..df1bf8690 100755
--- a/js/common.js
+++ b/js/common.js
@@ -400,25 +400,3 @@ const Notify = {
}
};
-// http://stackoverflow.com/questions/6251937/how-to-get-selecteduser-highlighted-text-in-contenteditable-element-and-replac
-/* exported getSelectionText */
-function getSelectionText() {
- let text = "";
-
- if (typeof window.getSelection != "undefined") {
- const sel = window.getSelection();
- if (sel.rangeCount) {
- const container = document.createElement("div");
- for (let i = 0, len = sel.rangeCount; i < len; ++i) {
- container.appendChild(sel.getRangeAt(i).cloneContents());
- }
- text = container.innerHTML;
- }
- } else if (typeof document.selection != "undefined") {
- if (document.selection.type == "Text") {
- text = document.selection.createRange().textText;
- }
- }
-
- return text.stripTags();
-}