]> git.wh0rd.org - tt-rss.git/blob - js/viewfeed.js
3ffa134e7edeff6b51c852d2c28faba5093c2b18
[tt-rss.git] / js / viewfeed.js
1 var active_post_id = false;
2
3 var article_cache = new Array();
4
5 var vgroup_last_feed = false;
6 var post_under_pointer = false;
7
8 var last_requested_article = false;
9
10 var catchup_id_batch = [];
11 var catchup_timeout_id = false;
12 var feed_precache_timeout_id = false;
13 var precache_idle_timeout_id = false;
14
15 var cids_requested = [];
16 var loaded_article_ids = [];
17
18 var has_storage = 'sessionStorage' in window && window['sessionStorage'] !== null;
19
20 function headlines_callback2(transport, offset, background, infscroll_req) {
21 try {
22 handle_rpc_json(transport);
23
24 loading_set_progress(25);
25
26 console.log("headlines_callback2 [offset=" + offset + "] B:" + background + " I:" + infscroll_req);
27
28 var is_cat = false;
29 var feed_id = false;
30
31 var reply = false;
32
33 try {
34 reply = JSON.parse(transport.responseText);
35 } catch (e) {
36 console.error(e);
37 }
38
39 if (reply) {
40
41 is_cat = reply['headlines']['is_cat'];
42 feed_id = reply['headlines']['id'];
43
44 if (background) {
45 var content = reply['headlines']['content'];
46
47 if (getInitParam("cdm_auto_catchup") == 1) {
48 content = content + "<div id='headlines-spacer'></div>";
49 }
50
51 cache_headlines(feed_id, is_cat, reply['headlines']['toolbar'], content);
52 return;
53 }
54
55 setActiveFeedId(feed_id, is_cat);
56
57 dijit.getEnclosingWidget(
58 document.forms["main_toolbar_form"].update).attr('disabled',
59 is_cat || feed_id <= 0);
60
61 try {
62 if (offset == 0 && infscroll_req == false) {
63 $("headlines-frame").scrollTop = 0;
64 }
65 } catch (e) { };
66
67 var headlines_count = reply['headlines-info']['count'];
68
69 vgroup_last_feed = reply['headlines-info']['vgroup_last_feed'];
70
71 if (parseInt(headlines_count) < getInitParam("default_article_limit")) {
72 _infscroll_disable = 1;
73 } else {
74 _infscroll_disable = 0;
75 }
76
77 var counters = reply['counters'];
78 var articles = reply['articles'];
79 //var runtime_info = reply['runtime-info'];
80
81 if (offset == 0 && infscroll_req == false) {
82 loaded_article_ids = [];
83
84 dijit.byId("headlines-frame").attr('content',
85 reply['headlines']['content']);
86
87 dijit.byId("headlines-toolbar").attr('content',
88 reply['headlines']['toolbar']);
89
90 $$("#headlines-frame > div[id*=RROW]").each(function(row) {
91 if (loaded_article_ids.indexOf(row.id) != -1) {
92 row.parentNode.removeChild(row);
93 } else {
94 loaded_article_ids.push(row.id);
95 }
96 });
97
98 if (getInitParam("cdm_auto_catchup") == 1) {
99 var hsp = $("headlines-spacer");
100 if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"});
101 dijit.byId('headlines-frame').domNode.appendChild(hsp);
102 }
103
104 initHeadlinesMenu();
105
106 if (_search_query) {
107 $("feed_title").innerHTML += "<span id='cancel_search'>" +
108 " (<a href='#' onclick='cancelSearch()'>" + __("Cancel search") + "</a>)" +
109 "</span>";
110 }
111
112 } else {
113
114 if (headlines_count > 0 && feed_id == getActiveFeedId() && is_cat == activeFeedIsCat()) {
115 console.log("adding some more headlines: " + headlines_count);
116
117 var c = dijit.byId("headlines-frame");
118 var ids = getSelectedArticleIds2();
119 var new_elems = [];
120
121 $("headlines-tmp").innerHTML = reply['headlines']['content'];
122
123 var hsp = $("headlines-spacer");
124
125 if (hsp)
126 c.domNode.removeChild(hsp);
127
128 $$("#headlines-tmp > div").each(function(row) {
129 if (row.className == 'cdmFeedTitle') {
130 row.style.display = 'none';
131 c.domNode.appendChild(row);
132 new_elems.push(row);
133 } else if (loaded_article_ids.indexOf(row.id) == -1) {
134 row.style.display = 'none';
135 c.domNode.appendChild(row);
136 new_elems.push(row);
137 loaded_article_ids.push(row.id);
138 } else {
139 row.parentNode.removeChild(row);
140 }
141 });
142
143 if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"});
144
145 fixHeadlinesOrder(getLoadedArticleIds());
146
147 if (getInitParam("cdm_auto_catchup") == 1) {
148 c.domNode.appendChild(hsp);
149 }
150
151 console.log("added " + new_elems.size() + " headlines");
152
153 if (new_elems.size() == 0)
154 _infscroll_disable = true;
155
156 console.log("restore selected ids: " + ids);
157
158 for (var i = 0; i < ids.length; i++) {
159 markHeadline(ids[i]);
160 }
161
162 initHeadlinesMenu();
163
164 new_elems.each(function(child) {
165 var cb = dijit.byId(child.id.replace("RROW-", "RCHK-"));
166
167 if (!cb) {
168 dojo.parser.parse(child);
169
170 if (!Element.visible(child))
171 new Effect.Appear(child, { duration : 0.5 });
172 } else {
173 c.domNode.removeChild(child);
174 }
175 });
176
177 } else {
178 console.log("no new headlines received");
179
180 var hsp = $("headlines-spacer");
181
182 if (hsp) hsp.innerHTML = "";
183 }
184 }
185
186 if (headlines_count > 0)
187 cache_headlines(feed_id, is_cat, reply['headlines']['toolbar'], $("headlines-frame").innerHTML);
188
189 if (articles) {
190 for (var i = 0; i < articles.length; i++) {
191 var a_id = articles[i]['id'];
192 cache_set("article:" + a_id, articles[i]['content']);
193 }
194 } else {
195 console.log("no cached articles received");
196 }
197
198 // do not precache stuff after fresh feed
199 if (feed_id != -3)
200 precache_headlines();
201
202 if (counters)
203 parse_counters(counters);
204 else
205 request_counters(true);
206
207 } else if (transport.responseText) {
208 console.error("Invalid object received: " + transport.responseText);
209 dijit.byId("headlines-frame").attr('content', "<div class='whiteBox'>" +
210 __('Could not update headlines (invalid object received - see error console for details)') +
211 "</div>");
212 } else {
213 //notify_error("Error communicating with server.");
214 Element.show("net-alert");
215 }
216
217 _infscroll_request_sent = 0;
218
219 notify("");
220
221 } catch (e) {
222 exception_error("headlines_callback2", e, transport);
223 }
224 }
225
226 function render_article(article) {
227 try {
228 dijit.byId("headlines-wrap-inner").addChild(
229 dijit.byId("content-insert"));
230
231 var c = dijit.byId("content-insert");
232
233 try {
234 c.domNode.scrollTop = 0;
235 } catch (e) { };
236
237 c.attr('content', article);
238
239 correctHeadlinesOffset(getActiveArticleId());
240
241 try {
242 c.focus();
243 } catch (e) { };
244
245 } catch (e) {
246 exception_error("render_article", e);
247 }
248 }
249
250 function showArticleInHeadlines(id) {
251
252 try {
253
254 selectArticles("none");
255
256 var crow = $("RROW-" + id);
257
258 if (!crow) return;
259
260 var article_is_unread = crow.hasClassName("Unread");
261
262 crow.removeClassName("Unread");
263
264 selectArticles('none');
265
266 var view_mode = false;
267
268 try {
269 view_mode = document.forms['main_toolbar_form'].view_mode;
270 view_mode = view_mode[view_mode.selectedIndex].value;
271 } catch (e) {
272 //
273 }
274
275 if (article_is_unread && view_mode == "all_articles") {
276 cache_headlines(getActiveFeedId(), activeFeedIsCat(), null, $("headlines-frame").innerHTML);
277 }
278
279 markHeadline(id);
280
281 if (article_is_unread)
282 _force_scheduled_update = true;
283
284 } catch (e) {
285 exception_error("showArticleInHeadlines", e);
286 }
287 }
288
289 function article_callback2(transport, id) {
290 try {
291 console.log("article_callback2 " + id);
292
293 handle_rpc_json(transport);
294
295 var reply = false;
296
297 try {
298 reply = JSON.parse(transport.responseText);
299 } catch (e) {
300 console.error(e);
301 }
302
303 if (reply) {
304
305 reply.each(function(article) {
306 if (active_post_id == article['id']) {
307 render_article(article['content']);
308 }
309 cids_requested.remove(article['id']);
310
311 cache_set("article:" + article['id'], article['content']);
312 });
313
314 // if (id != last_requested_article) {
315 // console.log("requested article id is out of sequence, aborting");
316 // return;
317 // }
318
319 } else if (transport.responseText) {
320 console.error("Invalid object received: " + transport.responseText);
321
322 render_article("<div class='whiteBox'>" +
323 __('Could not display article (invalid object received - see error console for details)') + "</div>");
324 } else {
325 Element.show("net-alert");
326 }
327
328 request_counters();
329
330 headlines_scroll_handler($("headlines-frame"));
331
332 /* try {
333 if (!_infscroll_disable &&
334 $$("#headlines-frame > div[id*=RROW]").last().hasClassName("Selected")) {
335
336 loadMoreHeadlines();
337 }
338 } catch (e) {
339 console.warn(e);
340 } */
341
342 notify("");
343 } catch (e) {
344 exception_error("article_callback2", e, transport);
345 }
346 }
347
348 function view(id) {
349 try {
350 console.log("loading article: " + id);
351
352 var cached_article = cache_get("article:" + id);
353
354 console.log("cache check result: " + (cached_article != false));
355
356 hideAuxDlg();
357
358 var query = "?op=article&method=view&id=" + param_escape(id);
359
360 var neighbor_ids = getRelativePostIds(id);
361
362 /* only request uncached articles */
363
364 var cids_to_request = [];
365
366 for (var i = 0; i < neighbor_ids.length; i++) {
367 if (cids_requested.indexOf(neighbor_ids[i]) == -1)
368 if (!cache_get("article:" + neighbor_ids[i])) {
369 cids_to_request.push(neighbor_ids[i]);
370 cids_requested.push(neighbor_ids[i]);
371 }
372 }
373
374 console.log("additional ids: " + cids_to_request.toString());
375
376 query = query + "&cids=" + cids_to_request.toString();
377
378 var crow = $("RROW-" + id);
379 var article_is_unread = crow.hasClassName("Unread");
380
381 active_post_id = id;
382 showArticleInHeadlines(id);
383
384 precache_headlines();
385
386 if (cached_article && article_is_unread) {
387
388 query = query + "&mode=prefetch";
389
390 render_article(cached_article);
391
392 } else if (cached_article) {
393
394 query = query + "&mode=prefetch_old";
395 render_article(cached_article);
396
397 // if we don't need to request any relative ids, we might as well skip
398 // the server roundtrip altogether
399 if (cids_to_request.length == 0) {
400
401 /* try {
402 if (!_infscroll_disable &&
403 $$("#headlines-frame > div[id*=RROW]").last().hasClassName("Selected")) {
404
405 loadMoreHeadlines();
406 }
407 } catch (e) {
408 console.warn(e);
409 } */
410
411 headlines_scroll_handler($("headlines-frame"));
412
413 return;
414 }
415 }
416
417 last_requested_article = id;
418
419 console.log(query);
420
421 if (article_is_unread) {
422 decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
423 }
424
425 new Ajax.Request("backend.php", {
426 parameters: query,
427 onComplete: function(transport) {
428 article_callback2(transport, id);
429 } });
430
431 return false;
432
433 } catch (e) {
434 exception_error("view", e);
435 }
436 }
437
438 function toggleMark(id, client_only) {
439 try {
440 var query = "?op=rpc&id=" + id + "&method=mark";
441
442 var img = $("FMPIC-" + id);
443
444 if (!img) return;
445
446 if (img.src.match("mark_unset")) {
447 img.src = img.src.replace("mark_unset", "mark_set");
448 img.alt = __("Unstar article");
449 query = query + "&mark=1";
450
451 } else {
452 img.src = img.src.replace("mark_set", "mark_unset");
453 img.alt = __("Star article");
454 query = query + "&mark=0";
455 }
456
457 cache_headlines(getActiveFeedId(), activeFeedIsCat(), null, $("headlines-frame").innerHTML);
458
459 if (!client_only) {
460 new Ajax.Request("backend.php", {
461 parameters: query,
462 onComplete: function(transport) {
463 handle_rpc_json(transport);
464 } });
465 }
466
467 } catch (e) {
468 exception_error("toggleMark", e);
469 }
470 }
471
472 function togglePub(id, client_only, no_effects, note) {
473 try {
474 var query = "?op=rpc&id=" + id + "&method=publ";
475
476 if (note != undefined) {
477 query = query + "&note=" + param_escape(note);
478 } else {
479 query = query + "&note=undefined";
480 }
481
482 var img = $("FPPIC-" + id);
483
484 if (!img) return;
485
486 if (img.src.match("pub_unset") || note != undefined) {
487 img.src = img.src.replace("pub_unset", "pub_set");
488 img.alt = __("Unpublish article");
489 query = query + "&pub=1";
490
491 } else {
492 img.src = img.src.replace("pub_set", "pub_unset");
493 img.alt = __("Publish article");
494
495 query = query + "&pub=0";
496 }
497
498 cache_headlines(getActiveFeedId(), activeFeedIsCat(), null, $("headlines-frame").innerHTML);
499
500 if (!client_only) {
501 new Ajax.Request("backend.php", {
502 parameters: query,
503 onComplete: function(transport) {
504 handle_rpc_json(transport);
505 } });
506 }
507
508 } catch (e) {
509 exception_error("togglePub", e);
510 }
511 }
512
513 function moveToPost(mode) {
514
515 try {
516
517 var rows = getVisibleArticleIds();
518
519 var prev_id = false;
520 var next_id = false;
521
522 if (!$('RROW-' + active_post_id)) {
523 active_post_id = false;
524 }
525
526 if (active_post_id == false) {
527 next_id = rows[0];
528 prev_id = rows[rows.length-1]
529 } else {
530 for (var i = 0; i < rows.length; i++) {
531 if (rows[i] == active_post_id) {
532
533 // Account for adjacent identical article ids.
534 if (i > 0) prev_id = rows[i-1];
535
536 for (var j = i+1; j < rows.length; j++) {
537 if (rows[j] != active_post_id) {
538 next_id = rows[j];
539 break;
540 }
541 }
542 break;
543 }
544 }
545 }
546
547 if (mode == "next") {
548 if (next_id) {
549 if (isCdmMode()) {
550
551 cdmExpandArticle(next_id);
552 cdmScrollToArticleId(next_id);
553
554 } else {
555 correctHeadlinesOffset(next_id);
556 view(next_id, getActiveFeedId());
557 }
558 }
559 }
560
561 if (mode == "prev") {
562 if (prev_id) {
563 if (isCdmMode()) {
564 cdmExpandArticle(prev_id);
565 cdmScrollToArticleId(prev_id);
566 } else {
567 correctHeadlinesOffset(prev_id);
568 view(prev_id, getActiveFeedId());
569 }
570 }
571 }
572
573 } catch (e) {
574 exception_error("moveToPost", e);
575 }
576 }
577
578 function toggleSelected(id, force_on) {
579 try {
580
581 var cb = dijit.byId("RCHK-" + id);
582 var row = $("RROW-" + id);
583
584 if (row) {
585 if (row.hasClassName('Selected') && !force_on) {
586 row.removeClassName('Selected');
587 if (cb) cb.attr("checked", false);
588 } else {
589 row.addClassName('Selected');
590 if (cb) cb.attr("checked", true);
591 }
592 }
593 } catch (e) {
594 exception_error("toggleSelected", e);
595 }
596 }
597
598 function toggleUnread_afh(effect) {
599 try {
600
601 var elem = effect.element;
602 elem.style.backgroundColor = "";
603
604 } catch (e) {
605 exception_error("toggleUnread_afh", e);
606 }
607 }
608
609 function toggleUnread(id, cmode, effect) {
610 try {
611
612 var row = $("RROW-" + id);
613 if (row) {
614 if (cmode == undefined || cmode == 2) {
615 if (row.hasClassName("Unread")) {
616 row.removeClassName("Unread");
617
618 if (effect) {
619 new Effect.Highlight(row, {duration: 1, startcolor: "#fff7d5",
620 afterFinish: toggleUnread_afh,
621 queue: { position:'end', scope: 'TMRQ-' + id, limit: 1 } } );
622 }
623
624 } else {
625 row.addClassName("Unread");
626 }
627
628 } else if (cmode == 0) {
629
630 row.removeClassName("Unread");
631
632 if (effect) {
633 new Effect.Highlight(row, {duration: 1, startcolor: "#fff7d5",
634 afterFinish: toggleUnread_afh,
635 queue: { position:'end', scope: 'TMRQ-' + id, limit: 1 } } );
636 }
637
638 } else if (cmode == 1) {
639 row.addClassName("Unread");
640 }
641
642 if (cmode == undefined) cmode = 2;
643
644 var query = "?op=rpc&method=catchupSelected" +
645 "&cmode=" + param_escape(cmode) + "&ids=" + param_escape(id);
646
647 // notify_progress("Loading, please wait...");
648
649 new Ajax.Request("backend.php", {
650 parameters: query,
651 onComplete: function(transport) {
652 handle_rpc_json(transport);
653 } });
654
655 }
656
657 } catch (e) {
658 exception_error("toggleUnread", e);
659 }
660 }
661
662 function selectionRemoveLabel(id, ids) {
663 try {
664
665 if (!ids) ids = getSelectedArticleIds2();
666
667 if (ids.length == 0) {
668 alert(__("No articles are selected."));
669 return;
670 }
671
672 var query = "?op=rpc&method=removeFromLabel&ids=" +
673 param_escape(ids.toString()) + "&lid=" + param_escape(id);
674
675 console.log(query);
676
677 new Ajax.Request("backend.php", {
678 parameters: query,
679 onComplete: function(transport) {
680 handle_rpc_json(transport);
681 show_labels_in_headlines(transport);
682 } });
683
684 } catch (e) {
685 exception_error("selectionAssignLabel", e);
686
687 }
688 }
689
690 function selectionAssignLabel(id, ids) {
691 try {
692
693 if (!ids) ids = getSelectedArticleIds2();
694
695 if (ids.length == 0) {
696 alert(__("No articles are selected."));
697 return;
698 }
699
700 var query = "?op=rpc&method=assignToLabel&ids=" +
701 param_escape(ids.toString()) + "&lid=" + param_escape(id);
702
703 console.log(query);
704
705 new Ajax.Request("backend.php", {
706 parameters: query,
707 onComplete: function(transport) {
708 handle_rpc_json(transport);
709 show_labels_in_headlines(transport);
710 } });
711
712 } catch (e) {
713 exception_error("selectionAssignLabel", e);
714
715 }
716 }
717
718 function selectionToggleUnread(set_state, callback, no_error) {
719 try {
720 var rows = getSelectedArticleIds2();
721
722 if (rows.length == 0 && !no_error) {
723 alert(__("No articles are selected."));
724 return;
725 }
726
727 for (var i = 0; i < rows.length; i++) {
728 var row = $("RROW-" + rows[i]);
729 if (row) {
730 if (set_state == undefined) {
731 if (row.hasClassName("Unread")) {
732 row.removeClassName("Unread");
733 } else {
734 row.addClassName("Unread");
735 }
736 }
737
738 if (set_state == false) {
739 row.removeClassName("Unread");
740 }
741
742 if (set_state == true) {
743 row.addClassName("Unread");
744 }
745 }
746 }
747
748 if (rows.length > 0) {
749
750 var cmode = "";
751
752 if (set_state == undefined) {
753 cmode = "2";
754 } else if (set_state == true) {
755 cmode = "1";
756 } else if (set_state == false) {
757 cmode = "0";
758 }
759
760 var query = "?op=rpc&method=catchupSelected" +
761 "&cmode=" + cmode + "&ids=" + param_escape(rows.toString());
762
763 notify_progress("Loading, please wait...");
764
765 new Ajax.Request("backend.php", {
766 parameters: query,
767 onComplete: function(transport) {
768 handle_rpc_json(transport);
769 if (callback) callback(transport);
770 } });
771
772 }
773
774 } catch (e) {
775 exception_error("selectionToggleUnread", e);
776 }
777 }
778
779 function selectionToggleMarked() {
780 try {
781
782 var rows = getSelectedArticleIds2();
783
784 if (rows.length == 0) {
785 alert(__("No articles are selected."));
786 return;
787 }
788
789 for (var i = 0; i < rows.length; i++) {
790 toggleMark(rows[i], true, true);
791 }
792
793 if (rows.length > 0) {
794
795 var query = "?op=rpc&method=markSelected&ids=" +
796 param_escape(rows.toString()) + "&cmode=2";
797
798 new Ajax.Request("backend.php", {
799 parameters: query,
800 onComplete: function(transport) {
801 handle_rpc_json(transport);
802 } });
803
804 }
805
806 } catch (e) {
807 exception_error("selectionToggleMarked", e);
808 }
809 }
810
811 function selectionTogglePublished() {
812 try {
813
814 var rows = getSelectedArticleIds2();
815
816 if (rows.length == 0) {
817 alert(__("No articles are selected."));
818 return;
819 }
820
821 for (var i = 0; i < rows.length; i++) {
822 togglePub(rows[i], true, true);
823 }
824
825 if (rows.length > 0) {
826
827 var query = "?op=rpc&method=publishSelected&ids=" +
828 param_escape(rows.toString()) + "&cmode=2";
829
830 new Ajax.Request("backend.php", {
831 parameters: query,
832 onComplete: function(transport) {
833 handle_rpc_json(transport);
834 } });
835
836 }
837
838 } catch (e) {
839 exception_error("selectionToggleMarked", e);
840 }
841 }
842
843 function getSelectedArticleIds2() {
844
845 var rv = [];
846
847 $$("#headlines-frame > div[id*=RROW][class*=Selected]").each(
848 function(child) {
849 rv.push(child.id.replace("RROW-", ""));
850 });
851
852 return rv;
853 }
854
855 function getLoadedArticleIds() {
856 var rv = [];
857
858 var children = $$("#headlines-frame > div[id*=RROW-]");
859
860 children.each(function(child) {
861 rv.push(child.id.replace("RROW-", ""));
862 });
863
864 return rv;
865
866 }
867
868 // mode = all,none,unread,invert,marked,published
869 function selectArticles(mode) {
870 try {
871
872 var children = $$("#headlines-frame > div[id*=RROW]");
873
874 children.each(function(child) {
875 var id = child.id.replace("RROW-", "");
876 var cb = dijit.byId("RCHK-" + id);
877
878 if (mode == "all") {
879 child.addClassName("Selected");
880 if (cb) cb.attr("checked", true);
881 } else if (mode == "unread") {
882 if (child.hasClassName("Unread")) {
883 child.addClassName("Selected");
884 if (cb) cb.attr("checked", true);
885 } else {
886 child.removeClassName("Selected");
887 if (cb) cb.attr("checked", false);
888 }
889 } else if (mode == "marked") {
890 var img = $("FMPIC-" + child.id.replace("RROW-", ""));
891
892 if (img && img.src.match("mark_set")) {
893 child.addClassName("Selected");
894 if (cb) cb.attr("checked", true);
895 } else {
896 child.removeClassName("Selected");
897 if (cb) cb.attr("checked", false);
898 }
899 } else if (mode == "published") {
900 var img = $("FPPIC-" + child.id.replace("RROW-", ""));
901
902 if (img && img.src.match("pub_set")) {
903 child.addClassName("Selected");
904 if (cb) cb.attr("checked", true);
905 } else {
906 child.removeClassName("Selected");
907 if (cb) cb.attr("checked", false);
908 }
909
910 } else if (mode == "invert") {
911 if (child.hasClassName("Selected")) {
912 child.removeClassName("Selected");
913 if (cb) cb.attr("checked", false);
914 } else {
915 child.addClassName("Selected");
916 if (cb) cb.attr("checked", true);
917 }
918
919 } else {
920 child.removeClassName("Selected");
921 if (cb) cb.attr("checked", false);
922 }
923 });
924
925 } catch (e) {
926 exception_error("selectArticles", e);
927 }
928 }
929
930 function catchupPage() {
931
932 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
933
934 var str = __("Mark all visible articles in %s as read?");
935
936 str = str.replace("%s", fn);
937
938 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
939 return;
940 }
941
942 selectArticles('all');
943 selectionToggleUnread(false, 'viewCurrentFeed()', true);
944 selectArticles('none');
945 }
946
947 function deleteSelection() {
948
949 try {
950
951 var rows = getSelectedArticleIds2();
952
953 if (rows.length == 0) {
954 alert(__("No articles are selected."));
955 return;
956 }
957
958 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
959 var str;
960
961 if (getActiveFeedId() != 0) {
962 str = __("Delete %d selected articles in %s?");
963 } else {
964 str = __("Delete %d selected articles?");
965 }
966
967 str = str.replace("%d", rows.length);
968 str = str.replace("%s", fn);
969
970 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
971 return;
972 }
973
974 query = "?op=rpc&method=delete&ids=" + param_escape(rows);
975
976 console.log(query);
977
978 new Ajax.Request("backend.php", {
979 parameters: query,
980 onComplete: function(transport) {
981 handle_rpc_json(transport);
982 viewCurrentFeed();
983 } });
984
985 } catch (e) {
986 exception_error("deleteSelection", e);
987 }
988 }
989
990 function archiveSelection() {
991
992 try {
993
994 var rows = getSelectedArticleIds2();
995
996 if (rows.length == 0) {
997 alert(__("No articles are selected."));
998 return;
999 }
1000
1001 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
1002 var str;
1003 var op;
1004
1005 if (getActiveFeedId() != 0) {
1006 str = __("Archive %d selected articles in %s?");
1007 op = "archive";
1008 } else {
1009 str = __("Move %d archived articles back?");
1010 op = "unarchive";
1011 }
1012
1013 str = str.replace("%d", rows.length);
1014 str = str.replace("%s", fn);
1015
1016 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
1017 return;
1018 }
1019
1020 query = "?op=rpc&method="+op+"&ids=" + param_escape(rows);
1021
1022 console.log(query);
1023
1024 for (var i = 0; i < rows.length; i++) {
1025 cache_delete("article:" + rows[i]);
1026 }
1027
1028 new Ajax.Request("backend.php", {
1029 parameters: query,
1030 onComplete: function(transport) {
1031 handle_rpc_json(transport);
1032 viewCurrentFeed();
1033 } });
1034
1035 } catch (e) {
1036 exception_error("archiveSelection", e);
1037 }
1038 }
1039
1040 function catchupSelection() {
1041
1042 try {
1043
1044 var rows = getSelectedArticleIds2();
1045
1046 if (rows.length == 0) {
1047 alert(__("No articles are selected."));
1048 return;
1049 }
1050
1051 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
1052
1053 var str = __("Mark %d selected articles in %s as read?");
1054
1055 str = str.replace("%d", rows.length);
1056 str = str.replace("%s", fn);
1057
1058 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
1059 return;
1060 }
1061
1062 selectionToggleUnread(false, 'viewCurrentFeed()', true);
1063
1064 } catch (e) {
1065 exception_error("catchupSelection", e);
1066 }
1067 }
1068
1069 function editArticleTags(id) {
1070 var query = "backend.php?op=dlg&method=editArticleTags&param=" + param_escape(id);
1071
1072 if (dijit.byId("editTagsDlg"))
1073 dijit.byId("editTagsDlg").destroyRecursive();
1074
1075 dialog = new dijit.Dialog({
1076 id: "editTagsDlg",
1077 title: __("Edit article Tags"),
1078 style: "width: 600px",
1079 execute: function() {
1080 if (this.validate()) {
1081 var query = dojo.objectToQuery(this.attr('value'));
1082
1083 notify_progress("Saving article tags...", true);
1084
1085 new Ajax.Request("backend.php", {
1086 parameters: query,
1087 onComplete: function(transport) {
1088 notify('');
1089 dialog.hide();
1090
1091 var data = JSON.parse(transport.responseText);
1092
1093 if (data) {
1094 var tags_str = article.tags;
1095 var id = tags_str.id;
1096
1097 var tags = $("ATSTR-" + id);
1098 var tooltip = dijit.byId("ATSTRTIP-" + id);
1099
1100 if (tags) tags.innerHTML = tags_str.content;
1101 if (tooltip) tooltip.attr('label', tags_str.content_full);
1102
1103 cache_delete("article:" + id);
1104 }
1105
1106 }});
1107 }
1108 },
1109 href: query,
1110 });
1111
1112 var tmph = dojo.connect(dialog, 'onLoad', function() {
1113 dojo.disconnect(tmph);
1114
1115 new Ajax.Autocompleter('tags_str', 'tags_choices',
1116 "backend.php?op=rpc&method=completeTags",
1117 { tokens: ',', paramName: "search" });
1118 });
1119
1120 dialog.show();
1121
1122 }
1123
1124 function cdmScrollToArticleId(id) {
1125 try {
1126 var ctr = $("headlines-frame");
1127 var e = $("RROW-" + id);
1128
1129 if (!e || !ctr) return;
1130
1131 ctr.scrollTop = e.offsetTop;
1132
1133 } catch (e) {
1134 exception_error("cdmScrollToArticleId", e);
1135 }
1136 }
1137
1138 function getActiveArticleId() {
1139 return active_post_id;
1140 }
1141
1142 function postMouseIn(id) {
1143 post_under_pointer = id;
1144 }
1145
1146 function postMouseOut(id) {
1147 post_under_pointer = false;
1148 }
1149
1150 function headlines_scroll_handler(e) {
1151 try {
1152 var hsp = $("headlines-spacer");
1153
1154 if (!_infscroll_disable) {
1155 if ((hsp && e.scrollTop + e.offsetHeight >= hsp.offsetTop - hsp.offsetHeight) ||
1156 (e.scrollHeight != 0 &&
1157 ((e.scrollTop + e.offsetHeight) / e.scrollHeight >= 0.7))) {
1158
1159 if (hsp)
1160 hsp.innerHTML = "<img src='images/indicator_tiny.gif'> " +
1161 __("Loading, please wait...");
1162
1163 loadMoreHeadlines();
1164 return;
1165
1166 }
1167 } else {
1168 if (hsp) hsp.innerHTML = "";
1169 }
1170
1171 if (getInitParam("cdm_auto_catchup") == 1) {
1172
1173 $$("#headlines-frame > div[id*=RROW][class*=Unread]").each(
1174 function(child) {
1175 if ($("headlines-frame").scrollTop >
1176 (child.offsetTop + child.offsetHeight/2)) {
1177
1178 var id = child.id.replace("RROW-", "");
1179
1180 if (catchup_id_batch.indexOf(id) == -1)
1181 catchup_id_batch.push(id);
1182
1183 //console.log("auto_catchup_batch: " + catchup_id_batch.toString());
1184 }
1185 });
1186
1187 if (catchup_id_batch.length > 0) {
1188 window.clearTimeout(catchup_timeout_id);
1189
1190 if (!_infscroll_request_sent) {
1191 catchup_timeout_id = window.setTimeout('catchupBatchedArticles()',
1192 2000);
1193 }
1194 }
1195 }
1196
1197 } catch (e) {
1198 console.warn("headlines_scroll_handler: " + e);
1199 }
1200 }
1201
1202 function catchupBatchedArticles() {
1203 try {
1204 if (catchup_id_batch.length > 0 && !_infscroll_request_sent) {
1205
1206 // make a copy of the array
1207 var batch = catchup_id_batch.slice();
1208 var query = "?op=rpc&method=catchupSelected" +
1209 "&cmode=0&ids=" + param_escape(batch.toString());
1210
1211 console.log(query);
1212
1213 new Ajax.Request("backend.php", {
1214 parameters: query,
1215 onComplete: function(transport) {
1216 handle_rpc_json(transport);
1217
1218 batch.each(function(id) {
1219 var elem = $("RROW-" + id);
1220 if (elem) elem.removeClassName("Unread");
1221 catchup_id_batch.remove(id);
1222 });
1223
1224 } });
1225 }
1226
1227 } catch (e) {
1228 exception_error("catchupBatchedArticles", e);
1229 }
1230 }
1231
1232 function catchupRelativeToArticle(below, id) {
1233
1234 try {
1235
1236 if (!id) id = getActiveArticleId();
1237
1238 if (!id) {
1239 alert(__("No article is selected."));
1240 return;
1241 }
1242
1243 var visible_ids = getVisibleArticleIds();
1244
1245 var ids_to_mark = new Array();
1246
1247 if (!below) {
1248 for (var i = 0; i < visible_ids.length; i++) {
1249 if (visible_ids[i] != id) {
1250 var e = $("RROW-" + visible_ids[i]);
1251
1252 if (e && e.hasClassName("Unread")) {
1253 ids_to_mark.push(visible_ids[i]);
1254 }
1255 } else {
1256 break;
1257 }
1258 }
1259 } else {
1260 for (var i = visible_ids.length-1; i >= 0; i--) {
1261 if (visible_ids[i] != id) {
1262 var e = $("RROW-" + visible_ids[i]);
1263
1264 if (e && e.hasClassName("Unread")) {
1265 ids_to_mark.push(visible_ids[i]);
1266 }
1267 } else {
1268 break;
1269 }
1270 }
1271 }
1272
1273 if (ids_to_mark.length == 0) {
1274 alert(__("No articles found to mark"));
1275 } else {
1276 var msg = __("Mark %d article(s) as read?").replace("%d", ids_to_mark.length);
1277
1278 if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
1279
1280 for (var i = 0; i < ids_to_mark.length; i++) {
1281 var e = $("RROW-" + ids_to_mark[i]);
1282 e.removeClassName("Unread");
1283 }
1284
1285 var query = "?op=rpc&method=catchupSelected" +
1286 "&cmode=0" + "&ids=" + param_escape(ids_to_mark.toString());
1287
1288 new Ajax.Request("backend.php", {
1289 parameters: query,
1290 onComplete: function(transport) {
1291 handle_rpc_json(transport);
1292 } });
1293
1294 }
1295 }
1296
1297 } catch (e) {
1298 exception_error("catchupRelativeToArticle", e);
1299 }
1300 }
1301
1302 function cdmExpandArticle(id) {
1303 try {
1304
1305 hideAuxDlg();
1306
1307 var elem = $("CICD-" + active_post_id);
1308
1309 if (id == active_post_id && Element.visible(elem))
1310 return true;
1311
1312 selectArticles("none");
1313
1314 var old_offset = $("RROW-" + id).offsetTop;
1315
1316 if (active_post_id && elem && !getInitParam("cdm_expanded")) {
1317 Element.hide(elem);
1318 Element.show("CEXC-" + active_post_id);
1319 }
1320
1321 active_post_id = id;
1322
1323 elem = $("CICD-" + id);
1324
1325 if (!Element.visible(elem)) {
1326 Element.show(elem);
1327 Element.hide("CEXC-" + id);
1328 }
1329
1330 var new_offset = $("RROW-" + id).offsetTop;
1331
1332 $("headlines-frame").scrollTop += (new_offset-old_offset);
1333
1334 if ($("RROW-" + id).offsetTop != old_offset)
1335 $("headlines-frame").scrollTop = new_offset;
1336
1337 toggleUnread(id, 0, true);
1338 toggleSelected(id);
1339
1340 } catch (e) {
1341 exception_error("cdmExpandArticle", e);
1342 }
1343
1344 return false;
1345 }
1346
1347 function fixHeadlinesOrder(ids) {
1348 try {
1349 for (var i = 0; i < ids.length; i++) {
1350 var e = $("RROW-" + ids[i]);
1351
1352 if (e) {
1353 if (i % 2 == 0) {
1354 e.removeClassName("even");
1355 e.addClassName("odd");
1356 } else {
1357 e.removeClassName("odd");
1358 e.addClassName("even");
1359 }
1360 }
1361 }
1362 } catch (e) {
1363 exception_error("fixHeadlinesOrder", e);
1364 }
1365 }
1366
1367 function getArticleUnderPointer() {
1368 return post_under_pointer;
1369 }
1370
1371 function zoomToArticle(event, id) {
1372 try {
1373 var cached_article = cache_get("article: " + id);
1374
1375 if (dijit.byId("ATAB-" + id))
1376 if (!event || !event.shiftKey)
1377 return dijit.byId("content-tabs").selectChild(dijit.byId("ATAB-" + id));
1378
1379 if (dijit.byId("ATSTRTIP-" + id))
1380 dijit.byId("ATSTRTIP-" + id).destroyRecursive();
1381
1382 if (cached_article) {
1383 //closeArticlePanel();
1384
1385 var article_pane = new dijit.layout.ContentPane({
1386 title: __("Loading...") , content: cached_article,
1387 style: 'padding : 0px;',
1388 id: 'ATAB-' + id,
1389 closable: true });
1390
1391 dijit.byId("content-tabs").addChild(article_pane);
1392
1393 if (!event || !event.shiftKey)
1394 dijit.byId("content-tabs").selectChild(article_pane);
1395
1396 if ($("PTITLE-" + id))
1397 article_pane.attr('title', $("PTITLE-" + id).innerHTML);
1398
1399 } else {
1400
1401 var query = "?op=rpc&method=getArticles&ids=" + param_escape(id);
1402
1403 notify_progress("Loading, please wait...", true);
1404
1405 new Ajax.Request("backend.php", {
1406 parameters: query,
1407 onComplete: function(transport) {
1408 notify('');
1409
1410 var reply = JSON.parse(transport.responseText);
1411
1412 if (reply) {
1413 //closeArticlePanel();
1414
1415 var content = reply[0]['content'];
1416
1417 var article_pane = new dijit.layout.ContentPane({
1418 title: "article-" + id , content: content,
1419 style: 'padding : 0px;',
1420 id: 'ATAB-' + id,
1421 closable: true });
1422
1423 dijit.byId("content-tabs").addChild(article_pane);
1424
1425 if (!event || !event.shiftKey)
1426 dijit.byId("content-tabs").selectChild(article_pane);
1427
1428 if ($("PTITLE-" + id))
1429 article_pane.attr('title', $("PTITLE-" + id).innerHTML);
1430 }
1431
1432 } });
1433 }
1434
1435 } catch (e) {
1436 exception_error("zoomToArticle", e);
1437 }
1438 }
1439
1440 function scrollArticle(offset) {
1441 try {
1442 if (!isCdmMode()) {
1443 var ci = $("content-insert");
1444 if (ci) {
1445 ci.scrollTop += offset;
1446 }
1447 } else {
1448 var hi = $("headlines-frame");
1449 if (hi) {
1450 hi.scrollTop += offset;
1451 }
1452
1453 }
1454 } catch (e) {
1455 exception_error("scrollArticle", e);
1456 }
1457 }
1458
1459 function show_labels_in_headlines(transport) {
1460 try {
1461 var data = JSON.parse(transport.responseText);
1462
1463 if (data) {
1464 data['info-for-headlines'].each(function(elem) {
1465 var ctr = $("HLLCTR-" + elem.id);
1466
1467 if (ctr) ctr.innerHTML = elem.labels;
1468 });
1469
1470 cache_headlines(getActiveFeedId(), activeFeedIsCat(), null, $("headlines-frame").innerHTML);
1471
1472 }
1473 } catch (e) {
1474 exception_error("show_labels_in_headlines", e);
1475 }
1476 }
1477
1478 function dismissArticle(id) {
1479 try {
1480 var elem = $("RROW-" + id);
1481
1482 toggleUnread(id, 0, true);
1483
1484 new Effect.Fade(elem, {duration : 0.5});
1485
1486 active_post_id = false;
1487
1488 } catch (e) {
1489 exception_error("dismissArticle", e);
1490 }
1491 }
1492
1493 function dismissSelectedArticles() {
1494 try {
1495
1496 var ids = getVisibleArticleIds();
1497 var tmp = [];
1498 var sel = [];
1499
1500 for (var i = 0; i < ids.length; i++) {
1501 var elem = $("RROW-" + ids[i]);
1502
1503 if (elem.className && elem.hasClassName("Selected") &&
1504 ids[i] != active_post_id) {
1505 new Effect.Fade(elem, {duration : 0.5});
1506 sel.push(ids[i]);
1507 } else {
1508 tmp.push(ids[i]);
1509 }
1510 }
1511
1512 if (sel.length > 0)
1513 selectionToggleUnread(false);
1514
1515 fixHeadlinesOrder(tmp);
1516
1517 } catch (e) {
1518 exception_error("dismissSelectedArticles", e);
1519 }
1520 }
1521
1522 function dismissReadArticles() {
1523 try {
1524
1525 var ids = getVisibleArticleIds();
1526 var tmp = [];
1527
1528 for (var i = 0; i < ids.length; i++) {
1529 var elem = $("RROW-" + ids[i]);
1530
1531 if (elem.className && !elem.hasClassName("Unread") &&
1532 !elem.hasClassName("Selected")) {
1533
1534 new Effect.Fade(elem, {duration : 0.5});
1535 } else {
1536 tmp.push(ids[i]);
1537 }
1538 }
1539
1540 fixHeadlinesOrder(tmp);
1541
1542 } catch (e) {
1543 exception_error("dismissSelectedArticles", e);
1544 }
1545 }
1546
1547 function getVisibleArticleIds() {
1548 var ids = [];
1549
1550 try {
1551
1552 getLoadedArticleIds().each(function(id) {
1553 var elem = $("RROW-" + id);
1554 if (elem && Element.visible(elem))
1555 ids.push(id);
1556 });
1557
1558 } catch (e) {
1559 exception_error("getVisibleArticleIds", e);
1560 }
1561
1562 return ids;
1563 }
1564
1565 function cdmClicked(event, id) {
1566 try {
1567 //var shift_key = event.shiftKey;
1568
1569 hideAuxDlg();
1570
1571 if (!event.ctrlKey) {
1572
1573 if (!getInitParam("cdm_expanded")) {
1574 return cdmExpandArticle(id);
1575 } else {
1576
1577 selectArticles("none");
1578 toggleSelected(id);
1579
1580 var elem = $("RROW-" + id);
1581 var article_is_unread = elem.hasClassName("Unread");
1582
1583 if (elem)
1584 elem.removeClassName("Unread");
1585
1586 active_post_id = id;
1587
1588 if (article_is_unread) {
1589 decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
1590 }
1591
1592 var query = "?op=rpc&method=catchupSelected" +
1593 "&cmode=0&ids=" + param_escape(id);
1594
1595 new Ajax.Request("backend.php", {
1596 parameters: query,
1597 onComplete: function(transport) {
1598 handle_rpc_json(transport);
1599 } });
1600
1601 return true;
1602 }
1603
1604 } else {
1605 toggleSelected(id, true);
1606
1607 var elem = $("RROW-" + id);
1608 var article_is_unread = elem.hasClassName("Unread");
1609
1610 if (article_is_unread) {
1611 decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
1612 }
1613
1614 toggleUnread(id, 0, false);
1615 zoomToArticle(event, id);
1616 }
1617
1618 request_counters();
1619
1620 } catch (e) {
1621 exception_error("cdmClicked");
1622 }
1623
1624 return false;
1625 }
1626
1627 function postClicked(event, id) {
1628 try {
1629
1630 if (!event.ctrlKey) {
1631 return true;
1632 } else {
1633 postOpenInNewTab(event, id);
1634 return false;
1635 }
1636
1637 } catch (e) {
1638 exception_error("postClicked");
1639 }
1640 }
1641
1642 function hlOpenInNewTab(event, id) {
1643 toggleUnread(id, 0, false);
1644 zoomToArticle(event, id);
1645 }
1646
1647 function postOpenInNewTab(event, id) {
1648 closeArticlePanel(id);
1649 zoomToArticle(event, id);
1650 }
1651
1652 function hlClicked(event, id) {
1653 try {
1654 if (event.which == 2) {
1655 view(id);
1656 return true;
1657 } else if (event.altKey) {
1658 openArticleInNewWindow(id);
1659 } else if (!event.ctrlKey) {
1660 view(id);
1661 return false;
1662 } else {
1663 toggleSelected(id);
1664 toggleUnread(id, 0, false);
1665 zoomToArticle(event, id);
1666 return false;
1667 }
1668
1669 } catch (e) {
1670 exception_error("hlClicked");
1671 }
1672 }
1673
1674 function getFirstVisibleHeadlineId() {
1675 var rows = getVisibleArticleIds();
1676 return rows[0];
1677
1678 }
1679
1680 function getLastVisibleHeadlineId() {
1681 var rows = getVisibleArticleIds();
1682 return rows[rows.length-1];
1683 }
1684
1685 function openArticleInNewWindow(id) {
1686 toggleUnread(id, 0, false);
1687 window.open("backend.php?op=article&method=redirect&id=" + id);
1688 }
1689
1690 function isCdmMode() {
1691 return getInitParam("combined_display_mode");
1692 }
1693
1694 function markHeadline(id) {
1695 var row = $("RROW-" + id);
1696 if (row) {
1697 var check = dijit.byId("RCHK-" + id);
1698
1699 if (check) {
1700 check.attr("checked", true);
1701 }
1702
1703 row.addClassName("Selected");
1704 }
1705 }
1706
1707 function getRelativePostIds(id, limit) {
1708
1709 var tmp = [];
1710
1711 try {
1712
1713 if (!limit) limit = 6; //3
1714
1715 var ids = getVisibleArticleIds();
1716
1717 for (var i = 0; i < ids.length; i++) {
1718 if (ids[i] == id) {
1719 for (var k = 1; k <= limit; k++) {
1720 //if (i > k-1) tmp.push(ids[i-k]);
1721 if (i < ids.length-k) tmp.push(ids[i+k]);
1722 }
1723 break;
1724 }
1725 }
1726
1727 } catch (e) {
1728 exception_error("getRelativePostIds", e);
1729 }
1730
1731 return tmp;
1732 }
1733
1734 function correctHeadlinesOffset(id) {
1735
1736 try {
1737
1738 var container = $("headlines-frame");
1739 var row = $("RROW-" + id);
1740
1741 if (!container || !row) return;
1742
1743 var viewport = container.offsetHeight;
1744
1745 var rel_offset_top = row.offsetTop - container.scrollTop;
1746 var rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
1747
1748 //console.log("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
1749 //console.log("Vport: " + viewport);
1750
1751 if (rel_offset_top <= 0 || rel_offset_top > viewport) {
1752 container.scrollTop = row.offsetTop;
1753 } else if (rel_offset_bottom > viewport) {
1754
1755 /* doesn't properly work with Opera in some cases because
1756 Opera fucks up element scrolling */
1757
1758 container.scrollTop = row.offsetTop + row.offsetHeight - viewport;
1759 }
1760
1761 } catch (e) {
1762 exception_error("correctHeadlinesOffset", e);
1763 }
1764
1765 }
1766
1767 function headlineActionsChange(elem) {
1768 try {
1769 eval(elem.value);
1770 elem.attr('value', 'false');
1771 } catch (e) {
1772 exception_error("headlineActionsChange", e);
1773 }
1774 }
1775
1776 function closeArticlePanel() {
1777
1778 var tabs = dijit.byId("content-tabs");
1779 var child = tabs.selectedChildWidget;
1780
1781 if (child && tabs.getIndexOfChild(child) > 0) {
1782 tabs.removeChild(child);
1783 child.destroy();
1784 } else {
1785 if (dijit.byId("content-insert"))
1786 dijit.byId("headlines-wrap-inner").removeChild(
1787 dijit.byId("content-insert"));
1788 }
1789 }
1790
1791 function initHeadlinesMenu() {
1792 try {
1793 if (dijit.byId("headlinesMenu"))
1794 dijit.byId("headlinesMenu").destroyRecursive();
1795
1796 var ids = [];
1797
1798 if (!isCdmMode()) {
1799 nodes = $$("#headlines-frame > div[id*=RROW]");
1800 } else {
1801 nodes = $$("#headlines-frame span[id*=RTITLE]");
1802 }
1803
1804 nodes.each(function(node) {
1805 ids.push(node.id);
1806 });
1807
1808 var menu = new dijit.Menu({
1809 id: "headlinesMenu",
1810 targetNodeIds: ids,
1811 });
1812
1813 var tmph = dojo.connect(menu, '_openMyself', function (event) {
1814 var callerNode = event.target, match = null, tries = 0;
1815
1816 while (match == null && callerNode && tries <= 3) {
1817 match = callerNode.id.match("^[A-Z]+[-]([0-9]+)$");
1818 callerNode = callerNode.parentNode;
1819 ++tries;
1820 }
1821
1822 if (match) this.callerRowId = parseInt(match[1]);
1823
1824 });
1825
1826 /* if (!isCdmMode())
1827 menu.addChild(new dijit.MenuItem({
1828 label: __("View article"),
1829 onClick: function(event) {
1830 view(this.getParent().callerRowId);
1831 }})); */
1832
1833 menu.addChild(new dijit.MenuItem({
1834 label: __("Open original article"),
1835 onClick: function(event) {
1836 openArticleInNewWindow(this.getParent().callerRowId);
1837 }}));
1838
1839 menu.addChild(new dijit.MenuItem({
1840 label: __("View in a tt-rss tab"),
1841 onClick: function(event) {
1842 hlOpenInNewTab(event, this.getParent().callerRowId);
1843 }}));
1844
1845 menu.addChild(new dijit.MenuSeparator());
1846
1847 menu.addChild(new dijit.MenuItem({
1848 label: __("Mark above as read"),
1849 onClick: function(event) {
1850 catchupRelativeToArticle(0, this.getParent().callerRowId);
1851 }}));
1852
1853 menu.addChild(new dijit.MenuItem({
1854 label: __("Mark below as read"),
1855 onClick: function(event) {
1856 catchupRelativeToArticle(1, this.getParent().callerRowId);
1857 }}));
1858
1859
1860 var labels = dijit.byId("feedTree").model.getItemsInCategory(-2);
1861
1862 if (labels) {
1863
1864 menu.addChild(new dijit.MenuSeparator());
1865
1866 var labelAddMenu = new dijit.Menu({ownerMenu: menu});
1867 var labelDelMenu = new dijit.Menu({ownerMenu: menu});
1868
1869 labels.each(function(label) {
1870 var id = label.id[0];
1871 var bare_id = id.substr(id.indexOf(":")+1);
1872 var name = label.name[0];
1873
1874 bare_id = -11-bare_id;
1875
1876 labelAddMenu.addChild(new dijit.MenuItem({
1877 label: name,
1878 labelId: bare_id,
1879 onClick: function(event) {
1880 var ids = getSelectedArticleIds2();
1881 // cast to string
1882 var id = this.getParent().ownerMenu.callerRowId + "";
1883
1884 ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
1885
1886 selectionAssignLabel(this.labelId, ids);
1887 }}));
1888
1889 labelDelMenu.addChild(new dijit.MenuItem({
1890 label: name,
1891 labelId: bare_id,
1892 onClick: function(event) {
1893 var ids = getSelectedArticleIds2();
1894 // cast to string
1895 var id = this.getParent().ownerMenu.callerRowId + "";
1896
1897 ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
1898
1899 selectionRemoveLabel(this.labelId, ids);
1900 }}));
1901
1902 });
1903
1904 menu.addChild(new dijit.PopupMenuItem({
1905 label: __("Assign label"),
1906 popup: labelAddMenu,
1907 }));
1908
1909 menu.addChild(new dijit.PopupMenuItem({
1910 label: __("Remove label"),
1911 popup: labelDelMenu,
1912 }));
1913
1914 }
1915
1916 menu.startup();
1917
1918 } catch (e) {
1919 exception_error("initHeadlinesMenu", e);
1920 }
1921 }
1922
1923
1924 function player(elem) {
1925 var aid = elem.getAttribute("audio-id");
1926 var status = elem.getAttribute("status");
1927
1928 var audio = $(aid);
1929
1930 if (audio) {
1931 if (status == 0) {
1932 audio.play();
1933 status = 1;
1934 elem.innerHTML = __("Playing...");
1935 elem.title = __("Click to pause");
1936 elem.addClassName("playing");
1937 } else {
1938 audio.pause();
1939 status = 0;
1940 elem.innerHTML = __("Play");
1941 elem.title = __("Click to play");
1942 elem.removeClassName("playing");
1943 }
1944
1945 elem.setAttribute("status", status);
1946 } else {
1947 alert("Your browser doesn't seem to support HTML5 audio.");
1948 }
1949 }
1950
1951 function cache_set(id, obj) {
1952 //console.log("cache_set: " + id);
1953 if (has_storage)
1954 try {
1955 sessionStorage[id] = obj;
1956 } catch (e) {
1957 sessionStorage.clear();
1958 }
1959 }
1960
1961 function cache_get(id) {
1962 if (has_storage)
1963 return sessionStorage[id];
1964 }
1965
1966 function cache_clear() {
1967 if (has_storage)
1968 sessionStorage.clear();
1969 }
1970
1971 function cache_delete(id) {
1972 if (has_storage)
1973 sessionStorage.removeItem(id);
1974 }
1975
1976 function cache_headlines(feed, is_cat, toolbar_obj, content_obj) {
1977 if (toolbar_obj && content_obj) {
1978 cache_set("feed:" + feed + ":" + is_cat,
1979 JSON.stringify({toolbar: toolbar_obj, content: content_obj}));
1980 } else {
1981 try {
1982 obj = cache_get("feed:" + feed + ":" + is_cat);
1983
1984 if (obj) {
1985 obj = JSON.parse(obj);
1986
1987 if (toolbar_obj) obj.toolbar = toolbar_obj;
1988 if (content_obj) obj.content = content_obj;
1989
1990 cache_set("feed:" + feed + ":" + is_cat, JSON.stringify(obj));
1991 }
1992
1993 } catch (e) {
1994 console.warn("cache_headlines failed: " + e);
1995 }
1996 }
1997 }
1998
1999 function render_local_headlines(feed, is_cat, obj) {
2000 try {
2001
2002 dijit.byId("headlines-toolbar").attr('content',
2003 obj.toolbar);
2004
2005 dijit.byId("headlines-frame").attr('content',
2006 obj.content);
2007
2008 dojo.parser.parse('headlines-toolbar');
2009
2010 $("headlines-frame").scrollTop = 0;
2011 selectArticles('none');
2012 setActiveFeedId(feed, is_cat);
2013 initHeadlinesMenu();
2014
2015 dijit.getEnclosingWidget(
2016 document.forms["main_toolbar_form"].update).attr('disabled',
2017 is_cat || feed <= 0);
2018
2019 precache_headlines();
2020
2021 } catch (e) {
2022 exception_error("render_local_headlines", e);
2023 }
2024 }
2025
2026 function precache_headlines_idle() {
2027 try {
2028 if (getInitParam("bw_limit") != "1" && !feed_precache_timeout_id) {
2029 if (get_timestamp() - _viewfeed_last > 120) {
2030
2031 var feeds = dijit.byId("feedTree").getVisibleUnreadFeeds();
2032 var uncached = [];
2033
2034 feeds.each(function(item) {
2035 if (parseInt(item[0]) > 0 && !cache_get("feed:" + item[0] + ":" + item[1]))
2036 uncached.push(item);
2037 });
2038
2039 if (uncached.length > 0) {
2040 var rf = uncached[Math.floor(Math.random()*uncached.length)];
2041 viewfeed(rf[0], '', rf[1], 0, true);
2042 }
2043 }
2044 }
2045 precache_idle_timeout_id = setTimeout("precache_headlines_idle()", 1000*30);
2046
2047 } catch (e) {
2048 exception_error("precache_headlines_idle", e);
2049 }
2050 }
2051
2052 function precache_headlines() {
2053 try {
2054 if (getInitParam("bw_limit") != "1" && !feed_precache_timeout_id) {
2055
2056 feed_precache_timeout_id = window.setTimeout(function() {
2057 var nuf = getNextUnreadFeed(getActiveFeedId(), activeFeedIsCat());
2058 var nf = dijit.byId("feedTree").getNextFeed(getActiveFeedId(), activeFeedIsCat());
2059
2060 if (nuf && !cache_get("feed:" + nuf + ":" + activeFeedIsCat()))
2061 viewfeed(nuf, '', activeFeedIsCat(), 0, true);
2062
2063 if (nf && nf[0] != nuf && !cache_get("feed:" + nf[0] + ":" + nf[1]))
2064 viewfeed(nf[0], '', nf[1], 0, true);
2065
2066 window.setTimeout(function() {
2067 feed_precache_timeout_id = false;
2068 }, 3000);
2069 }, 1000);
2070 }
2071
2072 } catch (e) {
2073 exception_error("precache_headlines", e);
2074 }
2075 }
2076
2077 function cancelSearch() {
2078 try {
2079 _search_query = "";
2080 viewCurrentFeed();
2081 } catch (e) {
2082 exception_error("cancelSearch", e);
2083 }
2084 }
2085
2086 function setSelectionScore() {
2087 try {
2088 var ids = getSelectedArticleIds2();
2089
2090 if (ids.length > 0) {
2091 console.log(ids);
2092
2093 var score = prompt(__("Please enter new score for selected articles:"), score);
2094
2095 if (score != undefined) {
2096 var query = "op=rpc&method=setScore&id=" + param_escape(ids.toString()) +
2097 "&score=" + param_escape(score);
2098
2099 new Ajax.Request("backend.php", {
2100 parameters: query,
2101 onComplete: function(transport) {
2102 var reply = JSON.parse(transport.responseText);
2103 if (reply) {
2104 console.log(ids);
2105
2106 ids.each(function(id) {
2107 var row = $("RROW-" + id);
2108
2109 if (row) {
2110 var pic = row.getElementsByClassName("hlScorePic")[0];
2111
2112 if (pic) {
2113 pic.src = pic.src.replace(/score_.*?\.png/,
2114 reply["score_pic"]);
2115 pic.setAttribute("score", score);
2116 }
2117 }
2118 });
2119 }
2120 } });
2121 }
2122
2123 } else {
2124 alert(__("No articles are selected."));
2125 }
2126 } catch (e) {
2127 exception_error("setSelectionScore", e);
2128 }
2129 }
2130
2131 function changeScore(id, pic) {
2132 try {
2133 var score = pic.getAttribute("score");
2134
2135 var new_score = prompt(__("Please enter new score for this article:"), score);
2136
2137 if (new_score != undefined) {
2138
2139 var query = "op=rpc&method=setScore&id=" + param_escape(id) +
2140 "&score=" + param_escape(new_score);
2141
2142 new Ajax.Request("backend.php", {
2143 parameters: query,
2144 onComplete: function(transport) {
2145 var reply = JSON.parse(transport.responseText);
2146
2147 if (reply) {
2148 pic.src = pic.src.replace(/score_.*?\.png/, reply["score_pic"]);
2149 pic.setAttribute("score", new_score);
2150 }
2151 } });
2152 }
2153 } catch (e) {
2154 exception_error("changeScore", e);
2155 }
2156 }