1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 11:45:56 +00:00

remove obsolete row selection functions

move getUrlParam() to Utils
This commit is contained in:
Andrew Dolgov
2018-12-02 10:33:58 +03:00
parent 2f85b50e36
commit 874560db54
11 changed files with 41 additions and 62 deletions

View File

@@ -53,8 +53,8 @@ Array.prototype.remove = function(s) {
}
};
const ListUtils = {
onChecked: function(elem) {
const Lists = {
onRowChecked: function(elem) {
// account for dojo checkboxes
elem = elem.domNode || elem;
@@ -62,11 +62,23 @@ const ListUtils = {
}
};
const Tables = {
onRowChecked: function(elem) {
// account for dojo checkboxes
elem = elem.domNode || elem;
elem.up("tr").toggleClassName("Selected");
}
}
const Utils = {
_rpc_seq: 0,
hotkey_prefix: 0,
hotkey_prefix_pressed: false,
hotkey_prefix_timeout: 0,
urlParam: function(param) {
return String(window.location.href).parseQuery()[param];
},
next_seq: function() {
this._rpc_seq += 1;
return this._rpc_seq;
@@ -988,43 +1000,6 @@ function getCookie(name) {
return unescape(dc.substring(begin + prefix.length, end));
}
function toggleSelectRowById(sender, id) {
const row = $(id);
return toggleSelectRow(sender, row);
}
/* this is for dijit Checkbox */
function toggleSelectRow2(sender, row, is_cdm) {
if (!row)
if (!is_cdm)
row = sender.domNode.parentNode.parentNode;
else
row = sender.domNode.parentNode.parentNode.parentNode; // oh ffs
if (sender.checked && !row.hasClassName('Selected'))
row.addClassName('Selected');
else
row.removeClassName('Selected');
if (typeof Headlines != "undefined")
Headlines.updateSelectedPrompt();
}
function toggleSelectRow(sender, row) {
if (!row) row = sender.parentNode.parentNode;
if (sender.checked && !row.hasClassName('Selected'))
row.addClassName('Selected');
else
row.removeClassName('Selected');
if (typeof Headlines != "undefined")
Headlines.updateSelectedPrompt();
}
// noinspection JSUnusedGlobalSymbols
function displayIfChecked(checkbox, elemId) {
if (checkbox.checked) {
@@ -1034,10 +1009,6 @@ function displayIfChecked(checkbox, elemId) {
}
}
function getURLParam(param){
return String(window.location.href).parseQuery()[param];
}
// noinspection JSUnusedGlobalSymbols
function closeInfoBox() {
const dialog = dijit.byId("infoBox");
@@ -1140,7 +1111,7 @@ const Filters = {
new dijit.form.CheckBox({
onChange: function () {
ListUtils.onChecked(this);
Lists.onRowChecked(this);
},
}, cb);
@@ -1189,7 +1160,7 @@ const Filters = {
new dijit.form.CheckBox({
onChange: function () {
ListUtils.onChecked(this);
Lists.onRowChecked(this);
},
}, cb);