]> git.wh0rd.org - tt-rss.git/blob - feedlist.js
05109ad23334d4b7998bfc0f7856b271e9d3bb00
[tt-rss.git] / feedlist.js
1 var _feed_cur_page = 0;
2 var _infscroll_disable = 0;
3 var _infscroll_request_sent = 0;
4 var feed_under_pointer = undefined;
5
6 var mouse_is_down = false;
7 var mouse_y = 0;
8 var mouse_x = 0;
9
10 var resize_enabled = false;
11 var selection_disabled = false;
12 var counters_last_request = 0;
13
14 function toggle_sortable_feedlist(enabled) {
15 try {
16
17 if (enabled) {
18 Sortable.create('feedList', {onChange: feedlist_dragsorted, only: "feedCat"});
19 } else {
20 Sortable.destroy('feedList');
21 }
22
23 } catch (e) {
24 exception_error("toggle_sortable_feedlist", e);
25 }
26 }
27
28 function viewCategory(cat) {
29 viewfeed(cat, '', true);
30 return false;
31 }
32
33 function printFeedEntry(id, title, row_class, unread, icon) {
34
35 var tmp = "";
36 var fctr_class = "";
37 var feed_icon = "";
38
39 if (unread > 0) {
40 row_class += "Unread";
41 fctr_class = "feedCtrHasUnread";
42 } else {
43 fctr_class = "feedCtrNoUnread";
44 }
45
46 if (icon) {
47 feed_icon = "<img id='FIMG-"+id+"' src='" + icon + "'>";
48 } else {
49 feed_icon = "<img id='FIMG-"+id+"' src='images/blank_icon.gif'>";
50 }
51
52 var link = "<a title=\"FIXME\" id=\"FEEDL-"+id+"\""+
53 "href=\"javascript:viewfeed('"+id+"', '', false, '', false, 0);\">"+
54 title + "</a>";
55
56 tmp += "<li id='FEEDR-"+id+"' class="+row_class+">" + feed_icon +
57 "<span id=\"FEEDN-"+id+"\">" + link + "</span>";
58
59 tmp += " <span class='"+fctr_class+"' id=\"FEEDCTR-"+id+"\">" +
60 "(<span id=\"FEEDU-"+id+"\">"+unread+"</span>)</span>";
61
62 tmp += "</li>";
63
64 return tmp;
65 }
66
67 function render_feedlist(data) {
68 try {
69
70 var f = $("feeds-frame");
71 f.innerHTML = data;
72 // cache_invalidate("FEEDLIST");
73 // cache_inject("FEEDLIST", data, getInitParam("num_feeds"));
74 feedlist_init();
75
76 } catch (e) {
77 exception_error("render_feedlist", e);
78 }
79 }
80
81 function feedlist_callback2(transport) {
82 try {
83 debug("feedlist_callback2");
84 if (!transport_error_check(transport)) return;
85 render_feedlist(transport.responseText);
86 } catch (e) {
87 exception_error("feedlist_callback2", e);
88 }
89 }
90
91 function viewNextFeedPage() {
92 try {
93 //if (!getActiveFeedId()) return;
94
95 debug("viewNextFeedPage: calling viewfeed(), p: " + parseInt(_feed_cur_page+1));
96
97 viewfeed(getActiveFeedId(), undefined, activeFeedIsCat(), undefined,
98 undefined, parseInt(_feed_cur_page+1));
99
100 } catch (e) {
101 exception_error("viewNextFeedPage", e);
102 }
103 }
104
105
106 function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
107 try {
108
109 if (offline_mode) return viewfeed_offline(feed, subop, is_cat, subop_param,
110 skip_history, offset);
111
112 // if (!offset) page_offset = 0;
113
114 last_requested_article = 0;
115 //counters_last_request = 0;
116
117 if (feed == getActiveFeedId()) {
118 cache_invalidate("F:" + feed);
119 }
120
121 /* if (getInitParam("theme") == "" || getInitParam("theme") == "compact") {
122 if (getInitParam("hide_feedlist") == 1) {
123 Element.hide("feeds-holder");
124 }
125 } */
126
127 var force_nocache = false;
128
129 var page_offset = 0;
130
131 if (offset > 0) {
132 page_offset = offset;
133 } else {
134 page_offset = 0;
135 _feed_cur_page = 0;
136 _infscroll_disable = 0;
137 }
138
139 if (getActiveFeedId() != feed) {
140 _feed_cur_page = 0;
141 active_post_id = 0;
142 _infscroll_disable = 0;
143 }
144
145 if (page_offset != 0 && !subop) {
146 var date = new Date();
147 var timestamp = Math.round(date.getTime() / 1000);
148
149 debug("<b>" + _infscroll_request_sent + " : " + timestamp + "</b>");
150
151 if (_infscroll_request_sent && _infscroll_request_sent + 30 > timestamp) {
152 debug("infscroll request in progress, aborting");
153 return;
154 }
155
156 _infscroll_request_sent = timestamp;
157 }
158
159 enableHotkeys();
160
161 closeInfoBox();
162
163 Form.enable("main_toolbar_form");
164
165 var toolbar_form = document.forms["main_toolbar_form"];
166 var toolbar_query = Form.serialize("main_toolbar_form");
167
168 if (toolbar_form.query) {
169 if (toolbar_form.query.value != "") {
170 force_nocache = true;
171 }
172 toolbar_form.query.value = "";
173 }
174
175 var query = "backend.php?op=viewfeed&feed=" + feed + "&" +
176 toolbar_query + "&subop=" + param_escape(subop);
177
178 if ($("search_form")) {
179 var search_query = Form.serialize("search_form");
180 query = query + "&" + search_query;
181 $("search_form").query.value = "";
182 closeInfoBox(true);
183 force_nocache = true;
184 }
185
186 // debug("IS_CAT_STORED: " + activeFeedIsCat() + ", IS_CAT: " + is_cat);
187
188 if (subop == "MarkAllRead") {
189
190 catchup_local_feed(feed, is_cat);
191
192 var show_next_feed = getInitParam("on_catchup_show_next_feed") == "1";
193
194 if (show_next_feed) {
195
196 if (!activeFeedIsCat()) {
197
198 var feedlist = $('feedList');
199
200 var next_unread_feed = getRelativeFeedId(feedlist,
201 feed, "next", true);
202
203 if (!next_unread_feed) {
204 next_unread_feed = getRelativeFeedId(feedlist,
205 -3, "next", true);
206 }
207
208 if (next_unread_feed) {
209 query = query + "&nuf=" + param_escape(next_unread_feed);
210 //setActiveFeedId(next_unread_feed);
211 feed = next_unread_feed;
212 }
213 } else {
214
215 var next_unread_feed = getNextUnreadCat(feed);
216
217 /* we don't need to specify that our next feed is actually
218 a category, because we're in the is_cat mode by definition
219 already */
220
221 if (next_unread_feed && show_next_feed) {
222 query = query + "&nuf=" + param_escape(next_unread_feed);
223 feed = next_unread_feed;
224 }
225
226 }
227 }
228 }
229
230 if (is_cat) {
231 query = query + "&cat=1";
232 }
233
234 if (page_offset != 0) {
235 query = query + "&skip=" + page_offset;
236
237 // to prevent duplicate feed titles when showing grouped vfeeds
238 if (vgroup_last_feed) {
239 query = query + "&vgrlf=" + param_escape(vgroup_last_feed);
240 }
241 }
242
243 var date = new Date();
244 var timestamp = Math.round(date.getTime() / 1000);
245 query = query + "&ts=" + timestamp
246
247 disableContainerChildren("headlinesToolbar", false);
248 Form.enable("main_toolbar_form");
249
250 // for piggybacked counters
251
252 if (tagsAreDisplayed()) {
253 query = query + "&omode=lt";
254 } else {
255 query = query + "&omode=flc";
256 }
257
258 if (!async_counters_work) {
259 query = query + "&csync=true";
260 }
261
262 debug(query);
263
264 var container = $("headlinesInnerContainer");
265
266 /* if (container && page_offset == 0 && !isCdmMode()) {
267 new Effect.Fade(container, {duration: 1, to: 0.01,
268 queue: { position:'end', scope: 'FEEDL-' + feed, limit: 1 } } );
269 } */
270
271 var unread_ctr = -1;
272
273 if (!is_cat) unread_ctr = get_feed_unread(feed);
274
275 var cache_check = false;
276
277 if (unread_ctr != -1 && !page_offset && !force_nocache && !subop) {
278
279 var cache_prefix = "";
280
281 if (is_cat) {
282 cache_prefix = "C:";
283 } else {
284 cache_prefix = "F:";
285 }
286
287 cache_check = cache_check_param(cache_prefix + feed, unread_ctr);
288 debug("headline cache check: " + cache_check);
289 }
290
291 if (cache_check) {
292 var f = $("headlines-frame");
293
294 clean_feed_selections();
295
296 setActiveFeedId(feed, is_cat);
297
298 if (!is_cat) {
299 var feedr = $("FEEDR-" + feed);
300 if (feedr && !feedr.className.match("Selected")) {
301 feedr.className = feedr.className + "Selected";
302 }
303 } else {
304 var feedr = $("FCAT-" + feed_id);
305 if (feedr && !feedr.className.match("Selected")) {
306 feedr.className = feedr.className + "Selected";
307 }
308 }
309
310 f.innerHTML = cache_find_param(cache_prefix + feed, unread_ctr);
311
312 request_counters();
313 remove_splash();
314
315 } else {
316
317 if (!page_offset) {
318 notify_progress("Loading, please wait...", true);
319 }
320
321 new Ajax.Request(query, {
322 onComplete: function(transport) {
323 headlines_callback2(transport, page_offset);
324 } });
325 }
326
327 } catch (e) {
328 exception_error("viewfeed", e);
329 }
330 }
331
332 function toggleCollapseCat_af(effect) {
333 //var caption = elem.id.replace("FCATLIST-", "");
334
335 try {
336
337 var elem = effect.element;
338 var cat = elem.id.replace("FCATLIST-", "");
339 var cap = $("FCAP-" + cat);
340
341 if (Element.visible(elem)) {
342 cap.innerHTML = cap.innerHTML.replace("…", "");
343 } else {
344 if (cap.innerHTML.lastIndexOf("…") != cap.innerHTML.length-3) {
345 cap.innerHTML = cap.innerHTML + "…";
346 }
347 }
348
349 } catch (e) {
350 exception_error("toggleCollapseCat_af", e);
351 }
352 }
353
354 function toggleCollapseCat(cat) {
355 try {
356
357 var cat_elem = $("FCAT-" + cat);
358 var cat_list = $("FCATLIST-" + cat).parentNode;
359 var caption = $("FCAP-" + cat);
360
361 /* if (cat_list.className.match("invisible")) {
362 cat_list.className = "";
363 caption.innerHTML = caption.innerHTML.replace("...", "");
364 if (cat == 0) {
365 setCookie("ttrss_vf_uclps", "0");
366 }
367 } else {
368 cat_list.className = "invisible";
369 caption.innerHTML = caption.innerHTML + "...";
370 if (cat == 0) {
371 setCookie("ttrss_vf_uclps", "1");
372 }
373
374 } */
375
376 if (cat == 0) {
377 if (Element.visible("FCATLIST-" + cat)) {
378 setCookie("ttrss_vf_uclps", "1");
379 } else {
380 setCookie("ttrss_vf_uclps", "0");
381 }
382 }
383
384 if (cat == -2) {
385 if (Element.visible("FCATLIST-" + cat)) {
386 setCookie("ttrss_vf_lclps", "1");
387 } else {
388 setCookie("ttrss_vf_lclps", "0");
389 }
390 }
391
392 if (cat == -1) {
393 if (Element.visible("FCATLIST-" + cat)) {
394 setCookie("ttrss_vf_vclps", "1");
395 } else {
396 setCookie("ttrss_vf_vclps", "0");
397 }
398 }
399
400 Effect.toggle('FCATLIST-' + cat, 'blind', { duration: 0.5,
401 afterFinish: toggleCollapseCat_af });
402
403 new Ajax.Request("backend.php?op=feeds&subop=collapse&cid=" +
404 param_escape(cat));
405
406 local_collapse_cat(cat);
407
408 } catch (e) {
409 exception_error("toggleCollapseCat", e);
410 }
411 }
412
413 function feedlist_dragsorted(ctr) {
414 try {
415 var elem = $("feedList");
416
417 var cats = elem.getElementsByTagName("LI");
418 var ordered_cats = new Array();
419
420 for (var i = 0; i < cats.length; i++) {
421 if (cats[i].id && cats[i].id.match("FCAT-")) {
422 ordered_cats.push(cats[i].id.replace("FCAT-", ""));
423 }
424 }
425
426 if (ordered_cats.length > 0) {
427
428 var query = "backend.php?op=feeds&subop=catsort&corder=" +
429 param_escape(ordered_cats.toString());
430
431 debug(query);
432
433 new Ajax.Request(query);
434 }
435
436 } catch (e) {
437 exception_error("feedlist_dragsorted", e);
438 }
439 }
440
441 function feedlist_init() {
442 try {
443 // if (arguments.callee.done) return;
444 // arguments.callee.done = true;
445
446 loading_set_progress(90);
447
448 debug("in feedlist init");
449
450 hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
451 document.onkeydown = hotkey_handler;
452 document.onmousemove = mouse_move_handler;
453 document.onmousedown = mouse_down_handler;
454 document.onmouseup = mouse_up_handler;
455
456 if (!offline_mode) setTimeout("timeout()", 1);
457
458 setTimeout("hotkey_prefix_timeout()", 5*1000);
459
460 if (typeof correctPNG != 'undefined') {
461 correctPNG();
462 }
463
464 if (getActiveFeedId()) {
465 //debug("some feed is open on feedlist refresh, reloading");
466 //setTimeout("viewCurrentFeed()", 100);
467 } else {
468 if (getInitParam("cdm_auto_catchup") != 1 && get_feed_unread(-3) > 0) {
469 notify_silent_next();
470 setTimeout("viewfeed(-3)", 100);
471 } else {
472 remove_splash();
473 }
474 }
475
476 if (getInitParam("theme") == "") {
477 setTimeout("hide_footer()", 5000);
478 }
479
480 init_collapsable_feedlist(getInitParam("theme"));
481
482 toggle_sortable_feedlist(isFeedlistSortable());
483
484 } catch (e) {
485 exception_error("feedlist/init", e);
486 }
487 }
488
489 function hide_footer_af(effect) {
490 try {
491 var c = $("content-frame");
492
493 if (c) {
494 c.style.bottom = "0px";
495
496 var ioa = $("inline_orig_article");
497
498 if (ioa) {
499 ioa.height = c.offsetHeight;
500 }
501
502 } else {
503 var h = $("headlines-frame");
504
505 if (h) {
506 h.style.bottom = "0px";
507 }
508 }
509
510 } catch (e) {
511 exception_error("hide_footer_af", e);
512 }
513 }
514
515 function hide_footer() {
516 try {
517 if (Element.visible("footer")) {
518 new Effect.Fade("footer", { afterFinish: hide_footer_af });
519 }
520 } catch (e) {
521 exception_error("hide_footer", e);
522 }
523 }
524
525 /*
526 function init_hidden_feedlist(theme) {
527 try {
528 debug("init_hidden_feedlist");
529
530 if (theme != "" && theme != "compact") return;
531
532 var fl = $("feeds-holder");
533 var fh = $("headlines-frame");
534 var fc = $("content-frame");
535 var ft = $("toolbar");
536 var ff = $("footer");
537 var fhdr = $("header");
538
539 var fbtn = $("toggle_feeds_btn");
540
541 if (fbtn) Element.show(fbtn);
542
543 fl.style.top = fh.offsetTop + "px";
544 fl.style.backgroundColor = "white"; //FIXME
545
546 Element.hide(fl);
547
548 fh.style.left = "0px";
549 ft.style.left = "0px";
550 if (fc) fc.style.left = "0px";
551 if (ff) ff.style.left = "0px";
552
553 if (theme == "compact") {
554 fhdr.style.left = "10px";
555 fl.style.top = (fh.offsetTop + 1) + "px";
556 }
557
558 } catch (e) {
559 exception_error("init_hidden_feedlist", e);
560 }
561 } */
562
563 function init_collapsable_feedlist(theme) {
564 try {
565 debug("init_collapsable_feedlist");
566
567 if (theme != "" && theme != "compact" && theme != "graycube" &&
568 theme != "compat") return;
569
570 var fbtn = $("collapse_feeds_btn");
571
572 if (fbtn) Element.show(fbtn);
573
574 if (getCookie("ttrss_vf_fclps") == 1) {
575 collapse_feedlist();
576 }
577
578 } catch (e) {
579 exception_error("init_hidden_feedlist", e);
580 }
581
582 }
583
584 function mouse_move_handler(e) {
585 try {
586 var client_y;
587 var client_x;
588
589 if (window.event) {
590 client_y = window.event.clientY;
591 client_x = window.event.clientX;
592 } else if (e) {
593 client_x = e.screenX;
594 client_y = e.screenY;
595 }
596
597 if (mouse_is_down) {
598
599 if (mouse_y == 0) mouse_y = client_y;
600 if (mouse_x == 0) mouse_x = client_x;
601
602 resize_headlines(mouse_x - client_x, mouse_y - client_y);
603
604 mouse_y = client_y;
605 mouse_x = client_x;
606
607 return false;
608 }
609
610 } catch (e) {
611 exception_error("mouse_move_handler", e);
612 }
613 }
614
615 function enable_selection(b) {
616 selection_disabled = !b;
617 }
618
619 function enable_resize(b) {
620 resize_enabled = b;
621 }
622
623 function mouse_down_handler(e) {
624 try {
625
626 /* do not prevent right click */
627 if (e && e.button && e.button == 2) return;
628
629 if (resize_enabled) {
630 mouse_is_down = true;
631 mouse_x = 0;
632 mouse_y = 0;
633 document.onselectstart = function() { return false; };
634 return false;
635 }
636
637 if (selection_disabled) {
638 document.onselectstart = function() { return false; };
639 return false;
640 }
641
642 } catch (e) {
643 exception_error("mouse_down_handler", e);
644 }
645 }
646
647 function mouse_up_handler(e) {
648 try {
649 mouse_is_down = false;
650
651 if (!selection_disabled) {
652 document.onselectstart = null;
653 var e = $("headlineActionsBody");
654 if (e) Element.hide(e);
655
656 var e = $("offlineModeDrop");
657 if (e) Element.hide(e);
658
659 }
660
661 } catch (e) {
662 exception_error("mouse_up_handler", e);
663 }
664 }
665
666 function request_counters_real() {
667
668 try {
669
670 if (offline_mode) return;
671
672 debug("requesting counters...");
673
674 var query = "backend.php?op=rpc&subop=getAllCounters";
675
676 if (tagsAreDisplayed()) {
677 query = query + "&omode=tl";
678 } else {
679 query = query + "&omode=flc";
680 }
681
682 new Ajax.Request(query, {
683 onComplete: function(transport) {
684 try {
685 all_counters_callback2(transport, true);
686 } catch (e) {
687 exception_error("viewfeed/getcounters", e);
688 }
689 } });
690
691 } catch (e) {
692 exception_error("request_counters_real", e);
693 }
694 }
695
696
697 function request_counters() {
698
699 try {
700
701 if (getInitParam("bw_limit") == "1") return;
702
703 var date = new Date();
704 var timestamp = Math.round(date.getTime() / 1000);
705
706 // if (getInitParam("sync_counters") == "1" ||
707 // timestamp - counters_last_request > 10) {
708
709 if (timestamp - counters_last_request > 15) {
710 debug("scheduling request of counters...");
711 window.setTimeout("request_counters_real()", 1000);
712 counters_last_request = timestamp;
713 } else {
714 debug("request_counters: rate limit reached: " + (timestamp - counters_last_request));
715 }
716
717 } catch (e) {
718 exception_error("request_counters", e);
719 }
720 }
721
722