ttrss/js/common.js

351 lines
8.1 KiB
JavaScript
Raw Normal View History

'use strict';
2018-11-29 19:03:55 +01:00
/* global dijit, __, App, Ajax */
/* eslint-disable no-new */
Element.prototype.hasClassName = function(className) {
2021-02-18 20:14:40 +01:00
return dojo.hasClass(this, className);
};
Element.prototype.addClassName = function(className) {
2021-02-18 20:14:40 +01:00
return dojo.addClass(this, className);
};
Element.prototype.removeClassName = function(className) {
2021-02-18 20:14:40 +01:00
return dojo.removeClass(this, className);
};
2021-02-18 20:05:06 +01:00
Element.prototype.toggleClassName = function(className) {
2021-02-18 20:14:40 +01:00
console.log(this, className);
2021-02-18 20:05:06 +01:00
if (this.hasClassName(className))
2021-02-18 20:14:40 +01:00
return this.removeClassName(className);
2021-02-18 20:05:06 +01:00
else
2021-02-18 20:14:40 +01:00
return this.addClassName(className);
2021-02-18 20:05:06 +01:00
};
Element.prototype.setStyle = function(args) {
Object.keys(args).forEach((k) => {
this.style[k] = args[k];
});
};
Element.prototype.show = function() {
this.style.display = "";
};
Element.prototype.hide = function() {
this.style.display = "none";
};
Element.prototype.toggle = function() {
if (this.visible())
this.hide();
2021-02-18 20:15:54 +01:00
else
this.show();
};
Element.prototype.visible = function() {
// TODO: should we actually check for offsetWidth/offsetHeight == 0?
return this.style.display != "none";
}
Element.visible = function(elem) {
if (typeof elem == "string")
elem = document.getElementById(elem);
return elem.visible();
}
Element.show = function(elem) {
if (typeof elem == "string")
elem = document.getElementById(elem);
return elem.show();
}
Element.hide = function(elem) {
if (typeof elem == "string")
elem = document.getElementById(elem);
return elem.hide();
}
Element.toggle = function(elem) {
if (typeof elem == "string")
elem = document.getElementById(elem);
return elem.toggle();
}
2021-02-18 20:14:40 +01:00
Element.hasClassName = function (elem, className) {
if (typeof elem == "string")
elem = document.getElementById(elem);
return elem.hasClassName(className);
}
/* xhr shorthand helpers */
/* exported xhrPost */
function xhrPost(url, params = {}, complete = undefined) {
console.log("xhrPost:", params);
2018-12-11 06:42:38 +01:00
return new Promise((resolve, reject) => {
if (typeof __csrf_token != "undefined")
params = {...params, ...{csrf_token: __csrf_token}};
dojo.xhrPost({url: url,
postData: dojo.objectToQuery(params),
handleAs: "text",
error: function(error) {
reject(error);
},
load: function(data, ioargs) {
if (complete != undefined)
complete(ioargs.xhr);
resolve(ioargs.xhr)
}});
2018-11-30 13:07:44 +01:00
});
}
Array.prototype.remove = function(s) {
for (let i=0; i < this.length; i++) {
if (s == this[i]) this.splice(i, 1);
}
};
Array.prototype.uniq = function() {
return this.filter((v, i, a) => a.indexOf(v) === i);
};
String.prototype.stripTags = function() {
return this.replace(/<\w+(\s+("[^"]*"|'[^']*'|[^>])+)?(\/)?>|<\/\w+>/gi, '');
}
/* exported xhrJson */
function xhrJson(url, params = {}, complete = undefined) {
return new Promise((resolve, reject) =>
xhrPost(url, params).then((reply) => {
2018-12-11 06:42:38 +01:00
let obj = null;
try {
obj = JSON.parse(reply.responseText);
} catch (e) {
console.error("xhrJson", e, reply);
}
if (complete != undefined) complete(obj);
resolve(obj);
}));
}
/* common helpers not worthy of separate Dojo modules */
/* exported Lists */
const Lists = {
onRowChecked: function(elem) {
const checked = elem.domNode ? elem.attr("checked") : elem.checked;
2018-12-02 08:16:25 +01:00
// account for dojo checkboxes
elem = elem.domNode || elem;
const row = elem.up("li");
if (row)
checked ? row.addClassName("Selected") : row.removeClassName("Selected");
},
select: function(elemId, selected) {
$(elemId).querySelectorAll("li").forEach((row) => {
const checkNode = row.querySelector(".dijitCheckBox,input[type=checkbox]");
if (checkNode) {
const widget = dijit.getEnclosingWidget(checkNode);
if (widget) {
widget.attr("checked", selected);
} else {
checkNode.checked = selected;
}
this.onRowChecked(widget);
}
});
},
2018-12-02 08:16:25 +01:00
};
/* exported Tables */
const Tables = {
onRowChecked: function(elem) {
// account for dojo checkboxes
const checked = elem.domNode ? elem.attr("checked") : elem.checked;
elem = elem.domNode || elem;
const row = elem.up("tr");
if (row)
checked ? row.addClassName("Selected") : row.removeClassName("Selected");
},
select: function(elemId, selected) {
$(elemId).querySelector("tr").forEach((row) => {
const checkNode = row.querySelector(".dijitCheckBox,input[type=checkbox]");
if (checkNode) {
const widget = dijit.getEnclosingWidget(checkNode);
if (widget) {
widget.attr("checked", selected);
} else {
checkNode.checked = selected;
}
this.onRowChecked(widget);
}
});
},
getSelected: function(elemId) {
const rv = [];
$(elemId).querySelector("tr").forEach((row) => {
if (row.hasClassName("Selected")) {
// either older prefix-XXX notation or separate attribute
const rowId = row.getAttribute("data-row-id") || row.id.replace(/^[A-Z]*?-/, "");
if (!isNaN(rowId))
rv.push(parseInt(rowId));
}
});
return rv;
}
};
/* exported Cookie */
const Cookie = {
set: function (name, value, lifetime) {
const d = new Date();
d.setTime(d.getTime() + lifetime * 1000);
const expires = "expires=" + d.toUTCString();
document.cookie = name + "=" + encodeURIComponent(value) + "; " + expires;
},
get: function (name) {
name = name + "=";
const ca = document.cookie.split(';');
for (let i=0; i < ca.length; i++) {
let c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1);
if (c.indexOf(name) == 0) return decodeURIComponent(c.substring(name.length, c.length));
}
return "";
},
delete: function(name) {
const expires = "expires=Thu, 01-Jan-1970 00:00:01 GMT";
document.cookie = name + "=; " + expires;
}
};
2018-12-02 18:44:53 +01:00
/* runtime notifications */
/* exported Notify */
2018-12-02 18:44:53 +01:00
const Notify = {
KIND_GENERIC: 0,
KIND_INFO: 1,
KIND_ERROR: 2,
KIND_PROGRESS: 3,
timeout: 0,
default_timeout: 5 * 1000,
close: function() {
this.msg("");
},
msg: function(msg, keep, kind) {
kind = kind || this.KIND_GENERIC;
2018-12-02 18:56:30 +01:00
keep = keep || false;
const notify = App.byId("notify");
2018-12-02 18:44:53 +01:00
window.clearTimeout(this.timeout);
2018-12-02 18:44:53 +01:00
if (!msg) {
notify.removeClassName("visible");
return;
}
2007-03-02 20:58:58 +01:00
2018-12-02 18:44:53 +01:00
let msgfmt = "<span class=\"msg\">%s</span>".replace("%s", __(msg));
let icon = "";
2007-03-02 20:58:58 +01:00
2018-12-02 18:44:53 +01:00
notify.className = "notify";
2007-03-06 07:54:47 +01:00
2018-12-02 18:56:30 +01:00
console.warn('notify', msg, kind);
2018-12-02 18:44:53 +01:00
switch (kind) {
case this.KIND_INFO:
notify.addClassName("notify_info")
icon = "notifications";
2018-12-02 18:44:53 +01:00
break;
case this.KIND_ERROR:
notify.addClassName("notify_error");
icon = "error";
2018-12-02 18:44:53 +01:00
break;
case this.KIND_PROGRESS:
notify.addClassName("notify_progress");
icon = App.getInitParam("icon_indicator_white")
2018-12-02 18:44:53 +01:00
break;
default:
icon = "notifications";
2014-11-09 18:31:29 +01:00
}
if (icon)
if (icon.indexOf("data:image") != -1)
msgfmt = "<img src=\"%s\">".replace("%s", icon) + msgfmt;
else
msgfmt = "<i class='material-icons icon-notify'>%s</i>".replace("%s", icon) + msgfmt;
2014-11-09 18:31:29 +01:00
msgfmt += "<i class='material-icons icon-close' title=\"" +
__("Click to close") + "\" onclick=\"Notify.close()\">close</i>";
2014-11-09 18:31:29 +01:00
2018-12-02 18:44:53 +01:00
notify.innerHTML = msgfmt;
notify.addClassName("visible");
if (!keep)
this.timeout = window.setTimeout(() => {
notify.removeClassName("visible");
}, this.default_timeout);
},
info: function(msg, keep) {
2018-12-02 18:56:30 +01:00
keep = keep || false;
2018-12-02 18:44:53 +01:00
this.msg(msg, keep, this.KIND_INFO);
},
progress: function(msg, keep) {
2018-12-02 18:56:30 +01:00
keep = keep || true;
2018-12-02 18:44:53 +01:00
this.msg(msg, keep, this.KIND_PROGRESS);
},
2018-12-02 18:56:30 +01:00
error: function(msg, keep) {
keep = keep || true;
this.msg(msg, keep, this.KIND_ERROR);
2018-12-02 18:44:53 +01:00
}
};
// http://stackoverflow.com/questions/6251937/how-to-get-selecteduser-highlighted-text-in-contenteditable-element-and-replac
/* exported getSelectionText */
function getSelectionText() {
2018-11-29 18:07:23 +01:00
let text = "";
if (typeof window.getSelection != "undefined") {
2018-11-29 18:07:23 +01:00
const sel = window.getSelection();
if (sel.rangeCount) {
2018-11-29 18:07:23 +01:00
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();
}