2018-12-01 19:07:00 +00:00
|
|
|
/* global dijit, __, ngettext, notify */
|
2018-11-29 18:03:55 +00:00
|
|
|
|
2018-12-01 14:42:21 +00:00
|
|
|
const ArticleCache = {
|
|
|
|
has_storage: 'sessionStorage' in window && window['sessionStorage'] !== null,
|
|
|
|
set: function(id, obj) {
|
|
|
|
if (this.has_storage)
|
|
|
|
try {
|
|
|
|
sessionStorage["article:" + id] = obj;
|
|
|
|
} catch (e) {
|
|
|
|
sessionStorage.clear();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
get: function(id) {
|
|
|
|
if (this.has_storage)
|
|
|
|
return sessionStorage["article:" + id];
|
|
|
|
},
|
|
|
|
clear: function() {
|
|
|
|
if (this.has_storage)
|
|
|
|
sessionStorage.clear();
|
|
|
|
},
|
|
|
|
del: function(id) {
|
|
|
|
if (this.has_storage)
|
|
|
|
sessionStorage.removeItem("article:" + id);
|
|
|
|
},
|
|
|
|
};
|
2011-08-31 10:03:52 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
const Article = {
|
2018-12-01 18:01:53 +00:00
|
|
|
_active_article_id: 0,
|
2018-12-02 05:32:13 +00:00
|
|
|
selectionSetScore: function() {
|
|
|
|
const ids = Headlines.getSelected();
|
2018-12-01 14:54:16 +00:00
|
|
|
|
|
|
|
if (ids.length > 0) {
|
|
|
|
console.log(ids);
|
|
|
|
|
|
|
|
const score = prompt(__("Please enter new score for selected articles:"));
|
|
|
|
|
|
|
|
if (score != undefined) {
|
|
|
|
const query = {
|
|
|
|
op: "article", method: "setScore", id: ids.toString(),
|
|
|
|
score: score
|
|
|
|
};
|
|
|
|
|
|
|
|
xhrJson("backend.php", query, (reply) => {
|
|
|
|
if (reply) {
|
|
|
|
reply.id.each((id) => {
|
|
|
|
const row = $("RROW-" + id);
|
|
|
|
|
|
|
|
if (row) {
|
|
|
|
const pic = row.getElementsByClassName("score-pic")[0];
|
|
|
|
|
|
|
|
if (pic) {
|
|
|
|
pic.src = pic.src.replace(/score_.*?\.png/,
|
|
|
|
reply["score_pic"]);
|
|
|
|
pic.setAttribute("score", reply["score"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No articles selected."));
|
2018-12-01 14:54:16 +00:00
|
|
|
}
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
setScore: function(id, pic) {
|
2018-12-01 14:54:16 +00:00
|
|
|
const score = pic.getAttribute("score");
|
|
|
|
|
|
|
|
const new_score = prompt(__("Please enter new score for this article:"), score);
|
|
|
|
|
|
|
|
if (new_score != undefined) {
|
|
|
|
const query = {op: "article", method: "setScore", id: id, score: new_score};
|
|
|
|
|
|
|
|
xhrJson("backend.php", query, (reply) => {
|
|
|
|
if (reply) {
|
|
|
|
pic.src = pic.src.replace(/score_.*?\.png/, reply["score_pic"]);
|
|
|
|
pic.setAttribute("score", new_score);
|
|
|
|
pic.setAttribute("title", new_score);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
cdmUnsetActive: function(event) {
|
|
|
|
const row = $("RROW-" + Article.getActive());
|
|
|
|
|
|
|
|
if (row) {
|
|
|
|
row.removeClassName("active");
|
|
|
|
const cb = dijit.getEnclosingWidget(row.select(".rchk")[0]);
|
|
|
|
|
|
|
|
if (cb && !row.hasClassName("Selected"))
|
|
|
|
cb.attr("checked", false);
|
|
|
|
|
|
|
|
Article.setActive(0);
|
|
|
|
|
|
|
|
if (event)
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
close: function () {
|
2018-12-01 14:05:28 +00:00
|
|
|
if (dijit.byId("content-insert"))
|
|
|
|
dijit.byId("headlines-wrap-inner").removeChild(
|
|
|
|
dijit.byId("content-insert"));
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
displayUrl: function (id) {
|
2018-12-01 14:05:28 +00:00
|
|
|
const query = {op: "rpc", method: "getlinktitlebyid", id: id};
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
xhrJson("backend.php", query, (reply) => {
|
|
|
|
if (reply && reply.link) {
|
|
|
|
prompt(__("Article URL:"), reply.link);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
openInNewWindow: function (id) {
|
2018-12-01 14:05:28 +00:00
|
|
|
const w = window.open("");
|
|
|
|
w.opener = null;
|
|
|
|
w.location = "backend.php?op=article&method=redirect&id=" + id;
|
2018-12-01 18:54:22 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.setActive(id);
|
2018-12-01 14:05:28 +00:00
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
render: function (article) {
|
2018-12-01 14:05:28 +00:00
|
|
|
Utils.cleanupMemory("content-insert");
|
|
|
|
|
|
|
|
dijit.byId("headlines-wrap-inner").addChild(
|
|
|
|
dijit.byId("content-insert"));
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
const c = dijit.byId("content-insert");
|
2009-02-12 21:12:18 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
try {
|
|
|
|
c.domNode.scrollTop = 0;
|
|
|
|
} catch (e) {
|
|
|
|
}
|
2007-11-21 08:23:34 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
c.attr('content', article);
|
|
|
|
PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED, c.domNode);
|
2007-08-09 07:36:04 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
Headlines.correctHeadlinesOffset(Article.getActive());
|
2007-11-21 08:23:34 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
try {
|
2018-12-01 14:05:28 +00:00
|
|
|
c.focus();
|
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
},
|
2018-12-01 14:42:21 +00:00
|
|
|
view: function(id, noexpand) {
|
2018-12-02 05:32:13 +00:00
|
|
|
this.setActive(id);
|
2018-12-01 14:42:21 +00:00
|
|
|
|
|
|
|
if (!noexpand) {
|
|
|
|
console.log("loading article", id);
|
|
|
|
|
|
|
|
const cids = [];
|
|
|
|
|
|
|
|
/* only request uncached articles */
|
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
this.getRelativeIds(id).each((n) => {
|
2018-12-01 14:42:21 +00:00
|
|
|
if (!ArticleCache.get(n))
|
|
|
|
cids.push(n);
|
|
|
|
});
|
|
|
|
|
|
|
|
const cached_article = ArticleCache.get(id);
|
|
|
|
|
|
|
|
if (cached_article) {
|
|
|
|
console.log('rendering cached', id);
|
2018-12-02 05:32:13 +00:00
|
|
|
this.render(cached_article);
|
2018-12-01 14:42:21 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
xhrPost("backend.php", {op: "article", method: "view", id: id, cids: cids.toString()}, (transport) => {
|
|
|
|
try {
|
|
|
|
const reply = Utils.handleRpcJson(transport);
|
|
|
|
|
|
|
|
if (reply) {
|
|
|
|
|
|
|
|
reply.each(function (article) {
|
2018-12-02 05:32:13 +00:00
|
|
|
if (Article.getActive() == article['id']) {
|
|
|
|
Article.render(article['content']);
|
2018-12-01 14:42:21 +00:00
|
|
|
}
|
|
|
|
ArticleCache.set(article['id'], article['content']);
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
console.error("Invalid object received: " + transport.responseText);
|
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.render("<div class='whiteBox'>" +
|
2018-12-01 14:42:21 +00:00
|
|
|
__('Could not display article (invalid object received - see error console for details)') + "</div>");
|
|
|
|
}
|
|
|
|
|
|
|
|
//const unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length;
|
|
|
|
//request_counters(unread_in_buffer == 0);
|
|
|
|
|
|
|
|
notify("");
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error(e);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
editTags: function(id) {
|
2018-12-01 18:01:53 +00:00
|
|
|
const query = "backend.php?op=article&method=editArticleTags¶m=" + param_escape(id);
|
|
|
|
|
|
|
|
if (dijit.byId("editTagsDlg"))
|
|
|
|
dijit.byId("editTagsDlg").destroyRecursive();
|
|
|
|
|
|
|
|
const dialog = new dijit.Dialog({
|
|
|
|
id: "editTagsDlg",
|
|
|
|
title: __("Edit article Tags"),
|
|
|
|
style: "width: 600px",
|
|
|
|
execute: function () {
|
|
|
|
if (this.validate()) {
|
|
|
|
notify_progress("Saving article tags...", true);
|
|
|
|
|
|
|
|
xhrPost("backend.php", this.attr('value'), (transport) => {
|
|
|
|
try {
|
|
|
|
notify('');
|
|
|
|
dialog.hide();
|
|
|
|
|
|
|
|
const data = JSON.parse(transport.responseText);
|
|
|
|
|
|
|
|
if (data) {
|
|
|
|
const id = data.id;
|
|
|
|
|
|
|
|
const tags = $("ATSTR-" + id);
|
|
|
|
const tooltip = dijit.byId("ATSTRTIP-" + id);
|
|
|
|
|
|
|
|
if (tags) tags.innerHTML = data.content;
|
|
|
|
if (tooltip) tooltip.attr('label', data.content_full);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
href: query
|
|
|
|
});
|
|
|
|
|
|
|
|
const tmph = dojo.connect(dialog, 'onLoad', function () {
|
|
|
|
dojo.disconnect(tmph);
|
|
|
|
|
|
|
|
new Ajax.Autocompleter('tags_str', 'tags_choices',
|
|
|
|
"backend.php?op=article&method=completeTags",
|
|
|
|
{tokens: ',', paramName: "search"});
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
cdmScrollToId: function(id, force) {
|
2018-12-01 18:01:53 +00:00
|
|
|
const ctr = $("headlines-frame");
|
|
|
|
const e = $("RROW-" + id);
|
|
|
|
|
|
|
|
if (!e || !ctr) return;
|
|
|
|
|
|
|
|
if (force || e.offsetTop + e.offsetHeight > (ctr.scrollTop + ctr.offsetHeight) ||
|
|
|
|
e.offsetTop < ctr.scrollTop) {
|
|
|
|
|
|
|
|
// expanded cdm has a 4px margin now
|
|
|
|
ctr.scrollTop = parseInt(e.offsetTop) - 4;
|
|
|
|
|
|
|
|
Element.hide("floatingTitle");
|
|
|
|
}
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
setActive: function(id) {
|
|
|
|
console.log("setActive", id);
|
2018-12-01 18:01:53 +00:00
|
|
|
|
|
|
|
$$("div[id*=RROW][class*=active]").each((e) => {
|
|
|
|
e.removeClassName("active");
|
|
|
|
|
|
|
|
if (!e.hasClassName("Selected")) {
|
|
|
|
const cb = dijit.getEnclosingWidget(e.select(".rchk")[0]);
|
|
|
|
if (cb) cb.attr("checked", false);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this._active_article_id = id;
|
|
|
|
|
|
|
|
const row = $("RROW-" + id);
|
|
|
|
|
|
|
|
if (row) {
|
|
|
|
if (row.hasAttribute("data-content")) {
|
|
|
|
console.log("unpacking: " + row.id);
|
|
|
|
|
|
|
|
row.select(".content-inner")[0].innerHTML = row.getAttribute("data-content");
|
|
|
|
row.removeAttribute("data-content");
|
|
|
|
|
|
|
|
PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED_CDM, row);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (row.hasClassName("Unread")) {
|
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
Headlines.catchupBatched(() => {
|
2018-12-02 05:57:22 +00:00
|
|
|
Feeds.decrementFeedCounter(Feeds.getActive(), Feeds.activeIsCat());
|
2018-12-01 18:01:53 +00:00
|
|
|
Headlines.toggleUnread(id, 0);
|
|
|
|
Headlines.updateFloatingTitle(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
row.addClassName("active");
|
|
|
|
|
|
|
|
if (!row.hasClassName("Selected")) {
|
|
|
|
const cb = dijit.getEnclosingWidget(row.select(".rchk")[0]);
|
|
|
|
if (cb) cb.attr("checked", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
PluginHost.run(PluginHost.HOOK_ARTICLE_SET_ACTIVE, this._active_article_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
Headlines.updateSelectedPrompt();
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
getActive: function() {
|
2018-12-01 18:01:53 +00:00
|
|
|
return this._active_article_id;
|
2018-12-01 18:51:00 +00:00
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
scroll: function(offset) {
|
2018-12-01 18:51:00 +00:00
|
|
|
if (!App.isCombinedMode()) {
|
|
|
|
const ci = $("content-insert");
|
|
|
|
if (ci) {
|
|
|
|
ci.scrollTop += offset;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const hi = $("headlines-frame");
|
|
|
|
if (hi) {
|
|
|
|
hi.scrollTop += offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
getRelativeIds: function(id, limit) {
|
2018-12-01 18:51:00 +00:00
|
|
|
|
|
|
|
const tmp = [];
|
|
|
|
|
|
|
|
if (!limit) limit = 6; //3
|
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
const ids = Headlines.getLoaded();
|
2018-12-01 18:51:00 +00:00
|
|
|
|
|
|
|
for (let i = 0; i < ids.length; i++) {
|
|
|
|
if (ids[i] == id) {
|
|
|
|
for (let k = 1; k <= limit; k++) {
|
|
|
|
//if (i > k-1) tmp.push(ids[i-k]);
|
|
|
|
if (i < ids.length - k) tmp.push(ids[i + k]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
},
|
|
|
|
mouseIn: function(id) {
|
|
|
|
this.post_under_pointer = id;
|
|
|
|
},
|
|
|
|
mouseOut: function(id) {
|
|
|
|
this.post_under_pointer = false;
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
getUnderPointer: function() {
|
2018-12-01 18:51:00 +00:00
|
|
|
return this.post_under_pointer;
|
2018-12-01 14:54:16 +00:00
|
|
|
}
|
|
|
|
};
|
2008-05-17 04:42:20 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
const Headlines = {
|
2018-12-01 18:01:53 +00:00
|
|
|
vgroup_last_feed: undefined,
|
2018-12-01 14:05:28 +00:00
|
|
|
_headlines_scroll_timeout: 0,
|
2018-12-01 18:01:53 +00:00
|
|
|
loaded_article_ids: [],
|
|
|
|
current_first_id: 0,
|
|
|
|
catchup_id_batch: [],
|
2018-12-01 14:54:16 +00:00
|
|
|
click: function(event, id, in_body) {
|
|
|
|
in_body = in_body || false;
|
|
|
|
|
|
|
|
if (App.isCombinedMode()) {
|
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
if (!in_body && (event.ctrlKey || id == Article.getActive() || getInitParam("cdm_expanded"))) {
|
|
|
|
Article.openInNewWindow(id);
|
2018-12-01 14:54:16 +00:00
|
|
|
}
|
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.setActive(id);
|
2018-12-01 14:54:16 +00:00
|
|
|
|
|
|
|
if (!getInitParam("cdm_expanded"))
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.cdmScrollToId(id);
|
2018-12-01 14:54:16 +00:00
|
|
|
|
|
|
|
return in_body;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (event.ctrlKey) {
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.openInNewWindow(id);
|
|
|
|
Article.setActive(id);
|
2018-12-01 14:54:16 +00:00
|
|
|
} else {
|
|
|
|
Article.view(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
},
|
2018-12-01 14:05:28 +00:00
|
|
|
initScrollHandler: function() {
|
|
|
|
$("headlines-frame").onscroll = (event) => {
|
|
|
|
clearTimeout(this._headlines_scroll_timeout);
|
|
|
|
this._headlines_scroll_timeout = window.setTimeout(function() {
|
|
|
|
//console.log('done scrolling', event);
|
|
|
|
Headlines.scrollHandler();
|
|
|
|
}, 50);
|
|
|
|
}
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
loadMore: function() {
|
2018-12-01 14:05:28 +00:00
|
|
|
const view_mode = document.forms["main_toolbar_form"].view_mode.value;
|
|
|
|
const unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length;
|
|
|
|
const num_all = $$("#headlines-frame > div[id*=RROW]").length;
|
2018-12-02 05:57:22 +00:00
|
|
|
const num_unread = Feeds.getUnread(Feeds.getActive(), Feeds.activeIsCat());
|
2011-03-18 09:55:45 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
// TODO implement marked & published
|
2012-10-25 09:24:50 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
let offset = num_all;
|
2013-06-07 06:04:43 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
switch (view_mode) {
|
|
|
|
case "marked":
|
|
|
|
case "published":
|
2018-12-02 05:32:13 +00:00
|
|
|
console.warn("loadMore: ", view_mode, "not implemented");
|
2018-12-01 14:05:28 +00:00
|
|
|
break;
|
|
|
|
case "unread":
|
|
|
|
offset = unread_in_buffer;
|
|
|
|
break;
|
|
|
|
case "adaptive":
|
2018-12-02 05:57:22 +00:00
|
|
|
if (!(Feeds.getActive() == -1 && !Feeds.activeIsCat()))
|
2018-12-01 14:05:28 +00:00
|
|
|
offset = num_unread > 0 ? unread_in_buffer : num_all;
|
|
|
|
break;
|
|
|
|
}
|
2013-05-14 11:28:13 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
console.log("loadMore, offset=", offset);
|
2013-05-14 11:28:13 +00:00
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
Feeds.open({feed: Feeds.getActive(), is_cat: Feeds.activeIsCat(), offset: offset});
|
2018-12-01 14:05:28 +00:00
|
|
|
},
|
|
|
|
scrollHandler: function() {
|
|
|
|
try {
|
2018-12-02 05:32:13 +00:00
|
|
|
Headlines.unpackVisible();
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (App.isCombinedMode()) {
|
|
|
|
Headlines.updateFloatingTitle();
|
2008-05-17 04:42:20 +00:00
|
|
|
|
2018-12-01 19:12:36 +00:00
|
|
|
// set topmost child in the buffer as active, but not if we're at the beginning (to prevent auto marking
|
|
|
|
// first article as read all the time)
|
|
|
|
if ($("headlines-frame").scrollTop != 0 &&
|
|
|
|
getInitParam("cdm_expanded") && getInitParam("cdm_auto_catchup") == 1) {
|
2012-10-31 18:55:35 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
const rows = $$("#headlines-frame > div[id*=RROW]");
|
2007-11-21 09:15:14 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
|
|
|
const row = rows[i];
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if ($("headlines-frame").scrollTop <= row.offsetTop &&
|
|
|
|
row.offsetTop - $("headlines-frame").scrollTop < 100 &&
|
2018-12-02 05:32:13 +00:00
|
|
|
row.getAttribute("data-article-id") != Article.getActive()) {
|
2015-07-12 22:19:52 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.setActive(row.getAttribute("data-article-id"));
|
2018-12-01 14:05:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (!Feeds.infscroll_disabled) {
|
|
|
|
const hsp = $("headlines-spacer");
|
|
|
|
const container = $("headlines-frame");
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (hsp && hsp.offsetTop - 250 <= container.scrollTop + container.offsetHeight) {
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
hsp.innerHTML = "<span class='loading'><img src='images/indicator_tiny.gif'> " +
|
|
|
|
__("Loading, please wait...") + "</span>";
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
Headlines.loadMore();
|
2018-12-01 14:05:28 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (getInitParam("cdm_auto_catchup") == 1) {
|
|
|
|
|
|
|
|
let rows = $$("#headlines-frame > div[id*=RROW][class*=Unread]");
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
|
|
|
const row = rows[i];
|
|
|
|
|
|
|
|
if ($("headlines-frame").scrollTop > (row.offsetTop + row.offsetHeight / 2)) {
|
|
|
|
const id = row.getAttribute("data-article-id")
|
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (this.catchup_id_batch.indexOf(id) == -1)
|
|
|
|
this.catchup_id_batch.push(id);
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-10-07 15:14:21 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (Feeds.infscroll_disabled) {
|
|
|
|
const row = $$("#headlines-frame div[id*=RROW]").last();
|
2015-10-07 15:14:21 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (row && $("headlines-frame").scrollTop >
|
|
|
|
(row.offsetTop + row.offsetHeight - 50)) {
|
2015-10-07 15:14:21 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
console.log("we seem to be at an end");
|
2015-10-07 15:14:21 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (getInitParam("on_catchup_show_next_feed") == "1") {
|
2018-12-02 05:57:22 +00:00
|
|
|
Feeds.openNextUnread();
|
2018-12-01 14:05:28 +00:00
|
|
|
}
|
|
|
|
}
|
2015-10-07 15:14:21 +00:00
|
|
|
}
|
2018-11-30 21:11:52 +00:00
|
|
|
}
|
2018-12-01 14:05:28 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.warn("scrollHandler", e);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
updateFloatingTitle: function(unread_only) {
|
|
|
|
if (!App.isCombinedMode()/* || !getInitParam("cdm_expanded")*/) return;
|
2011-08-03 14:36:08 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
const hf = $("headlines-frame");
|
|
|
|
const elems = $$("#headlines-frame > div[id*=RROW]");
|
|
|
|
const ft = $("floatingTitle");
|
2011-08-03 14:36:08 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
for (let i = 0; i < elems.length; i++) {
|
|
|
|
const row = elems[i];
|
2007-11-21 09:59:22 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (row && row.offsetTop + row.offsetHeight > hf.scrollTop) {
|
2014-07-25 09:54:10 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
const header = row.select(".header")[0];
|
|
|
|
const id = row.getAttribute("data-article-id");
|
2012-10-30 06:24:30 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (unread_only || id != ft.getAttribute("data-article-id")) {
|
|
|
|
if (id != ft.getAttribute("data-article-id")) {
|
2012-10-10 12:30:26 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
ft.setAttribute("data-article-id", id);
|
|
|
|
ft.innerHTML = header.innerHTML;
|
|
|
|
ft.firstChild.innerHTML = "<img class='anchor marked-pic' src='images/page_white_go.png' " +
|
2018-12-02 05:32:13 +00:00
|
|
|
"onclick=\"Article.cdmScrollToId(" + id + ", true)\">" + ft.firstChild.innerHTML;
|
2007-09-05 16:10:35 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
this.initFloatingMenu();
|
2018-12-01 14:05:28 +00:00
|
|
|
|
|
|
|
const cb = ft.select(".rchk")[0];
|
2007-09-05 16:10:35 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (cb)
|
|
|
|
cb.parentNode.removeChild(cb);
|
|
|
|
}
|
2010-11-19 18:05:28 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (row.hasClassName("Unread"))
|
|
|
|
ft.addClassName("Unread");
|
|
|
|
else
|
|
|
|
ft.removeClassName("Unread");
|
2015-07-12 10:37:24 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
PluginHost.run(PluginHost.HOOK_FLOATING_TITLE, row);
|
2007-08-24 05:45:42 +00:00
|
|
|
}
|
2018-12-01 14:05:28 +00:00
|
|
|
|
|
|
|
ft.style.marginRight = hf.offsetWidth - row.offsetWidth + "px";
|
|
|
|
|
|
|
|
if (header.offsetTop + header.offsetHeight < hf.scrollTop + ft.offsetHeight - 5 &&
|
|
|
|
row.offsetTop + row.offsetHeight >= hf.scrollTop + ft.offsetHeight - 5)
|
|
|
|
new Effect.Appear(ft, {duration: 0.3});
|
|
|
|
else
|
|
|
|
Element.hide(ft);
|
|
|
|
|
|
|
|
return;
|
2007-05-15 07:37:10 +00:00
|
|
|
}
|
2007-05-15 05:59:22 +00:00
|
|
|
}
|
2018-12-01 14:05:28 +00:00
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
unpackVisible: function() {
|
2018-12-01 14:05:28 +00:00
|
|
|
if (!App.isCombinedMode() || !getInitParam("cdm_expanded")) return;
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
const rows = $$("#headlines-frame div[id*=RROW][data-content]");
|
|
|
|
const threshold = $("headlines-frame").scrollTop + $("headlines-frame").offsetHeight + 600;
|
2013-03-21 06:34:36 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
|
|
|
const row = rows[i];
|
2013-04-06 06:33:30 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (row.offsetTop <= threshold) {
|
|
|
|
console.log("unpacking: " + row.id);
|
2013-04-06 06:33:30 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
row.select(".content-inner")[0].innerHTML = row.getAttribute("data-content");
|
|
|
|
row.removeAttribute("data-content");
|
2008-05-19 07:37:44 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED_CDM, row);
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onLoaded: function(transport, offset) {
|
2018-12-01 14:21:26 +00:00
|
|
|
const reply = Utils.handleRpcJson(transport);
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
console.log("Headlines.onLoaded: offset=", offset);
|
2006-09-28 12:00:03 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
let is_cat = false;
|
|
|
|
let feed_id = false;
|
2016-01-10 22:11:26 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
if (reply) {
|
2010-11-16 11:43:43 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
is_cat = reply['headlines']['is_cat'];
|
|
|
|
feed_id = reply['headlines']['id'];
|
2018-12-01 18:51:00 +00:00
|
|
|
Feeds.last_search_query = reply['headlines']['search_query'];
|
2008-07-25 05:11:22 +00:00
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
if (feed_id != -7 && (feed_id != Feeds.getActive() || is_cat != Feeds.activeIsCat()))
|
2018-12-01 14:05:28 +00:00
|
|
|
return;
|
2010-11-16 16:15:04 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
try {
|
|
|
|
if (offset == 0) {
|
|
|
|
$("headlines-frame").scrollTop = 0;
|
2011-01-31 10:10:54 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
Element.hide("floatingTitle");
|
|
|
|
$("floatingTitle").setAttribute("data-article-id", 0);
|
|
|
|
$("floatingTitle").innerHTML = "";
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
}
|
2007-05-15 05:03:35 +00:00
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
$("headlines-frame").removeClassName("cdm");
|
|
|
|
$("headlines-frame").removeClassName("normal");
|
|
|
|
|
|
|
|
$("headlines-frame").addClassName(App.isCombinedMode() ? "cdm" : "normal");
|
|
|
|
|
|
|
|
const headlines_count = reply['headlines-info']['count'];
|
|
|
|
Feeds.infscroll_disabled = parseInt(headlines_count) != 30;
|
|
|
|
|
|
|
|
console.log('received', headlines_count, 'headlines, infscroll disabled=', Feeds.infscroll_disabled);
|
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
this.vgroup_last_feed = reply['headlines-info']['vgroup_last_feed'];
|
|
|
|
this.current_first_id = reply['headlines']['first_id'];
|
2018-12-01 14:05:28 +00:00
|
|
|
|
|
|
|
if (offset == 0) {
|
2018-12-01 18:01:53 +00:00
|
|
|
this.loaded_article_ids = [];
|
2018-12-01 14:05:28 +00:00
|
|
|
|
|
|
|
dojo.html.set($("headlines-toolbar"),
|
|
|
|
reply['headlines']['toolbar'],
|
|
|
|
{parseContent: true});
|
|
|
|
|
|
|
|
$("headlines-frame").innerHTML = '';
|
|
|
|
|
|
|
|
let tmp = document.createElement("div");
|
|
|
|
tmp.innerHTML = reply['headlines']['content'];
|
|
|
|
dojo.parser.parse(tmp);
|
|
|
|
|
|
|
|
while (tmp.hasChildNodes()) {
|
|
|
|
const row = tmp.removeChild(tmp.firstChild);
|
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (this.loaded_article_ids.indexOf(row.id) == -1 || row.hasClassName("feed-title")) {
|
2018-12-01 14:05:28 +00:00
|
|
|
dijit.byId("headlines-frame").domNode.appendChild(row);
|
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
this.loaded_article_ids.push(row.id);
|
2018-12-01 14:05:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let hsp = $("headlines-spacer");
|
2018-12-01 19:16:08 +00:00
|
|
|
|
|
|
|
if (!hsp) {
|
|
|
|
hsp = document.createElement("div");
|
|
|
|
hsp.id = "headlines-spacer";
|
|
|
|
}
|
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
dijit.byId('headlines-frame').domNode.appendChild(hsp);
|
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
this.initHeadlinesMenu();
|
2018-12-01 14:05:28 +00:00
|
|
|
|
|
|
|
if (Feeds.infscroll_disabled)
|
2018-12-02 05:57:22 +00:00
|
|
|
hsp.innerHTML = "<a href='#' onclick='Feeds.openNextUnread()'>" +
|
2018-12-01 14:05:28 +00:00
|
|
|
__("Click to open next unread feed.") + "</a>";
|
|
|
|
|
|
|
|
if (Feeds._search_query) {
|
|
|
|
$("feed_title").innerHTML += "<span id='cancel_search'>" +
|
|
|
|
" (<a href='#' onclick='Feeds.cancelSearch()'>" + __("Cancel search") + "</a>)" +
|
|
|
|
"</span>";
|
|
|
|
}
|
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
} else if (headlines_count > 0 && feed_id == Feeds.getActive() && is_cat == Feeds.activeIsCat()) {
|
2018-12-01 14:05:28 +00:00
|
|
|
const c = dijit.byId("headlines-frame");
|
2018-12-02 05:32:13 +00:00
|
|
|
//const ids = Headlines.getSelected();
|
2018-12-01 14:05:28 +00:00
|
|
|
|
|
|
|
let hsp = $("headlines-spacer");
|
|
|
|
|
|
|
|
if (hsp)
|
|
|
|
c.domNode.removeChild(hsp);
|
|
|
|
|
|
|
|
let tmp = document.createElement("div");
|
|
|
|
tmp.innerHTML = reply['headlines']['content'];
|
|
|
|
dojo.parser.parse(tmp);
|
|
|
|
|
|
|
|
while (tmp.hasChildNodes()) {
|
|
|
|
let row = tmp.removeChild(tmp.firstChild);
|
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (this.loaded_article_ids.indexOf(row.id) == -1 || row.hasClassName("feed-title")) {
|
2018-12-01 14:05:28 +00:00
|
|
|
dijit.byId("headlines-frame").domNode.appendChild(row);
|
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
this.loaded_article_ids.push(row.id);
|
2018-12-01 14:05:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-01 19:16:08 +00:00
|
|
|
if (!hsp) {
|
|
|
|
hsp = document.createElement("div");
|
|
|
|
hsp.id = "headlines-spacer";
|
|
|
|
}
|
|
|
|
|
2018-12-01 14:05:28 +00:00
|
|
|
c.domNode.appendChild(hsp);
|
|
|
|
|
|
|
|
/* console.log("restore selected ids: " + ids);
|
|
|
|
|
|
|
|
for (let i = 0; i < ids.length; i++) {
|
|
|
|
markHeadline(ids[i]);
|
|
|
|
} */
|
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
this.initHeadlinesMenu();
|
2018-12-01 14:05:28 +00:00
|
|
|
|
|
|
|
if (Feeds.infscroll_disabled) {
|
2018-12-02 05:57:22 +00:00
|
|
|
hsp.innerHTML = "<a href='#' onclick='Feeds.openNextUnread()'>" +
|
2018-12-01 14:05:28 +00:00
|
|
|
__("Click to open next unread feed.") + "</a>";
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
console.log("no new headlines received");
|
|
|
|
|
|
|
|
const first_id_changed = reply['headlines']['first_id_changed'];
|
|
|
|
console.log("first id changed:" + first_id_changed);
|
|
|
|
|
|
|
|
let hsp = $("headlines-spacer");
|
|
|
|
|
|
|
|
if (hsp) {
|
|
|
|
if (first_id_changed) {
|
2018-12-02 05:57:22 +00:00
|
|
|
hsp.innerHTML = "<a href='#' onclick='Feeds.reloadCurrent()'>" +
|
2018-12-01 14:05:28 +00:00
|
|
|
__("New articles found, reload feed to continue.") + "</a>";
|
|
|
|
} else {
|
2018-12-02 05:57:22 +00:00
|
|
|
hsp.innerHTML = "<a href='#' onclick='Feeds.openNextUnread()'>" +
|
2018-12-01 14:05:28 +00:00
|
|
|
__("Click to open next unread feed.") + "</a>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
console.error("Invalid object received: " + transport.responseText);
|
|
|
|
dijit.byId("headlines-frame").attr('content', "<div class='whiteBox'>" +
|
|
|
|
__('Could not update headlines (invalid object received - see error console for details)') +
|
|
|
|
"</div>");
|
|
|
|
}
|
|
|
|
|
|
|
|
Feeds.infscroll_in_progress = 0;
|
|
|
|
|
|
|
|
// this is used to auto-catchup articles if needed after infscroll request has finished,
|
2018-12-02 04:40:09 +00:00
|
|
|
// unpack visible articles, fill buffer more, etc
|
2018-12-01 14:05:28 +00:00
|
|
|
this.scrollHandler();
|
|
|
|
|
|
|
|
notify("");
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
reverse: function() {
|
2018-12-01 14:42:21 +00:00
|
|
|
const toolbar = document.forms["main_toolbar_form"];
|
|
|
|
const order_by = dijit.getEnclosingWidget(toolbar.order_by);
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 14:42:21 +00:00
|
|
|
let value = order_by.attr('value');
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 14:42:21 +00:00
|
|
|
if (value == "date_reverse")
|
|
|
|
value = "default";
|
|
|
|
else
|
|
|
|
value = "date_reverse";
|
2006-09-28 12:00:03 +00:00
|
|
|
|
2018-12-01 14:42:21 +00:00
|
|
|
order_by.attr('value', value);
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
Feeds.reloadCurrent();
|
2018-12-01 14:42:21 +00:00
|
|
|
},
|
2018-12-01 18:01:53 +00:00
|
|
|
selectionToggleUnread: function(params) {
|
|
|
|
params = params || {};
|
2005-09-05 12:02:00 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
const cmode = params.cmode || 2;
|
|
|
|
const callback = params.callback;
|
|
|
|
const no_error = params.no_error || false;
|
2018-12-02 05:32:13 +00:00
|
|
|
const ids = params.ids || Headlines.getSelected();
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (ids.length == 0) {
|
|
|
|
if (!no_error)
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No articles selected."));
|
2008-05-20 05:47:57 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ids.each((id) => {
|
|
|
|
const row = $("RROW-" + id);
|
|
|
|
|
|
|
|
if (row) {
|
|
|
|
switch (cmode) {
|
|
|
|
case 0:
|
|
|
|
row.removeClassName("Unread");
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
row.addClassName("Unread");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
row.toggleClassName("Unread");
|
|
|
|
}
|
2018-12-01 05:20:09 +00:00
|
|
|
}
|
|
|
|
});
|
2006-05-23 06:35:27 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
const query = {
|
|
|
|
op: "rpc", method: "catchupSelected",
|
|
|
|
cmode: cmode, ids: ids.toString()
|
|
|
|
};
|
2013-04-09 12:13:32 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
notify_progress("Loading, please wait...");
|
2005-09-05 12:02:00 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
Utils.handleRpcJson(transport);
|
|
|
|
if (callback) callback(transport);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
selectionToggleMarked: function(ids) {
|
2018-12-02 05:32:13 +00:00
|
|
|
const rows = ids || Headlines.getSelected();
|
2018-12-01 18:01:53 +00:00
|
|
|
|
|
|
|
if (rows.length == 0) {
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No articles selected."));
|
2018-12-01 18:01:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-01-26 05:20:56 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
|
|
|
this.toggleMark(rows[i], true, true);
|
|
|
|
}
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
const query = {
|
|
|
|
op: "rpc", method: "markSelected",
|
|
|
|
ids: rows.toString(), cmode: 2
|
|
|
|
};
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
Utils.handleRpcJson(transport);
|
2018-12-01 05:20:09 +00:00
|
|
|
});
|
2018-12-01 18:01:53 +00:00
|
|
|
},
|
|
|
|
selectionTogglePublished: function(ids) {
|
2018-12-02 05:32:13 +00:00
|
|
|
const rows = ids || Headlines.getSelected();
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (rows.length == 0) {
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No articles selected."));
|
2018-12-01 18:01:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < rows.length; i++) {
|
|
|
|
this.togglePub(rows[i], true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 0) {
|
|
|
|
const query = {
|
|
|
|
op: "rpc", method: "publishSelected",
|
|
|
|
ids: rows.toString(), cmode: 2
|
|
|
|
};
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-12-01 05:20:09 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
2018-12-01 14:21:26 +00:00
|
|
|
Utils.handleRpcJson(transport);
|
2018-12-01 05:20:09 +00:00
|
|
|
});
|
2018-12-01 18:01:53 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
toggleMark: function(id, client_only) {
|
|
|
|
const query = {op: "rpc", id: id, method: "mark"};
|
|
|
|
const row = $("RROW-" + id);
|
2008-05-20 05:47:57 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (row) {
|
|
|
|
const imgs = $$("img[class*=marked-pic][class*=marked-" + id + "]");
|
2007-08-09 12:45:30 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
imgs.each((img) => {
|
|
|
|
if (!row.hasClassName("marked")) {
|
|
|
|
img.src = img.src.replace("mark_unset", "mark_set");
|
|
|
|
query.mark = 1;
|
|
|
|
} else {
|
|
|
|
img.src = img.src.replace("mark_set", "mark_unset");
|
|
|
|
query.mark = 0;
|
|
|
|
}
|
|
|
|
});
|
2005-09-05 12:02:00 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
row.toggleClassName("marked");
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (!client_only)
|
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
Utils.handleRpcJson(transport);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
togglePub: function(id, client_only) {
|
|
|
|
const row = $("RROW-" + id);
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (row) {
|
|
|
|
const query = {op: "rpc", id: id, method: "publ"};
|
2012-03-12 09:53:10 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
const imgs = $$("img[class*=pub-pic][class*=pub-" + id + "]");
|
2012-03-12 09:53:10 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
imgs.each((img) => {
|
|
|
|
if (!row.hasClassName("published")) {
|
|
|
|
img.src = img.src.replace("pub_unset", "pub_set");
|
|
|
|
query.pub = 1;
|
|
|
|
} else {
|
|
|
|
img.src = img.src.replace("pub_set", "pub_unset");
|
|
|
|
query.pub = 0;
|
2008-02-19 14:49:36 +00:00
|
|
|
}
|
2018-12-01 18:01:53 +00:00
|
|
|
});
|
2008-05-16 02:06:57 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
row.toggleClassName("published");
|
2013-02-27 18:27:49 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (!client_only)
|
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
Utils.handleRpcJson(transport);
|
|
|
|
});
|
2013-02-27 18:27:49 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
}
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
move: function(mode, noscroll, noexpand) {
|
|
|
|
const rows = Headlines.getLoaded();
|
2013-02-27 18:27:49 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
let prev_id = false;
|
|
|
|
let next_id = false;
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
if (!$('RROW-' + Article.getActive())) {
|
|
|
|
Article.setActive(0);
|
2008-05-16 02:06:57 +00:00
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
if (!Article.getActive()) {
|
2018-12-01 18:01:53 +00:00
|
|
|
next_id = rows[0];
|
|
|
|
prev_id = rows[rows.length - 1]
|
|
|
|
} else {
|
|
|
|
for (let i = 0; i < rows.length; i++) {
|
2018-12-02 05:32:13 +00:00
|
|
|
if (rows[i] == Article.getActive()) {
|
2013-02-27 18:27:49 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
// Account for adjacent identical article ids.
|
|
|
|
if (i > 0) prev_id = rows[i - 1];
|
2013-02-27 18:27:49 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
for (let j = i + 1; j < rows.length; j++) {
|
2018-12-02 05:32:13 +00:00
|
|
|
if (rows[j] != Article.getActive()) {
|
2018-12-01 18:01:53 +00:00
|
|
|
next_id = rows[j];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2018-11-30 10:51:54 +00:00
|
|
|
}
|
2008-05-16 02:06:57 +00:00
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
}
|
2008-02-19 14:49:36 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
console.log("cur: " + Article.getActive() + " next: " + next_id);
|
2013-04-15 09:16:14 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (mode == "next") {
|
2018-12-02 05:32:13 +00:00
|
|
|
if (next_id || Article.getActive()) {
|
2018-12-01 18:01:53 +00:00
|
|
|
if (App.isCombinedMode()) {
|
2013-04-15 09:16:14 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
const article = $("RROW-" + Article.getActive());
|
2018-12-01 18:01:53 +00:00
|
|
|
const ctr = $("headlines-frame");
|
2013-04-15 09:16:14 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (!noscroll && article && article.offsetTop + article.offsetHeight >
|
|
|
|
ctr.scrollTop + ctr.offsetHeight) {
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.scroll(ctr.offsetHeight / 4);
|
2010-11-14 12:55:51 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
} else if (next_id) {
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.setActive(next_id);
|
|
|
|
Article.cdmScrollToId(next_id, true);
|
2018-12-01 18:01:53 +00:00
|
|
|
}
|
2008-02-19 14:49:36 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
} else if (next_id) {
|
2018-12-01 18:51:00 +00:00
|
|
|
Headlines.correctHeadlinesOffset(next_id);
|
2018-12-01 18:01:53 +00:00
|
|
|
Article.view(next_id, noexpand);
|
|
|
|
}
|
|
|
|
}
|
2009-01-18 09:09:52 +00:00
|
|
|
}
|
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (mode == "prev") {
|
2018-12-02 05:32:13 +00:00
|
|
|
if (prev_id || Article.getActive()) {
|
2018-12-01 18:01:53 +00:00
|
|
|
if (App.isCombinedMode()) {
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
const article = $("RROW-" + Article.getActive());
|
2018-12-01 18:01:53 +00:00
|
|
|
const prev_article = $("RROW-" + prev_id);
|
|
|
|
const ctr = $("headlines-frame");
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (!noscroll && article && article.offsetTop < ctr.scrollTop) {
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.scroll(-ctr.offsetHeight / 3);
|
2018-12-01 18:01:53 +00:00
|
|
|
} else if (!noscroll && prev_article &&
|
|
|
|
prev_article.offsetTop < ctr.scrollTop) {
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.scroll(-ctr.offsetHeight / 4);
|
2018-12-01 18:01:53 +00:00
|
|
|
} else if (prev_id) {
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.setActive(prev_id);
|
|
|
|
Article.cdmScrollToId(prev_id, noscroll);
|
2018-12-01 18:01:53 +00:00
|
|
|
}
|
2018-12-01 05:59:30 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
} else if (prev_id) {
|
2018-12-01 18:51:00 +00:00
|
|
|
Headlines.correctHeadlinesOffset(prev_id);
|
2018-12-01 18:01:53 +00:00
|
|
|
Article.view(prev_id, noexpand);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
updateSelectedPrompt: function() {
|
2018-12-02 05:32:13 +00:00
|
|
|
const count = Headlines.getSelected().length;
|
2018-12-01 18:01:53 +00:00
|
|
|
const elem = $("selected_prompt");
|
2007-03-26 05:31:42 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (elem) {
|
|
|
|
elem.innerHTML = ngettext("%d article selected",
|
|
|
|
"%d articles selected", count).replace("%d", count);
|
2007-08-19 05:13:45 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
count > 0 ? Element.show(elem) : Element.hide(elem);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
toggleUnread: function(id, cmode) {
|
2018-12-01 05:59:30 +00:00
|
|
|
const row = $("RROW-" + id);
|
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (row) {
|
2018-12-01 18:01:53 +00:00
|
|
|
const origClassName = row.className;
|
|
|
|
|
|
|
|
if (cmode == undefined) cmode = 2;
|
|
|
|
|
2018-12-01 05:59:30 +00:00
|
|
|
switch (cmode) {
|
|
|
|
case 0:
|
2010-11-14 12:55:51 +00:00
|
|
|
row.removeClassName("Unread");
|
2018-12-01 05:59:30 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2010-11-14 12:55:51 +00:00
|
|
|
row.addClassName("Unread");
|
2018-12-01 05:59:30 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
row.toggleClassName("Unread");
|
2018-12-01 18:01:53 +00:00
|
|
|
break;
|
2006-08-02 08:47:34 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (row.className != origClassName)
|
|
|
|
xhrPost("backend.php",
|
|
|
|
{op: "rpc", method: "catchupSelected", cmode: cmode, ids: id}, (transport) => {
|
|
|
|
Utils.handleRpcJson(transport);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
selectionRemoveLabel: function(id, ids) {
|
2018-12-02 05:32:13 +00:00
|
|
|
if (!ids) ids = Headlines.getSelected();
|
2005-11-27 14:56:10 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (ids.length == 0) {
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No articles selected."));
|
2018-12-01 18:01:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2005-11-27 14:56:10 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
const query = {
|
|
|
|
op: "article", method: "removeFromLabel",
|
|
|
|
ids: ids.toString(), lid: id
|
|
|
|
};
|
2007-08-09 12:45:30 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
Utils.handleRpcJson(transport);
|
2018-12-01 18:51:00 +00:00
|
|
|
this.onLabelsUpdated(transport);
|
2018-12-01 18:01:53 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
selectionAssignLabel: function(id, ids) {
|
2018-12-02 05:32:13 +00:00
|
|
|
if (!ids) ids = Headlines.getSelected();
|
2007-08-09 12:45:30 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (ids.length == 0) {
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No articles selected."));
|
2018-12-01 18:01:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2007-08-09 12:45:30 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
const query = {
|
|
|
|
op: "article", method: "assignToLabel",
|
|
|
|
ids: ids.toString(), lid: id
|
|
|
|
};
|
2007-08-09 12:45:30 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
2018-12-01 14:21:26 +00:00
|
|
|
Utils.handleRpcJson(transport);
|
2018-12-01 18:51:00 +00:00
|
|
|
this.onLabelsUpdated(transport);
|
2018-11-30 12:07:44 +00:00
|
|
|
});
|
2018-12-01 18:01:53 +00:00
|
|
|
},
|
|
|
|
deleteSelection: function() {
|
2018-12-02 05:32:13 +00:00
|
|
|
const rows = Headlines.getSelected();
|
2007-08-09 12:45:30 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (rows.length == 0) {
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No articles selected."));
|
2018-12-01 18:01:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2005-12-13 05:52:32 +00:00
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
const fn = Feeds.getName(Feeds.getActive(), Feeds.activeIsCat());
|
2018-12-01 18:01:53 +00:00
|
|
|
let str;
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
if (Feeds.getActive() != 0) {
|
2018-12-01 18:01:53 +00:00
|
|
|
str = ngettext("Delete %d selected article in %s?", "Delete %d selected articles in %s?", rows.length);
|
|
|
|
} else {
|
|
|
|
str = ngettext("Delete %d selected article?", "Delete %d selected articles?", rows.length);
|
|
|
|
}
|
2005-12-13 05:52:32 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
str = str.replace("%d", rows.length);
|
|
|
|
str = str.replace("%s", fn);
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
2005-12-13 05:52:32 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
const query = {op: "rpc", method: "delete", ids: rows.toString()};
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
Utils.handleRpcJson(transport);
|
2018-12-02 05:57:22 +00:00
|
|
|
Feeds.reloadCurrent();
|
2018-12-01 18:01:53 +00:00
|
|
|
});
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
getSelected: function() {
|
2018-12-01 18:01:53 +00:00
|
|
|
const rv = [];
|
2008-05-19 10:24:46 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
$$("#headlines-frame > div[id*=RROW][class*=Selected]").each(
|
|
|
|
function (child) {
|
|
|
|
rv.push(child.getAttribute("data-article-id"));
|
|
|
|
});
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
// consider active article a honorary member of selected articles
|
2018-12-02 05:32:13 +00:00
|
|
|
if (Article.getActive())
|
|
|
|
rv.push(Article.getActive());
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
return rv.uniq();
|
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
getLoaded: function() {
|
2018-12-01 18:01:53 +00:00
|
|
|
const rv = [];
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
const children = $$("#headlines-frame > div[id*=RROW-]");
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
children.each(function (child) {
|
|
|
|
if (Element.visible(child)) {
|
|
|
|
rv.push(child.getAttribute("data-article-id"));
|
|
|
|
}
|
|
|
|
});
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
return rv;
|
|
|
|
},
|
2018-12-02 07:33:58 +00:00
|
|
|
onRowChecked: function(elem) {
|
|
|
|
// account for dojo checkboxes
|
|
|
|
elem = elem.domNode || elem;
|
|
|
|
|
|
|
|
elem.up("div[id*=RROW]").toggleClassName("Selected");
|
|
|
|
|
|
|
|
this.updateSelectedPrompt();
|
|
|
|
},
|
2018-12-02 05:34:08 +00:00
|
|
|
select: function(mode) {
|
2018-12-01 18:01:53 +00:00
|
|
|
// mode = all,none,unread,invert,marked,published
|
|
|
|
let query = "#headlines-frame > div[id*=RROW]";
|
2018-11-30 21:11:52 +00:00
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case "none":
|
2018-12-01 18:01:53 +00:00
|
|
|
case "all":
|
2018-11-30 21:11:52 +00:00
|
|
|
case "invert":
|
2018-12-01 18:01:53 +00:00
|
|
|
break;
|
|
|
|
case "marked":
|
|
|
|
query += "[class*=marked]";
|
|
|
|
break;
|
|
|
|
case "published":
|
|
|
|
query += "[class*=published]";
|
|
|
|
break;
|
|
|
|
case "unread":
|
|
|
|
query += "[class*=Unread]";
|
2018-11-30 21:11:52 +00:00
|
|
|
break;
|
|
|
|
default:
|
2018-12-02 05:34:08 +00:00
|
|
|
console.warn("select: unknown mode", mode);
|
2018-11-30 21:11:52 +00:00
|
|
|
}
|
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
const rows = $$(query);
|
2007-05-19 13:47:51 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
|
|
|
const row = rows[i];
|
|
|
|
const cb = dijit.getEnclosingWidget(row.select(".rchk")[0]);
|
2010-11-29 11:21:28 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
switch (mode) {
|
|
|
|
case "none":
|
|
|
|
row.removeClassName("Selected");
|
2010-11-29 11:21:28 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (!row.hasClassName("active"))
|
|
|
|
cb.attr("checked", false);
|
|
|
|
break;
|
|
|
|
case "invert":
|
|
|
|
if (row.hasClassName("Selected")) {
|
|
|
|
row.removeClassName("Selected");
|
2010-11-29 11:21:28 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (!row.hasClassName("active"))
|
|
|
|
cb.attr("checked", false);
|
|
|
|
} else {
|
|
|
|
row.addClassName("Selected");
|
|
|
|
cb.attr("checked", true);
|
2018-11-30 12:07:44 +00:00
|
|
|
}
|
2018-12-01 18:01:53 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
row.addClassName("Selected");
|
|
|
|
cb.attr("checked", true);
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2006-12-07 09:27:34 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
Headlines.updateSelectedPrompt();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
archiveSelection: function() {
|
2018-12-02 05:32:13 +00:00
|
|
|
const rows = Headlines.getSelected();
|
2006-12-07 09:27:34 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (rows.length == 0) {
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No articles selected."));
|
2018-12-01 18:01:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2006-12-07 09:27:34 +00:00
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
const fn = Feeds.getName(Feeds.getActive(), Feeds.activeIsCat());
|
2018-12-01 18:01:53 +00:00
|
|
|
let str;
|
|
|
|
let op;
|
2007-01-25 09:12:33 +00:00
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
if (Feeds.getActive() != 0) {
|
2018-12-01 18:01:53 +00:00
|
|
|
str = ngettext("Archive %d selected article in %s?", "Archive %d selected articles in %s?", rows.length);
|
|
|
|
op = "archive";
|
|
|
|
} else {
|
|
|
|
str = ngettext("Move %d archived article back?", "Move %d archived articles back?", rows.length);
|
|
|
|
str += " " + __("Please note that unstarred articles might get purged on next feed update.");
|
2008-02-19 14:49:36 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
op = "unarchive";
|
|
|
|
}
|
2013-03-29 15:31:10 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
str = str.replace("%d", rows.length);
|
|
|
|
str = str.replace("%s", fn);
|
2008-02-19 14:49:36 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
2018-11-30 17:00:27 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
|
|
|
ArticleCache.del(rows[i]);
|
|
|
|
}
|
2008-02-19 14:49:36 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
const query = {op: "rpc", method: op, ids: rows.toString()};
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
Utils.handleRpcJson(transport);
|
2018-12-02 05:57:22 +00:00
|
|
|
Feeds.reloadCurrent();
|
2018-12-01 18:01:53 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
catchupSelection: function() {
|
2018-12-02 05:32:13 +00:00
|
|
|
const rows = Headlines.getSelected();
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (rows.length == 0) {
|
2018-12-02 13:30:32 +00:00
|
|
|
alert(__("No articles selected."));
|
2018-12-01 18:01:53 +00:00
|
|
|
return;
|
2018-11-30 21:11:52 +00:00
|
|
|
}
|
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
const fn = Feeds.getName(Feeds.getActive(), Feeds.activeIsCat());
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
let str = ngettext("Mark %d selected article in %s as read?", "Mark %d selected articles in %s as read?", rows.length);
|
2018-12-01 04:53:51 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
str = str.replace("%d", rows.length);
|
|
|
|
str = str.replace("%s", fn);
|
2018-12-01 04:53:51 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
2018-12-01 04:53:51 +00:00
|
|
|
}
|
|
|
|
|
2018-12-02 05:57:22 +00:00
|
|
|
Headlines.selectionToggleUnread({callback: Feeds.reloadCurrent, no_error: 1});
|
2018-12-01 18:01:53 +00:00
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
catchupBatched: function(callback) {
|
|
|
|
console.log("catchupBatched, size=", this.catchup_id_batch.length);
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (this.catchup_id_batch.length > 0) {
|
2018-12-01 08:42:57 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
// make a copy of the array
|
|
|
|
const batch = this.catchup_id_batch.slice();
|
|
|
|
const query = {
|
|
|
|
op: "rpc", method: "catchupSelected",
|
|
|
|
cmode: 0, ids: batch.toString()
|
|
|
|
};
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
const reply = Utils.handleRpcJson(transport);
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (reply) {
|
|
|
|
const batch = reply.ids;
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
batch.each(function (id) {
|
|
|
|
const elem = $("RROW-" + id);
|
|
|
|
if (elem) elem.removeClassName("Unread");
|
|
|
|
Headlines.catchup_id_batch.remove(id);
|
|
|
|
});
|
|
|
|
}
|
2018-11-30 22:21:33 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
Headlines.updateFloatingTitle(true);
|
2013-02-28 09:18:58 +00:00
|
|
|
|
2018-12-01 18:01:53 +00:00
|
|
|
if (callback) callback();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
if (callback) callback();
|
|
|
|
}
|
2018-12-01 18:51:00 +00:00
|
|
|
},
|
2018-12-02 05:32:13 +00:00
|
|
|
catchupRelativeTo: function(below, id) {
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
if (!id) id = Article.getActive();
|
2009-02-02 08:49:00 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
if (!id) {
|
|
|
|
alert(__("No article is selected."));
|
|
|
|
return;
|
|
|
|
}
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
const visible_ids = this.getLoaded();
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
const ids_to_mark = [];
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
if (!below) {
|
|
|
|
for (let i = 0; i < visible_ids.length; i++) {
|
|
|
|
if (visible_ids[i] != id) {
|
|
|
|
const e = $("RROW-" + visible_ids[i]);
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
if (e && e.hasClassName("Unread")) {
|
|
|
|
ids_to_mark.push(visible_ids[i]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
break;
|
2007-08-22 04:45:01 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-01 18:51:00 +00:00
|
|
|
} else {
|
|
|
|
for (let i = visible_ids.length - 1; i >= 0; i--) {
|
|
|
|
if (visible_ids[i] != id) {
|
|
|
|
const e = $("RROW-" + visible_ids[i]);
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
if (e && e.hasClassName("Unread")) {
|
|
|
|
ids_to_mark.push(visible_ids[i]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
break;
|
2007-08-22 04:45:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
if (ids_to_mark.length == 0) {
|
|
|
|
alert(__("No articles found to mark"));
|
|
|
|
} else {
|
|
|
|
const msg = ngettext("Mark %d article as read?", "Mark %d articles as read?", ids_to_mark.length).replace("%d", ids_to_mark.length);
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
for (var i = 0; i < ids_to_mark.length; i++) {
|
|
|
|
var e = $("RROW-" + ids_to_mark[i]);
|
|
|
|
e.removeClassName("Unread");
|
|
|
|
}
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
const query = {
|
|
|
|
op: "rpc", method: "catchupSelected",
|
|
|
|
cmode: 0, ids: ids_to_mark.toString()
|
|
|
|
};
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
Utils.handleRpcJson(transport);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onLabelsUpdated: function(transport) {
|
|
|
|
const data = JSON.parse(transport.responseText);
|
|
|
|
|
|
|
|
if (data) {
|
|
|
|
data['info-for-headlines'].each(function (elem) {
|
|
|
|
$$(".HLLCTR-" + elem.id).each(function (ctr) {
|
|
|
|
ctr.innerHTML = elem.labels;
|
|
|
|
});
|
2017-03-04 11:34:44 +00:00
|
|
|
});
|
2007-08-22 04:45:01 +00:00
|
|
|
}
|
2018-12-01 18:51:00 +00:00
|
|
|
},
|
|
|
|
onActionChanged: function(elem) {
|
|
|
|
eval(elem.value);
|
|
|
|
elem.attr('value', 'false');
|
|
|
|
},
|
|
|
|
correctHeadlinesOffset: function(id) {
|
|
|
|
const container = $("headlines-frame");
|
|
|
|
const row = $("RROW-" + id);
|
2007-10-18 02:55:44 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
if (!container || !row) return;
|
2008-09-05 07:36:57 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
const viewport = container.offsetHeight;
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
const rel_offset_top = row.offsetTop - container.scrollTop;
|
|
|
|
const rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
|
2009-01-18 15:07:31 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
//console.log("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
|
|
|
|
//console.log("Vport: " + viewport);
|
2009-01-18 15:07:31 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
if (rel_offset_top <= 0 || rel_offset_top > viewport) {
|
|
|
|
container.scrollTop = row.offsetTop;
|
|
|
|
} else if (rel_offset_bottom > viewport) {
|
|
|
|
container.scrollTop = row.offsetTop + row.offsetHeight - viewport;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
initFloatingMenu: function() {
|
|
|
|
if (!dijit.byId("floatingMenu")) {
|
2009-01-20 17:46:21 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
const menu = new dijit.Menu({
|
|
|
|
id: "floatingMenu",
|
|
|
|
targetNodeIds: ["floatingTitle"]
|
|
|
|
});
|
2010-11-13 11:04:37 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
this.headlinesMenuCommon(menu);
|
2010-11-13 11:04:37 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.startup();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
headlinesMenuCommon: function(menu) {
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Open original article"),
|
|
|
|
onClick: function (event) {
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.openInNewWindow(this.getParent().currentTarget.getAttribute("data-article-id"));
|
2018-12-01 18:51:00 +00:00
|
|
|
}
|
|
|
|
}));
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Display article URL"),
|
|
|
|
onClick: function (event) {
|
2018-12-02 05:32:13 +00:00
|
|
|
Article.displayUrl(this.getParent().currentTarget.getAttribute("data-article-id"));
|
2010-11-13 11:04:37 +00:00
|
|
|
}
|
2018-12-01 18:51:00 +00:00
|
|
|
}));
|
2010-11-13 11:04:37 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuSeparator());
|
2010-11-13 11:04:37 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Toggle unread"),
|
|
|
|
onClick: function () {
|
2012-09-04 08:10:42 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
let ids = Headlines.getSelected();
|
2018-12-01 18:51:00 +00:00
|
|
|
// cast to string
|
|
|
|
const id = (this.getParent().currentTarget.getAttribute("data-article-id")) + "";
|
|
|
|
ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
Headlines.selectionToggleUnread({ids: ids, no_error: 1});
|
|
|
|
}
|
|
|
|
}));
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Toggle starred"),
|
|
|
|
onClick: function () {
|
2018-12-02 05:32:13 +00:00
|
|
|
let ids = Headlines.getSelected();
|
2018-12-01 18:51:00 +00:00
|
|
|
// cast to string
|
|
|
|
const id = (this.getParent().currentTarget.getAttribute("data-article-id")) + "";
|
|
|
|
ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
2010-11-13 11:04:37 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
Headlines.selectionToggleMarked(ids);
|
|
|
|
}
|
|
|
|
}));
|
2010-11-13 11:04:37 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Toggle published"),
|
|
|
|
onClick: function () {
|
2018-12-02 05:32:13 +00:00
|
|
|
let ids = Headlines.getSelected();
|
2018-12-01 18:51:00 +00:00
|
|
|
// cast to string
|
|
|
|
const id = (this.getParent().currentTarget.getAttribute("data-article-id")) + "";
|
|
|
|
ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
2010-11-13 11:04:37 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
Headlines.selectionTogglePublished(ids);
|
|
|
|
}
|
|
|
|
}));
|
2010-11-16 11:43:43 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuSeparator());
|
2010-11-19 18:05:28 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark above as read"),
|
|
|
|
onClick: function () {
|
2018-12-02 05:32:13 +00:00
|
|
|
Headlines.catchupRelativeTo(0, this.getParent().currentTarget.getAttribute("data-article-id"));
|
2018-12-01 18:51:00 +00:00
|
|
|
}
|
|
|
|
}));
|
2010-11-19 18:05:28 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark below as read"),
|
|
|
|
onClick: function () {
|
2018-12-02 05:32:13 +00:00
|
|
|
Headlines.catchupRelativeTo(1, this.getParent().currentTarget.getAttribute("data-article-id"));
|
2018-12-01 18:51:00 +00:00
|
|
|
}
|
|
|
|
}));
|
2016-03-22 10:38:20 +00:00
|
|
|
|
2010-11-19 18:05:28 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
const labels = getInitParam("labels");
|
2013-03-21 19:29:06 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
if (labels && labels.length) {
|
2011-12-10 14:36:38 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuSeparator());
|
2017-02-17 06:01:45 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
const labelAddMenu = new dijit.Menu({ownerMenu: menu});
|
|
|
|
const labelDelMenu = new dijit.Menu({ownerMenu: menu});
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
labels.each(function (label) {
|
|
|
|
const bare_id = label.id;
|
|
|
|
const name = label.caption;
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
labelAddMenu.addChild(new dijit.MenuItem({
|
|
|
|
label: name,
|
|
|
|
labelId: bare_id,
|
|
|
|
onClick: function () {
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2018-12-02 05:32:13 +00:00
|
|
|
let ids = Headlines.getSelected();
|
2018-12-01 18:51:00 +00:00
|
|
|
// cast to string
|
|
|
|
const id = (this.getParent().ownerMenu.currentTarget.getAttribute("data-article-id")) + "";
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
Headlines.selectionAssignLabel(this.labelId, ids);
|
|
|
|
}
|
|
|
|
}));
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
labelDelMenu.addChild(new dijit.MenuItem({
|
|
|
|
label: name,
|
|
|
|
labelId: bare_id,
|
|
|
|
onClick: function () {
|
2018-12-02 05:32:13 +00:00
|
|
|
let ids = Headlines.getSelected();
|
2018-12-01 18:51:00 +00:00
|
|
|
// cast to string
|
|
|
|
const id = (this.getParent().ownerMenu.currentTarget.getAttribute("data-article-id")) + "";
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
2011-12-10 14:36:38 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
Headlines.selectionRemoveLabel(this.labelId, ids);
|
|
|
|
}
|
|
|
|
}));
|
2011-12-10 14:36:38 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
});
|
2011-03-07 12:24:49 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.PopupMenuItem({
|
|
|
|
label: __("Assign label"),
|
|
|
|
popup: labelAddMenu
|
|
|
|
}));
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.PopupMenuItem({
|
|
|
|
label: __("Remove label"),
|
|
|
|
popup: labelDelMenu
|
|
|
|
}));
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
initHeadlinesMenu: function() {
|
|
|
|
if (!dijit.byId("headlinesMenu")) {
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
const menu = new dijit.Menu({
|
|
|
|
id: "headlinesMenu",
|
|
|
|
targetNodeIds: ["headlines-frame"],
|
|
|
|
selector: ".hlMenuAttach"
|
|
|
|
});
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
this.headlinesMenuCommon(menu);
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.startup();
|
|
|
|
}
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
/* vgroup feed title menu */
|
2012-08-23 19:59:46 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
if (!dijit.byId("headlinesFeedTitleMenu")) {
|
2012-08-23 19:59:46 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
const menu = new dijit.Menu({
|
|
|
|
id: "headlinesFeedTitleMenu",
|
|
|
|
targetNodeIds: ["headlines-frame"],
|
|
|
|
selector: "div.cdmFeedTitle"
|
|
|
|
});
|
2011-03-07 12:24:49 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Select articles in group"),
|
|
|
|
onClick: function (event) {
|
2018-12-02 05:34:08 +00:00
|
|
|
Headlines.select("all",
|
2018-12-01 18:51:00 +00:00
|
|
|
"#headlines-frame > div[id*=RROW]" +
|
|
|
|
"[data-orig-feed-id='" + this.getParent().currentTarget.getAttribute("data-feed-id") + "']");
|
2012-08-23 19:59:46 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
|
|
|
}));
|
2012-08-23 19:59:46 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark group as read"),
|
2018-11-29 18:03:55 +00:00
|
|
|
onClick: function () {
|
2018-12-02 05:34:08 +00:00
|
|
|
Headlines.select("none");
|
|
|
|
Headlines.select("all",
|
2018-12-01 18:51:00 +00:00
|
|
|
"#headlines-frame > div[id*=RROW]" +
|
|
|
|
"[data-orig-feed-id='" + this.getParent().currentTarget.getAttribute("data-feed-id") + "']");
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
Headlines.catchupSelection();
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2011-03-07 12:24:49 +00:00
|
|
|
}));
|
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark feed as read"),
|
|
|
|
onClick: function () {
|
|
|
|
Feeds.catchupFeedInGroup(this.getParent().currentTarget.getAttribute("data-feed-id"));
|
|
|
|
}
|
|
|
|
}));
|
2017-02-13 20:36:58 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Edit feed"),
|
|
|
|
onClick: function () {
|
2018-12-01 19:39:29 +00:00
|
|
|
CommonDialogs.editFeed(this.getParent().currentTarget.getAttribute("data-feed-id"));
|
2018-12-01 18:51:00 +00:00
|
|
|
}
|
|
|
|
}));
|
2013-10-17 09:38:48 +00:00
|
|
|
|
2018-12-01 18:51:00 +00:00
|
|
|
menu.startup();
|
|
|
|
}
|
2010-11-19 18:05:28 +00:00
|
|
|
}
|
2018-12-01 18:51:00 +00:00
|
|
|
};
|