main.js 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157
  1. // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0
  2. 'use strict';
  3. // <Polyfills>
  4. if (!document.scrollingElement) document.scrollingElement = document.documentElement;
  5. if (!NodeList.prototype.forEach) NodeList.prototype.forEach = Array.prototype.forEach;
  6. if (!Element.prototype.matches) {
  7. Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.mozMatchesSelector || Element.prototype.webkitMatchesSelector;
  8. }
  9. if (!Element.prototype.closest) {
  10. Element.prototype.closest = function (s) {
  11. let el = this;
  12. do {
  13. if (el.matches(s)) return el;
  14. el = el.parentElement;
  15. } while (el);
  16. return null;
  17. };
  18. }
  19. if (!Element.prototype.remove) Element.prototype.remove = function () { if (this.parentNode) this.parentNode.removeChild(this); };
  20. // </Polyfills>
  21. // <Utils>
  22. function xmlHttpRequestJson(req) {
  23. let json = req.response;
  24. if (req.responseType !== 'json') { // IE11
  25. try {
  26. json = JSON.parse(req.responseText);
  27. } catch (ex) {
  28. json = null;
  29. }
  30. }
  31. return json;
  32. }
  33. // </Utils>
  34. // <Global context>
  35. /* eslint-disable no-var */
  36. var context;
  37. /* eslint-enable no-var */
  38. (function parseJsonVars() {
  39. const jsonVars = document.getElementById('jsonVars');
  40. const json = JSON.parse(jsonVars.innerHTML);
  41. jsonVars.outerHTML = '';
  42. context = json.context;
  43. context.ajax_loading = false;
  44. context.i18n = json.i18n;
  45. context.shortcuts = json.shortcuts;
  46. context.urls = json.urls;
  47. context.icons = json.icons;
  48. context.icons.read = decodeURIComponent(context.icons.read);
  49. context.icons.unread = decodeURIComponent(context.icons.unread);
  50. context.extensions = json.extensions;
  51. }());
  52. const freshrssGlobalContextLoadedEvent = new Event('freshrss:globalContextLoaded');
  53. document.dispatchEvent(freshrssGlobalContextLoadedEvent);
  54. // </Global context>
  55. function badAjax(reload) {
  56. openNotification(context.i18n.notif_request_failed, 'bad');
  57. if (reload) {
  58. setTimeout(function () { location.reload(); }, 2000);
  59. }
  60. return true;
  61. }
  62. function needsScroll(elem) {
  63. const winBottom = document.scrollingElement.scrollTop + document.scrollingElement.clientHeight;
  64. const elemTop = elem.offsetParent.offsetTop + elem.offsetTop;
  65. const elemBottom = elemTop + elem.offsetHeight;
  66. if (elemTop < document.scrollingElement.scrollTop || elemBottom > winBottom) {
  67. return elemTop - (document.scrollingElement.clientHeight / 2);
  68. }
  69. return 0;
  70. }
  71. function str2int(str) {
  72. if (!str) {
  73. return 0;
  74. }
  75. return parseInt(str.replace(/\D/g, ''), 10) || 0;
  76. }
  77. function numberFormat(nStr) {
  78. if (nStr < 0) {
  79. return 0;
  80. }
  81. // http://www.mredkj.com/javascript/numberFormat.html
  82. const x = String(nStr).split('.');
  83. const x2 = x.length > 1 ? '.' + x[1] : '';
  84. const rgx = /(\d+)(\d{3})/;
  85. let x1 = x[0];
  86. while (rgx.test(x1)) {
  87. x1 = x1.replace(rgx, '$1 $2');
  88. }
  89. return x1 + x2;
  90. }
  91. function incLabel(p, inc, spaceAfter) {
  92. const i = str2int(p) + inc;
  93. return i > 0 ? ((spaceAfter ? '' : ' ') + '(' + numberFormat(i) + ')' + (spaceAfter ? ' ' : '')) : '';
  94. }
  95. function incUnreadsFeed(article, feed_id, nb) {
  96. // Update unread: feed
  97. let elem = document.getElementById(feed_id);
  98. let feed_unreads = elem ? str2int(elem.getAttribute('data-unread')) : 0;
  99. const feed_priority = elem ? str2int(elem.getAttribute('data-priority')) : 0;
  100. if (elem) {
  101. elem.setAttribute('data-unread', feed_unreads + nb);
  102. elem = elem.querySelector('.item-title');
  103. if (elem) {
  104. elem.setAttribute('data-unread', numberFormat(feed_unreads + nb));
  105. }
  106. }
  107. // Update unread: category
  108. elem = document.getElementById(feed_id);
  109. elem = elem ? elem.closest('.category') : null;
  110. if (elem) {
  111. feed_unreads = str2int(elem.getAttribute('data-unread'));
  112. elem.setAttribute('data-unread', feed_unreads + nb);
  113. elem = elem.querySelector('.title');
  114. if (elem) {
  115. elem.setAttribute('data-unread', numberFormat(feed_unreads + nb));
  116. }
  117. }
  118. // Update unread: all
  119. if (feed_priority > 0) {
  120. elem = document.querySelector('#aside_feed .all .title');
  121. if (elem) {
  122. feed_unreads = elem ? str2int(elem.getAttribute('data-unread')) : 0;
  123. elem.setAttribute('data-unread', numberFormat(feed_unreads + nb));
  124. }
  125. }
  126. // Update unread: important
  127. if (feed_priority >= 20) {
  128. elem = document.querySelector('#aside_feed .important .title');
  129. if (elem) {
  130. feed_unreads = elem ? str2int(elem.getAttribute('data-unread')) : 0;
  131. elem.setAttribute('data-unread', numberFormat(feed_unreads + nb));
  132. }
  133. }
  134. // Update unread: favourites
  135. if (article && article.closest('div').classList.contains('favorite')) {
  136. elem = document.querySelector('#aside_feed .favorites .title');
  137. if (elem) {
  138. feed_unreads = elem ? str2int(elem.getAttribute('data-unread')) : 0;
  139. elem.setAttribute('data-unread', numberFormat(feed_unreads + nb));
  140. }
  141. }
  142. let isCurrentView = false;
  143. // Update unread: title
  144. document.title = document.title.replace(/^((?:\([\s0-9]+\) )?)/, function (m, p1) {
  145. const feed = document.getElementById(feed_id);
  146. if (article || (feed && feed.closest('.active'))) {
  147. isCurrentView = true;
  148. return incLabel(p1, nb, true);
  149. } else if (document.querySelector('.all.active')) {
  150. isCurrentView = feed_priority > 0;
  151. return incLabel(p1, feed_priority > 0 ? nb : 0, true);
  152. } else {
  153. return p1;
  154. }
  155. });
  156. return isCurrentView;
  157. }
  158. function incUnreadsTag(tag_id, nb) {
  159. let t = document.getElementById(tag_id);
  160. if (t) {
  161. const unreads = str2int(t.getAttribute('data-unread'));
  162. t.setAttribute('data-unread', unreads + nb);
  163. t.querySelector('.item-title').setAttribute('data-unread', numberFormat(unreads + nb));
  164. }
  165. t = document.querySelector('.category.tags .title');
  166. if (t) {
  167. const unreads = str2int(t.getAttribute('data-unread'));
  168. t.setAttribute('data-unread', numberFormat(unreads + nb));
  169. }
  170. }
  171. function removeArticle(div) {
  172. if (!div || div.classList.contains('not_read') || (context.auto_mark_article && div.classList.contains('active'))) {
  173. return;
  174. }
  175. let scrollTop = box_to_follow.scrollTop;
  176. let dirty = false;
  177. const p = div.previousElementSibling;
  178. const n = div.nextElementSibling;
  179. if (p && p.classList.contains('day') && n && n.classList.contains('day')) {
  180. scrollTop -= p.offsetHeight;
  181. dirty = true;
  182. p.remove();
  183. }
  184. if (div.offsetHeight > 0 && div.offsetParent.offsetTop + div.offsetTop + div.offsetHeight < scrollTop) {
  185. scrollTop -= div.offsetHeight;
  186. dirty = true;
  187. }
  188. div.remove();
  189. if (dirty) {
  190. box_to_follow.scrollTop = scrollTop;
  191. }
  192. }
  193. const pending_entries = {};
  194. let mark_read_queue = [];
  195. function send_mark_read_queue(queue, asRead, callback) {
  196. if (!queue || queue.length === 0) {
  197. if (callback) {
  198. callback();
  199. }
  200. return;
  201. }
  202. const req = new XMLHttpRequest();
  203. req.open('POST', '.?c=entry&a=read' + (asRead ? '' : '&is_read=0'), true);
  204. req.responseType = 'json';
  205. req.onerror = function (e) {
  206. for (let i = queue.length - 1; i >= 0; i--) {
  207. const div = document.getElementById('flux_' + queue[i]);
  208. div.querySelectorAll('a.read > .icon').forEach(icon => {
  209. icon.outerHTML = div.classList.contains('not_read') ? context.icons.unread : context.icons.read;
  210. });
  211. delete pending_entries['flux_' + queue[i]];
  212. }
  213. badAjax(this.status == 403);
  214. };
  215. req.onload = function (e) {
  216. if (this.status != 200) {
  217. return req.onerror(e);
  218. }
  219. const json = xmlHttpRequestJson(this);
  220. if (!json) {
  221. return req.onerror(e);
  222. }
  223. for (let i = queue.length - 1; i >= 0; i--) {
  224. const div = document.getElementById('flux_' + queue[i]);
  225. const myIcons = context.icons;
  226. let inc = 0;
  227. if (div.classList.contains('not_read')) {
  228. div.classList.remove('not_read');
  229. div.querySelectorAll('a.read').forEach(function (a) {
  230. a.href = a.href.replace('&is_read=0', '') + '&is_read=1';
  231. });
  232. div.querySelectorAll('a.read > .icon').forEach(function (img) { img.outerHTML = myIcons.read; });
  233. inc--;
  234. if (context.auto_remove_article) {
  235. removeArticle(div);
  236. }
  237. } else {
  238. div.classList.add('not_read');
  239. div.classList.add('keep_unread'); // Split for IE11
  240. div.querySelectorAll('a.read').forEach(function (a) {
  241. a.href = a.href.replace('&is_read=1', '');
  242. });
  243. div.querySelectorAll('a.read > .icon').forEach(function (img) { img.outerHTML = myIcons.unread; });
  244. inc++;
  245. }
  246. const feed_link = div.querySelector('.website > a, a.website');
  247. if (feed_link) {
  248. const feed_url = feed_link.href;
  249. const feed_id = feed_url.substr(feed_url.lastIndexOf('f_'));
  250. incUnreadsFeed(div, feed_id, inc);
  251. }
  252. delete pending_entries['flux_' + queue[i]];
  253. }
  254. faviconNbUnread();
  255. if (json.tags) {
  256. const tagIds = Object.keys(json.tags);
  257. for (let i = tagIds.length - 1; i >= 0; i--) {
  258. const tagId = tagIds[i];
  259. incUnreadsTag(tagId, (asRead ? -1 : 1) * json.tags[tagId].length);
  260. }
  261. }
  262. toggle_bigMarkAsRead_button();
  263. onScroll();
  264. if (callback) {
  265. callback();
  266. }
  267. };
  268. req.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
  269. req.send(JSON.stringify({
  270. ajax: true,
  271. _csrf: context.csrf,
  272. id: queue,
  273. }));
  274. }
  275. let send_mark_read_queue_timeout = 0;
  276. function send_mark_queue_tick(callback) {
  277. send_mark_read_queue_timeout = 0;
  278. const queue = mark_read_queue.slice(0);
  279. mark_read_queue = [];
  280. send_mark_read_queue(queue, true, callback);
  281. }
  282. const delayedFunction = send_mark_queue_tick;
  283. function delayedClick(a) {
  284. if (a) {
  285. delayedFunction(function () { a.click(); });
  286. }
  287. }
  288. function mark_read(div, only_not_read, asBatch) {
  289. if (!div || !div.id || context.anonymous ||
  290. (only_not_read && !div.classList.contains('not_read'))) {
  291. return false;
  292. }
  293. if (pending_entries[div.id]) {
  294. return false;
  295. }
  296. pending_entries[div.id] = true;
  297. div.querySelectorAll('a.read > .icon').forEach(icon => {
  298. icon.src = context.icons.spinner;
  299. icon.alt = '⏳';
  300. icon.classList.add('spinner');
  301. });
  302. const asRead = div.classList.contains('not_read');
  303. const entryId = div.id.replace(/^flux_/, '');
  304. if (asRead && asBatch) {
  305. mark_read_queue.push(entryId);
  306. if (send_mark_read_queue_timeout == 0) {
  307. send_mark_read_queue_timeout = setTimeout(function () { send_mark_queue_tick(null); }, 1000);
  308. }
  309. } else {
  310. const queue = [entryId];
  311. send_mark_read_queue(queue, asRead);
  312. }
  313. }
  314. function mark_previous_read(div) {
  315. while (div) {
  316. mark_read(div, true, true);
  317. div = div.previousElementSibling;
  318. }
  319. }
  320. function mark_favorite(div) {
  321. if (!div) {
  322. return false;
  323. }
  324. const a = div.querySelector('a.bookmark');
  325. const url = a ? a.href : '';
  326. if (!url) {
  327. return false;
  328. }
  329. if (pending_entries[div.id]) {
  330. return false;
  331. }
  332. pending_entries[div.id] = true;
  333. let originalIcon;
  334. div.querySelectorAll('a.bookmark > .icon').forEach(icon => {
  335. originalIcon = {
  336. src: icon.getAttribute('src'),
  337. alt: icon.getAttribute('alt')
  338. };
  339. icon.src = context.icons.spinner;
  340. icon.alt = '⏳';
  341. icon.classList.add('spinner');
  342. });
  343. const req = new XMLHttpRequest();
  344. req.open('POST', url, true);
  345. req.responseType = 'json';
  346. req.onerror = function (e) {
  347. div.querySelectorAll('a.bookmark > .icon').forEach(icon => {
  348. icon.src = originalIcon.src;
  349. icon.alt = originalIcon.alt;
  350. });
  351. delete pending_entries[div.id];
  352. badAjax(this.status == 403);
  353. };
  354. req.onload = function (e) {
  355. if (this.status != 200) {
  356. return req.onerror(e);
  357. }
  358. const json = xmlHttpRequestJson(this);
  359. if (!json) {
  360. return req.onerror(e);
  361. }
  362. let inc = 0;
  363. if (div.classList.contains('favorite')) {
  364. div.classList.remove('favorite');
  365. inc--;
  366. } else {
  367. div.classList.add('favorite');
  368. inc++;
  369. }
  370. div.querySelectorAll('a.bookmark').forEach(function (a) { a.href = json.url; });
  371. div.querySelectorAll('a.bookmark > .icon').forEach(function (img) { img.outerHTML = json.icon; });
  372. const favourites = document.querySelector('#aside_feed .favorites .title');
  373. if (favourites) {
  374. favourites.textContent = favourites.textContent.replace(/((?: \([\s0-9]+\))?\s*)$/, function (m, p1) {
  375. return incLabel(p1, inc, false);
  376. });
  377. }
  378. if (div.classList.contains('not_read')) {
  379. const elem = document.querySelector('#aside_feed .favorites .title');
  380. const feed_unreads = elem ? str2int(elem.getAttribute('data-unread')) : 0;
  381. if (elem) {
  382. elem.setAttribute('data-unread', numberFormat(feed_unreads + inc));
  383. }
  384. }
  385. delete pending_entries[div.id];
  386. };
  387. req.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
  388. req.send(JSON.stringify({
  389. ajax: true,
  390. _csrf: context.csrf,
  391. }));
  392. }
  393. const freshrssOpenArticleEvent = document.createEvent('Event');
  394. freshrssOpenArticleEvent.initEvent('freshrss:openArticle', true, true);
  395. function loadLazyImages(rootElement) {
  396. rootElement.querySelectorAll('img[data-original], iframe[data-original], video[data-original]').forEach(function (el) {
  397. if (el.tagName === 'VIDEO') {
  398. el.poster = el.getAttribute('data-original');
  399. } else {
  400. el.src = el.getAttribute('data-original');
  401. }
  402. el.removeAttribute('data-original');
  403. });
  404. }
  405. function toggleContent(new_active, old_active, skipping) {
  406. // If skipping, move current without activating or marking as read
  407. if (!new_active) {
  408. return;
  409. }
  410. if (context.does_lazyload && !skipping) {
  411. loadLazyImages(new_active);
  412. }
  413. if (old_active !== new_active) {
  414. if (!skipping) {
  415. new_active.classList.add('active');
  416. }
  417. new_active.classList.add('current');
  418. if (old_active) {
  419. old_active.classList.remove('active');
  420. old_active.classList.remove('current'); // Split for IE11
  421. if (context.auto_remove_article) {
  422. removeArticle(old_active);
  423. }
  424. }
  425. } else {
  426. new_active.classList.toggle('active');
  427. }
  428. const relative_move = context.current_view === 'global';
  429. const box_to_move = relative_move ? document.getElementById('panel') : document.scrollingElement;
  430. if (context.sticky_post) { // Stick the article to the top when opened
  431. const prev_article = new_active.previousElementSibling;
  432. const nav_menu = document.querySelector('.nav_menu');
  433. let nav_menu_height = 0;
  434. if (nav_menu && (getComputedStyle(nav_menu).position === 'fixed' || getComputedStyle(nav_menu).position === 'sticky')) {
  435. nav_menu_height = nav_menu.offsetHeight;
  436. }
  437. let new_pos = new_active.offsetParent.offsetTop + new_active.offsetTop - nav_menu_height;
  438. if (prev_article && prev_article.offsetParent && new_active.offsetTop - prev_article.offsetTop <= 150) {
  439. new_pos = prev_article.offsetParent.offsetTop + prev_article.offsetTop - nav_menu_height;
  440. if (relative_move) {
  441. new_pos -= box_to_move.offsetTop;
  442. }
  443. }
  444. if (skipping) {
  445. // when skipping, this feels more natural if it’s not so near the top
  446. new_pos -= document.body.clientHeight / 4;
  447. }
  448. box_to_move.scrollTop = new_pos;
  449. }
  450. if (new_active.classList.contains('active') && !skipping) {
  451. if (context.auto_mark_article) {
  452. mark_read(new_active, true, true);
  453. }
  454. new_active.dispatchEvent(freshrssOpenArticleEvent);
  455. }
  456. onScroll();
  457. }
  458. function prev_entry(skipping) {
  459. const old_active = document.querySelector('.flux.current');
  460. let new_active = old_active;
  461. if (new_active) {
  462. do new_active = new_active.previousElementSibling;
  463. while (new_active && !new_active.classList.contains('flux'));
  464. if (!new_active) {
  465. prev_feed();
  466. }
  467. } else {
  468. new_active = document.querySelector('.flux');
  469. }
  470. if (context.auto_mark_focus && !new_active.classList.contains('keep_unread')) {
  471. mark_read(new_active, true, true);
  472. }
  473. toggleContent(new_active, old_active, skipping);
  474. }
  475. function next_entry(skipping) {
  476. const old_active = document.querySelector('.flux.current');
  477. let new_active = old_active;
  478. if (new_active) {
  479. do new_active = new_active.nextElementSibling;
  480. while (new_active && !new_active.classList.contains('flux'));
  481. if (!new_active) {
  482. next_feed();
  483. }
  484. } else {
  485. new_active = document.querySelector('.flux');
  486. }
  487. if (context.auto_mark_focus && !new_active.classList.contains('keep_unread')) {
  488. mark_read(new_active, true, true);
  489. }
  490. toggleContent(new_active, old_active, skipping);
  491. }
  492. function next_unread_entry(skipping) {
  493. const old_active = document.querySelector('.flux.current');
  494. let new_active = old_active;
  495. if (new_active) {
  496. do new_active = new_active.nextElementSibling;
  497. while (new_active && !new_active.classList.contains('not_read'));
  498. if (!new_active) {
  499. next_feed();
  500. }
  501. } else {
  502. new_active = document.querySelector('.not_read');
  503. }
  504. if (context.auto_mark_focus && !new_active.classList.contains('keep_unread')) {
  505. mark_read(new_active, true, true);
  506. }
  507. toggleContent(new_active, old_active, skipping);
  508. }
  509. function prev_feed() {
  510. let found = false;
  511. let adjacent = null;
  512. const feeds = document.querySelectorAll('#aside_feed .feed');
  513. for (let i = feeds.length - 1; i >= 0; i--) {
  514. const feed = feeds[i];
  515. if (feed.classList.contains('active')) {
  516. found = true;
  517. continue;
  518. }
  519. if (!found) {
  520. continue;
  521. }
  522. if (getComputedStyle(feed).display === 'none') {
  523. continue;
  524. }
  525. if (feed.dataset.unread != 0) {
  526. delayedClick(feed.querySelector('a.item-title'));
  527. return;
  528. } else if (adjacent === null) {
  529. adjacent = feed;
  530. }
  531. }
  532. if (found) {
  533. delayedClick(adjacent.querySelector('a.item-title'));
  534. } else {
  535. last_feed();
  536. }
  537. }
  538. function next_feed() {
  539. let found = false;
  540. let adjacent = null;
  541. const feeds = document.querySelectorAll('#aside_feed .feed');
  542. for (let i = 0; i < feeds.length; i++) {
  543. const feed = feeds[i];
  544. if (feed.classList.contains('active')) {
  545. found = true;
  546. continue;
  547. }
  548. if (!found) {
  549. continue;
  550. }
  551. if (getComputedStyle(feed).display === 'none') {
  552. continue;
  553. }
  554. if (feed.dataset.unread != 0) {
  555. delayedClick(feed.querySelector('a.item-title'));
  556. return;
  557. } else if (adjacent === null) {
  558. adjacent = feed;
  559. }
  560. }
  561. if (found) {
  562. delayedClick(adjacent.querySelector('a.item-title'));
  563. } else {
  564. first_feed();
  565. }
  566. }
  567. function first_feed() {
  568. const a = document.querySelector('#aside_feed .category.active .feed:not([data-unread="0"]) a.item-title');
  569. delayedClick(a);
  570. }
  571. function last_feed() {
  572. const links = document.querySelectorAll('#aside_feed .category.active .feed:not([data-unread="0"]) a.item-title');
  573. if (links && links.length > 0) {
  574. delayedClick(links[links.length - 1]);
  575. }
  576. }
  577. function prev_category() {
  578. const active_cat = document.querySelector('#aside_feed .category.active');
  579. if (active_cat) {
  580. let cat = active_cat;
  581. do cat = cat.previousElementSibling;
  582. while (cat && getComputedStyle(cat).display === 'none');
  583. if (cat) {
  584. delayedClick(cat.querySelector('a.tree-folder-title'));
  585. }
  586. } else {
  587. last_category();
  588. }
  589. }
  590. function next_category() {
  591. const active_cat = document.querySelector('#aside_feed .category.active');
  592. if (active_cat) {
  593. let cat = active_cat;
  594. do cat = cat.nextElementSibling;
  595. while (cat && getComputedStyle(cat).display === 'none');
  596. if (cat) {
  597. delayedClick(cat.querySelector('a.tree-folder-title'));
  598. }
  599. } else {
  600. first_category();
  601. }
  602. }
  603. function next_unread_category() {
  604. const active_cat = document.querySelector('#aside_feed .category.active');
  605. if (active_cat) {
  606. let cat = active_cat;
  607. do cat = cat.nextElementSibling;
  608. while (cat && cat.getAttribute('data-unread') <= 0);
  609. if (cat) {
  610. delayedClick(cat.querySelector('a.tree-folder-title'));
  611. }
  612. } else {
  613. first_category();
  614. }
  615. }
  616. function first_category() {
  617. const a = document.querySelector('#aside_feed .category:not([data-unread="0"]) a.tree-folder-title');
  618. delayedClick(a);
  619. }
  620. function last_category() {
  621. const links = document.querySelectorAll('#aside_feed .category:not([data-unread="0"]) a.tree-folder-title');
  622. if (links && links.length > 0) {
  623. delayedClick(links[links.length - 1]);
  624. }
  625. }
  626. function collapse_entry() {
  627. const flux_current = document.querySelector('.flux.current');
  628. toggleContent(flux_current, flux_current, false);
  629. }
  630. function toggle_media() {
  631. const media = document.querySelector('.flux.current video,.flux.current audio');
  632. if (media === null) {
  633. return;
  634. }
  635. if (media.paused) {
  636. media.play();
  637. } else {
  638. media.pause();
  639. }
  640. }
  641. function user_filter(key) {
  642. const filter = document.getElementById('dropdown-query');
  643. const filters = filter.parentElement.querySelectorAll('.dropdown-menu > .query > a');
  644. if (typeof key === 'undefined') {
  645. if (!filters.length) {
  646. return;
  647. }
  648. // Display the filter div
  649. location.hash = filter.id;
  650. // Force scrolling to the filter div
  651. const scroll = needsScroll(document.querySelector('.header'));
  652. if (scroll !== 0) {
  653. document.scrollingElement.scrollTop = scroll;
  654. }
  655. // Force the key value if there is only one action, so we can trigger it automatically
  656. if (filters.length === 1) {
  657. key = 1;
  658. } else {
  659. return;
  660. }
  661. }
  662. // Trigger selected share action
  663. key = parseInt(key);
  664. if (key <= filters.length) {
  665. filters[key - 1].click();
  666. }
  667. }
  668. function show_labels_menu(el) {
  669. const div = el.parentElement;
  670. const dropdownMenu = div.querySelector('.dropdown-menu');
  671. if (!dropdownMenu || forceReloadLabelsList) {
  672. if (dropdownMenu) {
  673. dropdownMenu.nextElementSibling.remove();
  674. dropdownMenu.remove();
  675. }
  676. const templateId = 'labels_article_template';
  677. const template = document.getElementById(templateId).innerHTML;
  678. div.insertAdjacentHTML('beforeend', template);
  679. loadDynamicTags(div.closest('.dynamictags'));
  680. }
  681. return true;
  682. }
  683. function show_share_menu(el) {
  684. const div = el.parentElement;
  685. const dropdownMenu = div.querySelector('.dropdown-menu');
  686. if (!dropdownMenu) {
  687. const itemId = el.closest('.flux').dataset.entry;
  688. const templateId = 'share_article_template';
  689. const id = itemId;
  690. const flux_header_el = el.closest('.flux');
  691. const title_el = flux_header_el.querySelector('.item.titleAuthorSummaryDate .item-element.title');
  692. const websiteName = ' - ' + flux_header_el.querySelector('.flux_header').dataset.websiteName;
  693. const articleAuthors = flux_header_el.querySelector('.flux_header').dataset.articleAuthors;
  694. let articleAuthorsText = '';
  695. if (articleAuthors.trim().length > 0) {
  696. articleAuthorsText = ' (' + articleAuthors + ')';
  697. }
  698. const link = title_el.href;
  699. const title = title_el.textContent;
  700. const titleText = title;
  701. const template = document.getElementById(templateId).innerHTML
  702. .replace(/--entryId--/g, id)
  703. .replace(/--link--/g, link)
  704. .replace(/--titleText--/g, titleText)
  705. .replace(/--websiteName--/g, websiteName)
  706. .replace(/--articleAuthors--/g, articleAuthorsText);
  707. div.insertAdjacentHTML('beforeend', template);
  708. }
  709. return true;
  710. }
  711. function mylabels(key) {
  712. const mylabelsDropdown = document.querySelector('.flux.current.active .dropdown-target[id^="dropdown-labels"]');
  713. if (!mylabelsDropdown) {
  714. return;
  715. }
  716. if (typeof key === 'undefined') {
  717. show_labels_menu(mylabelsDropdown);
  718. }
  719. // Display the mylabels div
  720. location.hash = mylabelsDropdown.id;
  721. // Force scrolling to the mylabels div
  722. const scrollTop = needsScroll(mylabelsDropdown.closest('.horizontal-list'));
  723. if (scrollTop !== 0) {
  724. if (mylabelsDropdown.closest('.horizontal-list.flux_header')) {
  725. mylabelsDropdown.nextElementSibling.nextElementSibling.scrollIntoView({ behavior: "smooth", block: "start" });
  726. } else {
  727. mylabelsDropdown.nextElementSibling.nextElementSibling.scrollIntoView({ behavior: "smooth", block: "end" });
  728. }
  729. }
  730. key = parseInt(key);
  731. if (key === 0) {
  732. mylabelsDropdown.parentElement.querySelector('.dropdown-menu .item .newTag').focus();
  733. } else {
  734. const mylabelsCheckboxes = mylabelsDropdown.parentElement.querySelectorAll('.dropdown-menu .item .checkboxTag');
  735. if (key <= mylabelsCheckboxes.length) {
  736. mylabelsCheckboxes[key].click();
  737. }
  738. }
  739. }
  740. function auto_share(key) {
  741. const share = document.querySelector('.flux.current.active .dropdown-target[id^="dropdown-share"]');
  742. if (!share) {
  743. return;
  744. }
  745. const shares = share.parentElement.querySelectorAll('.dropdown-menu .item [data-type]');
  746. if (typeof key === 'undefined') {
  747. show_share_menu(share);
  748. // Display the share div
  749. location.hash = share.id;
  750. // Force scrolling to the share div
  751. const scrollTop = needsScroll(share.closest('.horizontal-list'));
  752. if (scrollTop !== 0) {
  753. if (share.closest('.horizontal-list.flux_header')) {
  754. share.nextElementSibling.nextElementSibling.scrollIntoView({ behavior: "smooth", block: "start" });
  755. } else {
  756. share.nextElementSibling.nextElementSibling.scrollIntoView({ behavior: "smooth", block: "end" });
  757. }
  758. }
  759. // Force the key value if there is only one action, so we can trigger it automatically
  760. if (shares.length === 1) {
  761. key = 1;
  762. } else {
  763. return;
  764. }
  765. }
  766. // Trigger selected share action and hide the share div
  767. key = parseInt(key);
  768. if (key <= shares.length) {
  769. shares[key - 1].click();
  770. share.parentElement.querySelector('.dropdown-menu + a.dropdown-close').click();
  771. }
  772. }
  773. let box_to_follow;
  774. function onScroll() {
  775. if (!box_to_follow) {
  776. return;
  777. }
  778. if (context.auto_mark_scroll) {
  779. const hidden_px = -5; // negative = pixels over the edge
  780. const minTop = hidden_px + box_to_follow.scrollTop;
  781. document.querySelectorAll('.not_read:not(.keep_unread)').forEach(function (div) {
  782. if (div.offsetHeight > 0 &&
  783. div.offsetParent.offsetTop + div.offsetTop + div.offsetHeight < minTop) {
  784. mark_read(div, true, true);
  785. }
  786. });
  787. }
  788. let streamFooter;
  789. if (context.auto_load_more && (streamFooter = document.getElementById('stream-footer'))) {
  790. if (box_to_follow.offsetHeight > 0 &&
  791. box_to_follow.scrollTop + box_to_follow.offsetHeight + (window.innerHeight / 2) >= streamFooter.offsetTop) {
  792. // Too close to the last pre-loaded article
  793. load_more_posts();
  794. } else {
  795. const after = document.querySelectorAll('.flux.current ~ .flux').length;
  796. if (after > 0 && after <= 5) {
  797. // Too few pre-loaded articles
  798. load_more_posts();
  799. }
  800. }
  801. }
  802. }
  803. let lastScroll = 0; // Throttle
  804. let timerId = 0;
  805. function debouncedOnScroll() {
  806. clearTimeout(timerId);
  807. if (lastScroll + 500 < Date.now()) {
  808. lastScroll = Date.now();
  809. onScroll();
  810. } else {
  811. timerId = setTimeout(onScroll, 500);
  812. }
  813. }
  814. function init_posts() {
  815. if (context.auto_load_more || context.auto_mark_scroll || context.auto_remove_article) {
  816. box_to_follow = context.current_view === 'global' ? document.getElementById('panel') : document.scrollingElement;
  817. (box_to_follow === document.scrollingElement ? window : box_to_follow).onscroll = debouncedOnScroll;
  818. window.addEventListener('resize', debouncedOnScroll);
  819. onScroll();
  820. }
  821. if (!navigator.share && document.styleSheets.length > 0) {
  822. // https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share
  823. // do not show the menu entry if browser does not support navigator.share
  824. document.styleSheets[0].insertRule(
  825. 'button.as-link[data-type="web-sharing-api"] {display: none !important;}',
  826. document.styleSheets[0].cssRules.length
  827. );
  828. }
  829. }
  830. function rememberOpenCategory(category_id, isOpen) {
  831. if (context.display_categories === 'remember') {
  832. const open_categories = JSON.parse(localStorage.getItem('FreshRSS_open_categories') || '{}');
  833. if (isOpen) {
  834. open_categories[category_id] = true;
  835. } else {
  836. delete open_categories[category_id];
  837. }
  838. localStorage.setItem('FreshRSS_open_categories', JSON.stringify(open_categories));
  839. }
  840. }
  841. function openCategory(category_id) {
  842. const category_element = document.getElementById(category_id);
  843. if (!category_element) return;
  844. category_element.querySelector('.tree-folder-items').classList.add('active');
  845. const img = category_element.querySelector('button.dropdown-toggle img');
  846. if (!img) return;
  847. img.src = img.src.replace('/icons/down.', '/icons/up.');
  848. img.alt = '🔼';
  849. }
  850. function loadJs(name) {
  851. if (!document.getElementById(name)) {
  852. const script = document.createElement('script');
  853. script.setAttribute('id', name);
  854. script.setAttribute('src', '../scripts/' + name + '?' + context.mtime[name]);
  855. script.setAttribute('defer', 'defer');
  856. script.setAttribute('async', 'async');
  857. document.head.appendChild(script);
  858. }
  859. }
  860. function init_column_categories() {
  861. if (context.current_view !== 'normal' && context.current_view !== 'reader') {
  862. return;
  863. }
  864. // Restore sidebar scroll position
  865. document.getElementById('sidebar').scrollTop = +sessionStorage.getItem('FreshRSS_sidebar_scrollTop');
  866. // Restore open categories
  867. if (context.display_categories === 'remember') {
  868. const open_categories = JSON.parse(localStorage.getItem('FreshRSS_open_categories') || '{}');
  869. Object.keys(open_categories).forEach(function (category_id) {
  870. openCategory(category_id);
  871. });
  872. }
  873. document.getElementById('aside_feed').onclick = function (ev) {
  874. let a = ev.target.closest('.tree-folder > .tree-folder-title > button.dropdown-toggle');
  875. if (a) {
  876. const icon = a.querySelector('.icon');
  877. const category_id = a.closest('.category').id;
  878. if (icon.alt === '🔽' || icon.innerHTML === '🔽') {
  879. if (icon.src) {
  880. icon.src = icon.src.replace('/icons/down.', '/icons/up.');
  881. icon.alt = '🔼';
  882. } else {
  883. icon.innerHTML = '🔼';
  884. }
  885. rememberOpenCategory(category_id, true);
  886. } else {
  887. if (icon.src) {
  888. icon.src = icon.src.replace('/icons/up.', '/icons/down.');
  889. icon.alt = '🔽';
  890. } else {
  891. icon.innerHTML = '🔽';
  892. }
  893. rememberOpenCategory(category_id, false);
  894. }
  895. const ul = a.closest('li').querySelector('.tree-folder-items');
  896. let nbVisibleItems = 0;
  897. for (let i = ul.children.length - 1; i >= 0; i--) {
  898. if (ul.children[i].offsetHeight) {
  899. nbVisibleItems++;
  900. }
  901. }
  902. ul.classList.toggle('active');
  903. // CSS transition does not work on max-height:auto
  904. ul.style.maxHeight = ul.classList.contains('active') ? (nbVisibleItems * 4) + 'em' : 0;
  905. return false;
  906. }
  907. a = ev.target.closest('.tree-folder-items > .feed .dropdown-toggle');
  908. if (a) {
  909. const div = a.parentElement;
  910. const dropdownMenu = div.querySelector('.dropdown-menu');
  911. if (!dropdownMenu) {
  912. loadJs('extra.js');
  913. loadJs('feed.js');
  914. const itemId = a.closest('.item').id;
  915. const templateId = itemId.substring(0, 2) === 't_' ? 'tag_config_template' : 'feed_config_template';
  916. const id = itemId.substr(2);
  917. const feed_web = a.getAttribute('data-fweb') || '';
  918. const template = document.getElementById(templateId)
  919. .innerHTML.replace(/------/g, id).replace('http://example.net/', feed_web);
  920. div.insertAdjacentHTML('beforeend', template);
  921. if (feed_web == '') {
  922. const website = div.querySelector('.item.link.website');
  923. if (website) {
  924. website.remove();
  925. }
  926. }
  927. const b = div.querySelector('button.confirm');
  928. if (b) {
  929. b.disabled = false;
  930. }
  931. }
  932. return true;
  933. }
  934. return true;
  935. };
  936. }
  937. function init_shortcuts() {
  938. Object.keys(context.shortcuts).forEach(function (k) {
  939. context.shortcuts[k] = (context.shortcuts[k] || '').toUpperCase();
  940. if (context.shortcuts[k].indexOf('&') >= 0) {
  941. // Decode potential HTML entities <'&">
  942. const parser = new DOMParser();
  943. context.shortcuts[k] = parser.parseFromString(context.shortcuts[k], 'text/html').documentElement.textContent;
  944. }
  945. });
  946. document.addEventListener('keydown', ev => {
  947. if (ev.ctrlKey || ev.metaKey || (ev.altKey && ev.shiftKey) || ev.target.closest('input, select, textarea')) {
  948. return;
  949. }
  950. const s = context.shortcuts;
  951. let k = (ev.key.trim() || ev.code || 'Space').toUpperCase();
  952. // IE11
  953. if (k === 'SPACEBAR') k = 'SPACE';
  954. else if (k === 'DEL') k = 'DELETE';
  955. else if (k === 'ESC') k = 'ESCAPE';
  956. if (location.hash.match(/^#dropdown-/)) {
  957. const n = parseInt(k);
  958. if (Number.isInteger(n)) {
  959. switch (location.hash.substring(0, 15)) {
  960. case '#dropdown-query':
  961. user_filter(n);
  962. break;
  963. case '#dropdown-share':
  964. auto_share(n);
  965. break;
  966. case '#dropdown-label':
  967. mylabels(n);
  968. break;
  969. default:
  970. return;
  971. }
  972. ev.preventDefault();
  973. return;
  974. }
  975. }
  976. if (k === s.actualize) {
  977. const btn = document.getElementById('actualize');
  978. if (btn) {
  979. btn.click();
  980. }
  981. ev.preventDefault();
  982. return;
  983. }
  984. if (k === s.next_entry) {
  985. if (ev.altKey) {
  986. next_category();
  987. } else if (ev.shiftKey) {
  988. next_feed();
  989. } else {
  990. next_entry(false);
  991. }
  992. ev.preventDefault();
  993. return;
  994. }
  995. if (k === s.next_unread_entry) {
  996. if (ev.altKey) {
  997. next_unread_category();
  998. } else if (ev.shiftKey) {
  999. next_feed();
  1000. } else {
  1001. next_unread_entry(false);
  1002. }
  1003. ev.preventDefault();
  1004. return;
  1005. }
  1006. if (k === s.prev_entry) {
  1007. if (ev.altKey) {
  1008. prev_category();
  1009. } else if (ev.shiftKey) {
  1010. prev_feed();
  1011. } else {
  1012. prev_entry(false);
  1013. }
  1014. ev.preventDefault();
  1015. return;
  1016. }
  1017. if (k === s.mark_read) {
  1018. if (ev.altKey) {
  1019. mark_previous_read(document.querySelector('.flux.current'));
  1020. } else if (ev.shiftKey) {
  1021. document.querySelector('.nav_menu .read_all').click();
  1022. } else { // Toggle the read state
  1023. mark_read(document.querySelector('.flux.current'), false, false);
  1024. }
  1025. ev.preventDefault();
  1026. return;
  1027. }
  1028. if (k === s.first_entry) {
  1029. if (ev.altKey) {
  1030. first_category();
  1031. } else if (ev.shiftKey) {
  1032. first_feed();
  1033. } else {
  1034. const old_active = document.querySelector('.flux.current');
  1035. const first = document.querySelector('.flux');
  1036. if (first.classList.contains('flux')) {
  1037. toggleContent(first, old_active, false);
  1038. }
  1039. }
  1040. ev.preventDefault();
  1041. return;
  1042. }
  1043. if (k === s.last_entry) {
  1044. if (ev.altKey) {
  1045. last_category();
  1046. } else if (ev.shiftKey) {
  1047. last_feed();
  1048. } else {
  1049. const old_active = document.querySelector('.flux.current');
  1050. const last = document.querySelector('.flux:last-of-type');
  1051. if (last.classList.contains('flux')) {
  1052. toggleContent(last, old_active, false);
  1053. }
  1054. }
  1055. ev.preventDefault();
  1056. return;
  1057. }
  1058. if (ev.key === '?') {
  1059. window.location.href = context.urls.shortcuts.replace(/&amp;/g, '&');
  1060. return;
  1061. }
  1062. if (ev.altKey || ev.shiftKey) {
  1063. return;
  1064. }
  1065. if (k === s.mark_favorite) { // Toggle the favorite state
  1066. mark_favorite(document.querySelector('.flux.current'));
  1067. ev.preventDefault();
  1068. return;
  1069. }
  1070. if (k === s.go_website) {
  1071. if (context.auto_mark_site) {
  1072. mark_read(document.querySelector('.flux.current'), true, false);
  1073. }
  1074. const link_go_website = document.querySelector('.flux.current a.go_website');
  1075. if (link_go_website) {
  1076. window.open(link_go_website.href, '_blank', 'noopener');
  1077. ev.preventDefault();
  1078. }
  1079. return;
  1080. }
  1081. if (k === s.skip_next_entry) { next_entry(true); ev.preventDefault(); return; }
  1082. if (k === s.skip_prev_entry) { prev_entry(true); ev.preventDefault(); return; }
  1083. if (k === s.collapse_entry) { collapse_entry(); ev.preventDefault(); return; }
  1084. if (k === s.mylabels) { mylabels(); ev.preventDefault(); return; }
  1085. if (k === s.auto_share) { auto_share(); ev.preventDefault(); return; }
  1086. if (k === s.user_filter) { user_filter(); ev.preventDefault(); return; }
  1087. if (k === s.load_more) { load_more_posts(); ev.preventDefault(); return; }
  1088. if (k === s.close_dropdown) { location.hash = null; ev.preventDefault(); return; }
  1089. if (k === s.help) { window.open(context.urls.help); ev.preventDefault(); return; }
  1090. if (k === s.focus_search) { document.getElementById('search').focus(); ev.preventDefault(); return; }
  1091. if (k === s.normal_view) { delayedClick(document.querySelector('#nav_menu_views .view-normal')); ev.preventDefault(); return; }
  1092. if (k === s.reading_view) { delayedClick(document.querySelector('#nav_menu_views .view-reader')); ev.preventDefault(); return; }
  1093. if (k === s.global_view) { delayedClick(document.querySelector('#nav_menu_views .view-global')); ev.preventDefault(); return; }
  1094. if (k === s.toggle_media) { toggle_media(); ev.preventDefault(); }
  1095. });
  1096. }
  1097. function init_stream(stream) {
  1098. stream.onclick = function (ev) {
  1099. let el = ev.target.closest('.flux a.read');
  1100. if (el) {
  1101. mark_read(el.closest('.flux'), false, false);
  1102. return false;
  1103. }
  1104. el = ev.target.closest('.flux a.bookmark');
  1105. if (el) {
  1106. mark_favorite(el.closest('.flux'));
  1107. return false;
  1108. }
  1109. el = ev.target.closest('.item a.title');
  1110. if (el) { // Allow default control/command-click behaviour such as open in background-tab
  1111. return ev.ctrlKey || ev.metaKey;
  1112. }
  1113. el = ev.target.closest('.flux .content .text a');
  1114. if (el) {
  1115. if (!el.closest('div').classList.contains('author')) {
  1116. el.target = '_blank';
  1117. el.rel = 'noreferrer';
  1118. }
  1119. return true;
  1120. }
  1121. el = ev.target.closest('.item.labels a.dropdown-toggle');
  1122. if (el) {
  1123. return show_labels_menu(el);
  1124. }
  1125. el = ev.target.closest('.item.share a.dropdown-toggle');
  1126. if (el) {
  1127. return show_share_menu(el);
  1128. }
  1129. el = ev.target.closest('.item.share > button[data-type="print"]');
  1130. if (el) { // Print
  1131. const tmp_window = window.open();
  1132. for (let i = 0; i < document.styleSheets.length; i++) {
  1133. tmp_window.document.writeln('<link href="' + document.styleSheets[i].href + '" rel="stylesheet" type="text/css" />');
  1134. }
  1135. const flux_content = el.closest('.flux_content');
  1136. let content_el = null;
  1137. if (flux_content) {
  1138. content_el = el.closest('.flux_content').querySelector('.content');
  1139. }
  1140. if (content_el === null) {
  1141. content_el = el.closest('.flux').querySelector('.flux_content .content');
  1142. }
  1143. loadLazyImages(content_el);
  1144. tmp_window.document.writeln(content_el.innerHTML);
  1145. tmp_window.document.close();
  1146. tmp_window.focus();
  1147. tmp_window.print();
  1148. tmp_window.close();
  1149. return false;
  1150. }
  1151. el = ev.target.closest('.item.share > button[data-type="clipboard"]');
  1152. if (el) { // Clipboard
  1153. if (navigator.clipboard) {
  1154. navigator.clipboard.writeText(el.dataset.url)
  1155. .then(() => {
  1156. toggleClass(el, 'ok');
  1157. })
  1158. .catch(e => {
  1159. console.log(e);
  1160. toggleClass(el, 'error');
  1161. });
  1162. } else {
  1163. // fallback, if navigator.clipboard is not available f.e. if access is not via https or localhost
  1164. const inputElement = document.createElement('input');
  1165. inputElement.value = el.dataset.url;
  1166. document.body.appendChild(inputElement);
  1167. inputElement.select();
  1168. if (document.execCommand && document.execCommand('copy')) {
  1169. toggleClass(el, 'ok');
  1170. } else {
  1171. console.log('document.execCommand("copy") failed');
  1172. toggleClass(el, 'error');
  1173. }
  1174. inputElement.remove();
  1175. }
  1176. return false;
  1177. }
  1178. el = ev.target.closest('.item.share > button[data-type="web-sharing-api"]');
  1179. if (el && navigator.share) { // https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share
  1180. const shareData = {
  1181. url: el.dataset.url,
  1182. title: decodeURI(el.dataset.title),
  1183. };
  1184. navigator.share(shareData);
  1185. return false;
  1186. }
  1187. el = ev.target.closest('.item.share > a[data-type="email-webmail-firefox-fix"]');
  1188. if (el) {
  1189. window.open(el.href);
  1190. return false;
  1191. }
  1192. el = ev.target.closest('.item.share > a[href="POST"]');
  1193. if (el) { // Share by POST
  1194. const f = el.parentElement.querySelector('form');
  1195. f.disabled = false;
  1196. f.submit();
  1197. return false;
  1198. }
  1199. el = ev.target.closest('.flux_header, .flux_content');
  1200. if (el) { // flux_toggle
  1201. if (ev.target.closest('.reader, .content, .item.website, .item.link, .dropdown')) {
  1202. return true;
  1203. }
  1204. if ((!context.sides_close_article && ev.target.matches('.flux_content')) || ev.target.closest('footer')) {
  1205. // setting for not-closing after clicking outside article area
  1206. return false;
  1207. }
  1208. const old_active = document.querySelector('.flux.current');
  1209. const new_active = el.parentNode;
  1210. if (ev.target.tagName.toUpperCase() === 'A') { // Leave real links alone (but does not catch img in a link)
  1211. if (context.auto_mark_article) {
  1212. mark_read(new_active, true, false);
  1213. }
  1214. return true;
  1215. }
  1216. toggleContent(new_active, old_active, false);
  1217. return false;
  1218. }
  1219. };
  1220. stream.onmouseup = function (ev) { // Mouseup enables us to catch middle click, and control+click in IE/Edge
  1221. if (ev.altKey || ev.metaKey || ev.shiftKey) {
  1222. return;
  1223. }
  1224. let el = ev.target.closest('.item a.title');
  1225. if (el) {
  1226. if (ev.which == 1) {
  1227. if (ev.ctrlKey) { // Control+click
  1228. if (context.auto_mark_site) {
  1229. mark_read(el.closest('.flux'), true, false);
  1230. }
  1231. } else {
  1232. el.parentElement.click(); // Normal click, just toggle article.
  1233. }
  1234. } else if (ev.which == 2 && !ev.ctrlKey) { // Simple middle click: same behaviour as CTRL+click
  1235. if (context.auto_mark_article) {
  1236. const new_active = el.closest('.flux');
  1237. mark_read(new_active, true, false);
  1238. }
  1239. }
  1240. return;
  1241. }
  1242. if (context.auto_mark_site) {
  1243. // catch mouseup instead of click so we can have the correct behaviour
  1244. // with middle button click (scroll button).
  1245. el = ev.target.closest('.flux .link > a');
  1246. if (el) {
  1247. if (ev.which == 3) {
  1248. return;
  1249. }
  1250. mark_read(el.closest('.flux'), true, false);
  1251. }
  1252. }
  1253. };
  1254. stream.onchange = function (ev) {
  1255. const checkboxTag = ev.target.closest('.checkboxTag');
  1256. if (checkboxTag) { // Dynamic tags
  1257. ev.stopPropagation();
  1258. const tagId = checkboxTag.name.replace(/^t_/, '');
  1259. const tagName = checkboxTag.nextElementSibling ? checkboxTag.nextElementSibling.childNodes[0].value : '';
  1260. if ((tagId == 0 && tagName.length > 0) || tagId != 0) {
  1261. const isChecked = checkboxTag.checked;
  1262. const entry = checkboxTag.closest('div.flux');
  1263. const entryId = entry.id.replace(/^flux_/, '');
  1264. checkboxTag.disabled = true;
  1265. const req = new XMLHttpRequest();
  1266. req.open('POST', './?c=tag&a=tagEntry&ajax=1', true);
  1267. req.responseType = 'json';
  1268. req.onerror = function (e) {
  1269. checkboxTag.checked = !isChecked;
  1270. badAjax(this.status == 403);
  1271. };
  1272. req.onload = function (e) {
  1273. if (this.status != 200) {
  1274. return req.onerror(e);
  1275. }
  1276. if (entry.classList.contains('not_read')) {
  1277. incUnreadsTag('t_' + tagId, isChecked ? 1 : -1);
  1278. }
  1279. };
  1280. req.onloadend = function (e) {
  1281. checkboxTag.disabled = false;
  1282. if (tagId == 0) {
  1283. // new tag is added
  1284. forceReloadLabelsList = true;
  1285. loadDynamicTags(checkboxTag.closest('div.dropdown'));
  1286. } else {
  1287. // a tag was (un)checked
  1288. const dropdownmenu_current = ev.target.closest('.dropdown-menu');
  1289. const flux = ev.target.closest('.flux');
  1290. const dropdownmenu_all = flux.querySelectorAll('.dynamictags .dropdown-menu');
  1291. if (dropdownmenu_all.length > 1) {
  1292. // delete all other tag dropdown menus except the current one
  1293. dropdownmenu_all.forEach(
  1294. function (currentValue) {
  1295. if (currentValue !== dropdownmenu_current) {
  1296. currentValue.nextElementSibling.remove();
  1297. currentValue.parentNode.removeChild(currentValue);
  1298. }
  1299. }
  1300. );
  1301. }
  1302. }
  1303. };
  1304. req.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
  1305. req.send(JSON.stringify({
  1306. _csrf: context.csrf,
  1307. id_tag: tagId,
  1308. name_tag: tagId == 0 ? tagName : '',
  1309. id_entry: entryId,
  1310. checked: isChecked,
  1311. ajax: 1,
  1312. }));
  1313. }
  1314. }
  1315. };
  1316. }
  1317. function toggleClass(el, cssclass) {
  1318. el.classList.remove(cssclass);
  1319. el.dataset.foo = el.offsetWidth; // it does nothing, but it is needed. See https://github.com/FreshRSS/FreshRSS/pull/5295
  1320. el.classList.add(cssclass);
  1321. }
  1322. function init_nav_entries() {
  1323. const nav_entries = document.getElementById('nav_entries');
  1324. if (nav_entries) {
  1325. nav_entries.querySelector('.previous_entry').onclick = function (e) {
  1326. prev_entry(false);
  1327. return false;
  1328. };
  1329. nav_entries.querySelector('.next_entry').onclick = function (e) {
  1330. next_entry(false);
  1331. return false;
  1332. };
  1333. nav_entries.querySelector('.up').onclick = function (e) {
  1334. const active_item = (document.querySelector('.flux.current') || document.querySelector('.flux'));
  1335. const windowTop = document.scrollingElement.scrollTop;
  1336. const item_top = active_item.offsetParent.offsetTop + active_item.offsetTop;
  1337. const nav_menu = document.querySelector('.nav_menu');
  1338. let nav_menu_height = 0;
  1339. if (getComputedStyle(nav_menu).position === 'fixed' || getComputedStyle(nav_menu).position === 'sticky') {
  1340. nav_menu_height = nav_menu.offsetHeight;
  1341. }
  1342. document.scrollingElement.scrollTop = windowTop > item_top ? item_top - nav_menu_height : 0 - nav_menu_height;
  1343. return false;
  1344. };
  1345. }
  1346. }
  1347. // forceReloadLabelsList default is false, so that the list does need a reload after opening it a second time.
  1348. // will be set to true, if a new tag is added. Then the labels list will be reloaded each opening.
  1349. // purpose of this flag: minimize the network traffic.
  1350. let forceReloadLabelsList = false;
  1351. function loadDynamicTags(div) {
  1352. div.querySelectorAll('li.item').forEach(function (li) { li.remove(); });
  1353. const entryId = div.closest('div.flux').id.replace(/^flux_/, '');
  1354. const req = new XMLHttpRequest();
  1355. req.open('GET', './?c=tag&a=getTagsForEntry&id_entry=' + entryId, true);
  1356. req.responseType = 'json';
  1357. req.onerror = function (e) {
  1358. div.querySelectorAll('li.item').forEach(function (li) { li.remove(); });
  1359. };
  1360. req.onload = function (e) {
  1361. if (this.status != 200) {
  1362. return req.onerror(e);
  1363. }
  1364. const json = xmlHttpRequestJson(this);
  1365. if (!json) {
  1366. return req.onerror(e);
  1367. }
  1368. if (!context.anonymous) {
  1369. const li_item0 = document.createElement('li');
  1370. li_item0.setAttribute('class', 'item addItem');
  1371. const label = document.createElement('label');
  1372. label.setAttribute('class', 'noHover');
  1373. const input_checkboxTag = document.createElement('input');
  1374. input_checkboxTag.setAttribute('class', 'checkboxTag checkboxNewTag');
  1375. input_checkboxTag.setAttribute('name', 't_0');
  1376. input_checkboxTag.setAttribute('type', 'checkbox');
  1377. const input_newTag = document.createElement('input');
  1378. input_newTag.setAttribute('type', 'text');
  1379. input_newTag.setAttribute('name', 'newTag');
  1380. input_newTag.setAttribute('class', 'newTag');
  1381. input_newTag.setAttribute('list', 'datalist-labels');
  1382. input_newTag.addEventListener('keydown', function (ev) { if (ev.key.toUpperCase() == 'ENTER') { this.parentNode.previousSibling.click(); } });
  1383. const button_btn = document.createElement('button');
  1384. button_btn.setAttribute('type', 'button');
  1385. button_btn.setAttribute('class', 'btn');
  1386. button_btn.addEventListener('click', function () { this.parentNode.parentNode.click(); });
  1387. const text_plus = document.createTextNode('+');
  1388. const div_stick = document.createElement('div');
  1389. div_stick.setAttribute('class', 'stick');
  1390. button_btn.appendChild(text_plus);
  1391. div_stick.appendChild(input_newTag);
  1392. div_stick.appendChild(button_btn);
  1393. label.appendChild(input_checkboxTag);
  1394. label.appendChild(div_stick);
  1395. li_item0.appendChild(label);
  1396. div.querySelector('.dropdown-menu-scrollable').appendChild(li_item0);
  1397. }
  1398. let html = '';
  1399. let datalist = '';
  1400. if (json && json.length) {
  1401. let nbLabelsChecked = 0;
  1402. for (let i = 0; i < json.length; i++) {
  1403. const tag = json[i];
  1404. if (context.anonymous && !tag.checked) {
  1405. // In anomymous mode, show only the used tags
  1406. continue;
  1407. }
  1408. if (tag.checked) {
  1409. nbLabelsChecked++;
  1410. }
  1411. html += '<li class="item"><label><input ' +
  1412. (context.anonymous ? '' : 'class="checkboxTag" ') +
  1413. 'name="t_' + tag.id + '"type="checkbox" ' +
  1414. (context.anonymous ? 'disabled="disabled" ' : '') +
  1415. (tag.checked ? 'checked="checked" ' : '') + '/>' + tag.name + '</label></li>';
  1416. datalist += '<option value="' + tag.name + '"></option>';
  1417. }
  1418. if (context.anonymous && nbLabelsChecked === 0) {
  1419. html += '<li class="item"><span class="emptyLabels">' + context.i18n.labels_empty + '</span></li>';
  1420. }
  1421. }
  1422. div.querySelector('.dropdown-menu-scrollable').insertAdjacentHTML('beforeend', html);
  1423. const datalistLabels = document.getElementById('datalist-labels');
  1424. datalistLabels.innerHTML = ''; // clear before add the (updated) labels list
  1425. datalistLabels.insertAdjacentHTML('beforeend', datalist);
  1426. };
  1427. req.send();
  1428. }
  1429. // <actualize>
  1430. let feeds_processed = 0;
  1431. let categories_processed = 0;
  1432. let to_process = 0;
  1433. function refreshFeed(feeds, feeds_count) {
  1434. const feed = feeds.pop();
  1435. if (!feed) {
  1436. return;
  1437. }
  1438. const req = new XMLHttpRequest();
  1439. req.open('POST', feed.url, true);
  1440. req.onloadend = function (e) {
  1441. feeds_processed++;
  1442. if (this.status != 200) {
  1443. badAjax(false);
  1444. } else {
  1445. const div = document.getElementById('actualizeProgress');
  1446. div.querySelector('.progress').innerHTML = (categories_processed + feeds_processed) + ' / ' + to_process;
  1447. div.querySelector('.title').innerHTML = feed.title;
  1448. }
  1449. if (feeds_processed === feeds_count) {
  1450. // Empty request to commit new articles
  1451. const req2 = new XMLHttpRequest();
  1452. req2.open('POST', './?c=feed&a=actualize&id=-1&ajax=1', true);
  1453. req2.onloadend = function (e) {
  1454. delayedFunction(function () { location.reload(); });
  1455. };
  1456. req2.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
  1457. req2.send(JSON.stringify({
  1458. _csrf: context.csrf,
  1459. noCommit: 0,
  1460. }));
  1461. } else {
  1462. refreshFeed(feeds, feeds_count);
  1463. }
  1464. };
  1465. req.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
  1466. req.send(JSON.stringify({
  1467. _csrf: context.csrf,
  1468. noCommit: 1,
  1469. }));
  1470. }
  1471. function refreshFeeds(json) {
  1472. feeds_processed = 0;
  1473. if (!json.feeds || json.feeds.length === 0) {
  1474. // Empty request to commit new articles
  1475. const req2 = new XMLHttpRequest();
  1476. req2.open('POST', './?c=feed&a=actualize&id=-1&ajax=1', true);
  1477. req2.onloadend = function (e) {
  1478. context.ajax_loading = false;
  1479. };
  1480. req2.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
  1481. req2.send(JSON.stringify({
  1482. _csrf: context.csrf,
  1483. noCommit: 0,
  1484. }));
  1485. } else {
  1486. const feeds_count = json.feeds.length;
  1487. for (let i = context.nb_parallel_refresh; i > 0; i--) {
  1488. refreshFeed(json.feeds, feeds_count);
  1489. }
  1490. }
  1491. }
  1492. function refreshDynamicOpml(categories, categories_count, next) {
  1493. const category = categories.pop();
  1494. if (!category) {
  1495. return;
  1496. }
  1497. const req = new XMLHttpRequest();
  1498. req.open('POST', category.url, true);
  1499. req.onloadend = function (e) {
  1500. categories_processed++;
  1501. if (this.status != 200) {
  1502. badAjax(false);
  1503. } else {
  1504. const div = document.getElementById('actualizeProgress');
  1505. div.querySelector('.progress').innerHTML = (categories_processed + feeds_processed) + ' / ' + to_process;
  1506. div.querySelector('.title').innerHTML = category.title;
  1507. }
  1508. if (categories_processed === categories_count) {
  1509. if (next) { next(); }
  1510. } else {
  1511. refreshDynamicOpml(categories, categories_count, next);
  1512. }
  1513. };
  1514. req.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
  1515. req.send(JSON.stringify({
  1516. _csrf: context.csrf,
  1517. noCommit: 1,
  1518. }));
  1519. }
  1520. function refreshDynamicOpmls(json, next) {
  1521. categories_processed = 0;
  1522. if (json.categories && json.categories.length > 0) {
  1523. const categories_count = json.categories.length;
  1524. for (let i = context.nb_parallel_refresh; i > 0; i--) {
  1525. refreshDynamicOpml(json.categories, categories_count, next);
  1526. }
  1527. } else {
  1528. if (next) { next(); }
  1529. }
  1530. }
  1531. function init_actualize() {
  1532. let auto = false;
  1533. let nbCategoriesFirstRound = 0;
  1534. let skipCategories = false;
  1535. const actualize = document.getElementById('actualize');
  1536. if (!actualize) {
  1537. return;
  1538. }
  1539. actualize.onclick = function () {
  1540. if (context.ajax_loading) {
  1541. return false;
  1542. }
  1543. context.ajax_loading = true;
  1544. const req = new XMLHttpRequest();
  1545. req.open('POST', './?c=javascript&a=actualize', true);
  1546. req.responseType = 'json';
  1547. req.onload = function (e) {
  1548. if (this.status != 200) {
  1549. return badAjax(false);
  1550. }
  1551. const json = xmlHttpRequestJson(this);
  1552. if (!json) {
  1553. return badAjax(false);
  1554. }
  1555. if (auto && json.categories.length < 1 && json.feeds.length < 1) {
  1556. auto = false;
  1557. context.ajax_loading = false;
  1558. return false;
  1559. }
  1560. to_process = json.categories.length + json.feeds.length + nbCategoriesFirstRound;
  1561. if (json.categories.length + json.feeds.length > 0 && !document.getElementById('actualizeProgress')) {
  1562. document.body.insertAdjacentHTML('beforeend', '<div id="actualizeProgress" class="notification good">' +
  1563. json.feedback_actualize + '<br /><span class="title">/</span><br /><span class="progress">0 / ' +
  1564. to_process + '</span></div>');
  1565. } else {
  1566. openNotification(json.feedback_no_refresh, 'good');
  1567. }
  1568. if (json.categories.length > 0 && !skipCategories) {
  1569. skipCategories = true; // To avoid risk of infinite loop
  1570. nbCategoriesFirstRound = json.categories.length;
  1571. // If some dynamic OPML categories are refreshed, need to reload the list of feeds before updating them
  1572. refreshDynamicOpmls(json, () => {
  1573. context.ajax_loading = false;
  1574. actualize.click();
  1575. });
  1576. } else {
  1577. refreshFeeds(json);
  1578. }
  1579. };
  1580. req.setRequestHeader('Content-Type', 'application/json; charset=utf-8');
  1581. req.send(JSON.stringify({
  1582. _csrf: context.csrf,
  1583. }));
  1584. return false;
  1585. };
  1586. if (context.auto_actualize_feeds) {
  1587. auto = true;
  1588. actualize.click();
  1589. }
  1590. }
  1591. // </actualize>
  1592. // <notification>
  1593. let notification = null;
  1594. let notification_interval = null;
  1595. let notification_working = false;
  1596. function openNotification(msg, status) {
  1597. if (notification_working === true) {
  1598. return false;
  1599. }
  1600. notification_working = true;
  1601. notification.querySelector('.msg').innerHTML = msg;
  1602. notification.className = 'notification';
  1603. notification.classList.add(status);
  1604. if (status == 'good') {
  1605. notification_interval = setTimeout(closeNotification, 4000);
  1606. } else {
  1607. // no status or f.e. status = 'bad', give some more time to read
  1608. notification_interval = setTimeout(closeNotification, 8000);
  1609. }
  1610. }
  1611. function closeNotification() {
  1612. notification.classList.add('closed');
  1613. clearInterval(notification_interval);
  1614. notification_working = false;
  1615. }
  1616. function init_notifications() {
  1617. notification = document.getElementById('notification');
  1618. notification.querySelector('.close').addEventListener('click', function (ev) {
  1619. closeNotification();
  1620. ev.preventDefault();
  1621. return false;
  1622. });
  1623. notification.addEventListener('mouseenter', function () {
  1624. clearInterval(notification_interval);
  1625. });
  1626. notification.addEventListener('mouseleave', function () {
  1627. notification_interval = setTimeout(closeNotification, 3000);
  1628. });
  1629. if (notification.querySelector('.msg').innerHTML.length > 0) {
  1630. notification_working = true;
  1631. if (notification.classList.contains('good')) {
  1632. notification_interval = setTimeout(closeNotification, 4000);
  1633. } else {
  1634. // no status or f.e. status = 'bad', give some more time to read
  1635. notification_interval = setTimeout(closeNotification, 8000);
  1636. }
  1637. }
  1638. }
  1639. // </notification>
  1640. // <notifs html5>
  1641. let notifs_html5_permission = 'denied';
  1642. function notifs_html5_is_supported() {
  1643. return window.Notification !== undefined;
  1644. }
  1645. function notifs_html5_ask_permission() {
  1646. try {
  1647. window.Notification.requestPermission(function () {
  1648. notifs_html5_permission = window.Notification.permission;
  1649. });
  1650. } catch (e) {
  1651. }
  1652. }
  1653. function notifs_html5_show(nb, nb_new) {
  1654. if (notifs_html5_permission !== 'granted') {
  1655. return;
  1656. }
  1657. try {
  1658. const notification = new window.Notification(context.i18n.notif_title_articles, {
  1659. icon: '../themes/icons/favicon-256-padding.png',
  1660. body: context.i18n.notif_body_new_articles.replace('%%d', nb_new) + ' ' + context.i18n.notif_body_unread_articles.replace('%%d', nb),
  1661. tag: 'freshRssNewArticles',
  1662. });
  1663. notification.onclick = function () {
  1664. delayedFunction(function () {
  1665. location.reload();
  1666. window.focus();
  1667. notification.close();
  1668. });
  1669. };
  1670. if (context.html5_notif_timeout !== 0) {
  1671. setTimeout(function () {
  1672. notification.close();
  1673. }, context.html5_notif_timeout * 1000);
  1674. }
  1675. } catch (e) {
  1676. }
  1677. }
  1678. function init_notifs_html5() {
  1679. if (!notifs_html5_is_supported()) {
  1680. return;
  1681. }
  1682. notifs_html5_permission = notifs_html5_ask_permission();
  1683. }
  1684. // </notifs html5>
  1685. function refreshUnreads() {
  1686. const req = new XMLHttpRequest();
  1687. req.open('GET', './?c=javascript&a=nbUnreadsPerFeed', true);
  1688. req.responseType = 'json';
  1689. req.onload = function (e) {
  1690. const json = xmlHttpRequestJson(this);
  1691. if (!json) {
  1692. return badAjax(false);
  1693. }
  1694. const isAll = document.querySelector('.category.all.active');
  1695. let new_articles = false;
  1696. let nbUnreadFeeds = 0;
  1697. const title = document.querySelector('.category.all .title');
  1698. const nb_unreads_before = title ? str2int(title.getAttribute('data-unread')) : 0;
  1699. Object.keys(json.feeds).forEach(function (feed_id) {
  1700. const nbUnreads = json.feeds[feed_id];
  1701. nbUnreadFeeds += nbUnreads;
  1702. feed_id = 'f_' + feed_id;
  1703. const elem = document.getElementById(feed_id);
  1704. const feed_unreads = elem ? str2int(elem.getAttribute('data-unread')) : 0;
  1705. if ((incUnreadsFeed(null, feed_id, nbUnreads - feed_unreads) || isAll) && // Update of current view?
  1706. (nbUnreads - feed_unreads > 0)) {
  1707. const newArticle = document.getElementById('new-article');
  1708. newArticle.removeAttribute('hidden');
  1709. newArticle.style.display = 'block';
  1710. new_articles = true;
  1711. }
  1712. });
  1713. const noArticlesToShow_div = document.getElementById('noArticlesToShow');
  1714. if (nbUnreadFeeds > 0 && noArticlesToShow_div) {
  1715. noArticlesToShow_div.classList.add('hide');
  1716. }
  1717. let nbUnreadTags = 0;
  1718. Object.keys(json.tags).forEach(function (tag_id) {
  1719. const nbUnreads = json.tags[tag_id];
  1720. nbUnreadTags += nbUnreads;
  1721. const tag = document.getElementById('t_' + tag_id);
  1722. if (tag) {
  1723. tag.setAttribute('data-unread', nbUnreads);
  1724. tag.querySelector('.item-title').setAttribute('data-unread', numberFormat(nbUnreads));
  1725. }
  1726. });
  1727. const tags = document.querySelector('.category.tags');
  1728. if (tags) {
  1729. tags.setAttribute('data-unread', nbUnreadTags);
  1730. tags.querySelector('.title').setAttribute('data-unread', numberFormat(nbUnreadTags));
  1731. }
  1732. const nb_unreads = title ? str2int(title.getAttribute('data-unread')) : 0;
  1733. if (nb_unreads > 0 && new_articles) {
  1734. faviconNbUnread(nb_unreads);
  1735. const nb_new = nb_unreads - nb_unreads_before;
  1736. notifs_html5_show(nb_unreads, nb_new);
  1737. }
  1738. };
  1739. req.send();
  1740. }
  1741. function toggle_bigMarkAsRead_button() {
  1742. const bigMarkAsRead_button = document.getElementById('bigMarkAsRead');
  1743. if (bigMarkAsRead_button) {
  1744. if (document.querySelector('.flux.not_read') != null) {
  1745. bigMarkAsRead_button.style = '';
  1746. bigMarkAsRead_button.querySelector('.markAllRead').style.visibility = '';
  1747. } else {
  1748. if (bigMarkAsRead_button.querySelector('.jumpNext')) {
  1749. bigMarkAsRead_button.querySelector('.markAllRead').style.visibility = 'hidden';
  1750. } else {
  1751. bigMarkAsRead_button.querySelector('.markAllRead').style.visibility = '';
  1752. bigMarkAsRead_button.style.visibility = 'hidden';
  1753. }
  1754. }
  1755. }
  1756. }
  1757. // <endless_mode>
  1758. let url_load_more = '';
  1759. let load_more = false;
  1760. let box_load_more = null;
  1761. function remove_existing_posts() {
  1762. document.querySelectorAll('.flux, .day').forEach(function (div) {
  1763. div.remove();
  1764. });
  1765. }
  1766. function load_more_posts() {
  1767. if (load_more || !url_load_more || !box_load_more) {
  1768. return;
  1769. }
  1770. load_more = true;
  1771. document.getElementById('load_more').classList.add('loading');
  1772. const req = new XMLHttpRequest();
  1773. req.open('GET', url_load_more, true);
  1774. req.responseType = 'document';
  1775. req.onload = function (e) {
  1776. if (context.sort === 'rand') {
  1777. document.scrollingElement.scrollTop = 0;
  1778. remove_existing_posts();
  1779. }
  1780. const html = this.response;
  1781. const streamFooter = document.getElementById('stream-footer');
  1782. const streamAdopted = document.adoptNode(html.getElementById('stream'));
  1783. streamAdopted.querySelectorAll('.flux, .day').forEach(function (div) {
  1784. box_load_more.insertBefore(div, streamFooter);
  1785. });
  1786. const streamFooterOld = streamFooter.querySelector('.stream-footer-inner');
  1787. const streamFooterNew = streamAdopted.querySelector('.stream-footer-inner');
  1788. streamFooter.replaceChild(streamFooterNew, streamFooterOld);
  1789. const bigMarkAsRead = document.getElementById('bigMarkAsRead');
  1790. const readAll = document.querySelector('#nav_menu_read_all .read_all');
  1791. if (readAll && bigMarkAsRead && bigMarkAsRead.formAction) {
  1792. if (context.display_order === 'ASC') {
  1793. readAll.formAction = bigMarkAsRead.formAction;
  1794. } else {
  1795. bigMarkAsRead.formAction = readAll.formAction;
  1796. }
  1797. toggle_bigMarkAsRead_button();
  1798. }
  1799. document.querySelectorAll('[id^=day_]').forEach(function (div) {
  1800. const ids = document.querySelectorAll('[id="' + div.id + '"]');
  1801. for (let i = ids.length - 1; i > 0; i--) { // Keep only the first
  1802. ids[i].remove();
  1803. }
  1804. });
  1805. init_load_more(box_load_more);
  1806. const div_load_more = document.getElementById('load_more');
  1807. if (bigMarkAsRead) {
  1808. bigMarkAsRead.removeAttribute('disabled');
  1809. }
  1810. if (div_load_more) {
  1811. div_load_more.classList.remove('loading');
  1812. }
  1813. load_more = false;
  1814. };
  1815. req.send();
  1816. }
  1817. const freshrssLoadMoreEvent = document.createEvent('Event');
  1818. freshrssLoadMoreEvent.initEvent('freshrss:load-more', true, true);
  1819. function init_load_more(box) {
  1820. box_load_more = box;
  1821. document.body.dispatchEvent(freshrssLoadMoreEvent);
  1822. const next_button = document.getElementById('load_more');
  1823. if (!next_button) {
  1824. // no more article to load
  1825. url_load_more = '';
  1826. return;
  1827. }
  1828. url_load_more = next_button.getAttribute('formaction');
  1829. next_button.onclick = function (e) {
  1830. load_more_posts();
  1831. return false;
  1832. };
  1833. }
  1834. // </endless_mode>
  1835. function init_confirm_action() {
  1836. document.body.onclick = function (ev) {
  1837. const b = ev.target.closest('.confirm');
  1838. if (b) {
  1839. let str_confirmation = this.getAttribute('data-str-confirm');
  1840. if (!str_confirmation) {
  1841. str_confirmation = context.i18n.confirmation_default;
  1842. }
  1843. return confirm(str_confirmation);
  1844. }
  1845. };
  1846. document.querySelectorAll('button.confirm').forEach(function (b) { b.disabled = false; });
  1847. }
  1848. function faviconNbUnread(n) {
  1849. if (typeof n === 'undefined') {
  1850. const t = document.querySelector('.category.all .title');
  1851. n = t ? str2int(t.getAttribute('data-unread')) : 0;
  1852. }
  1853. // http://remysharp.com/2010/08/24/dynamic-favicons/
  1854. const canvas = document.createElement('canvas');
  1855. const link = document.getElementById('favicon').cloneNode(true);
  1856. const ratio = window.devicePixelRatio;
  1857. if (canvas.getContext && link) {
  1858. canvas.height = canvas.width = 16 * ratio;
  1859. const img = document.createElement('img');
  1860. img.onload = function () {
  1861. const ctx = canvas.getContext('2d');
  1862. ctx.drawImage(this, 0, 0, canvas.width, canvas.height);
  1863. if (n > 0) {
  1864. let text = '';
  1865. if (n < 1000) {
  1866. text = n;
  1867. } else if (n < 100000) {
  1868. text = Math.floor(n / 1000) + 'k';
  1869. } else {
  1870. text = 'E' + Math.floor(Math.log10(n));
  1871. }
  1872. ctx.font = 'bold ' + 9 * ratio + 'px "Arial", sans-serif';
  1873. ctx.fillStyle = 'rgba(255, 255, 255, 0.8)';
  1874. ctx.fillRect(0, 7 * ratio, ctx.measureText(text).width, 9 * ratio);
  1875. ctx.fillStyle = '#F00';
  1876. ctx.fillText(text, 0, canvas.height - 1);
  1877. }
  1878. link.href = canvas.toDataURL('image/png');
  1879. // Check if data URI has generated a real favicon and if not, fallback to standard icon
  1880. if (link.href.length > 180) {
  1881. document.querySelector('link[rel~=icon]').remove();
  1882. document.head.appendChild(link);
  1883. }
  1884. };
  1885. img.src = '../favicon.ico';
  1886. }
  1887. }
  1888. function removeFirstLoadSpinner() {
  1889. const first_load = document.getElementById('first_load');
  1890. if (first_load) {
  1891. first_load.remove();
  1892. }
  1893. }
  1894. function init_normal() {
  1895. const stream = document.getElementById('stream');
  1896. if (!stream) {
  1897. if (window.console) {
  1898. console.log('FreshRSS waiting for content…');
  1899. }
  1900. setTimeout(init_normal, 100);
  1901. return;
  1902. }
  1903. init_column_categories();
  1904. init_stream(stream);
  1905. init_actualize();
  1906. faviconNbUnread();
  1907. window.onbeforeunload = function (e) {
  1908. const sidebar = document.getElementById('sidebar');
  1909. if (sidebar) { // Save sidebar scroll position
  1910. sessionStorage.setItem('FreshRSS_sidebar_scrollTop', sidebar.scrollTop);
  1911. }
  1912. if (mark_read_queue && mark_read_queue.length > 0) {
  1913. return false;
  1914. }
  1915. };
  1916. }
  1917. function init_main_beforeDOM() {
  1918. history.scrollRestoration = 'manual';
  1919. document.scrollingElement.scrollTop = 0;
  1920. init_shortcuts();
  1921. if (['normal', 'reader', 'global'].indexOf(context.current_view) >= 0) {
  1922. init_normal();
  1923. }
  1924. }
  1925. function init_main_afterDOM() {
  1926. removeFirstLoadSpinner();
  1927. init_notifications();
  1928. init_confirm_action();
  1929. const stream = document.getElementById('stream');
  1930. if (stream) {
  1931. init_load_more(stream);
  1932. init_posts();
  1933. if (document.getElementById('new-article')) {
  1934. // Only relevant for interactive views
  1935. init_nav_entries();
  1936. init_notifs_html5();
  1937. toggle_bigMarkAsRead_button();
  1938. setTimeout(faviconNbUnread, 1000);
  1939. setInterval(refreshUnreads, 120000);
  1940. }
  1941. }
  1942. if (window.console) {
  1943. console.log('FreshRSS main init done.');
  1944. }
  1945. }
  1946. init_main_beforeDOM(); // Can be called before DOM is fully loaded
  1947. if (document.readyState && document.readyState !== 'loading') {
  1948. init_main_afterDOM();
  1949. } else {
  1950. if (window.console) {
  1951. console.log('FreshRSS waiting for DOMContentLoaded…');
  1952. }
  1953. document.addEventListener('DOMContentLoaded', init_main_afterDOM, false);
  1954. }
  1955. // @license-end