aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/tt-rss
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/tt-rss')
-rw-r--r--recipes/tt-rss/index.js2
-rw-r--r--recipes/tt-rss/package.json2
-rw-r--r--recipes/tt-rss/webview.js50
3 files changed, 30 insertions, 24 deletions
diff --git a/recipes/tt-rss/index.js b/recipes/tt-rss/index.js
index 3b384eb..dd41f72 100644
--- a/recipes/tt-rss/index.js
+++ b/recipes/tt-rss/index.js
@@ -1,3 +1 @@
1"use strict";
2
3module.exports = Ferdium => Ferdium; module.exports = Ferdium => Ferdium;
diff --git a/recipes/tt-rss/package.json b/recipes/tt-rss/package.json
index a2fff77..ebc04e8 100644
--- a/recipes/tt-rss/package.json
+++ b/recipes/tt-rss/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "tt-rss", 2 "id": "tt-rss",
3 "name": "Tiny Tiny RSS", 3 "name": "Tiny Tiny RSS",
4 "version": "1.2.0", 4 "version": "1.3.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "hasCustomUrl": true 7 "hasCustomUrl": true
diff --git a/recipes/tt-rss/webview.js b/recipes/tt-rss/webview.js
index 7d90615..e0581ce 100644
--- a/recipes/tt-rss/webview.js
+++ b/recipes/tt-rss/webview.js
@@ -1,24 +1,22 @@
1"use strict"; 1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
2 6
3module.exports = Ferdium => { 7module.exports = Ferdium => {
4 const _notificationCategory = new URL(window.location.href).searchParams.get("ferdiumNotificationCategory"); 8 const _notificationCategory = new URL(window.location.href).searchParams.get(
5 9 'ferdiumNotificationCategory',
6 const getMessages = function getMessages() { 10 );
7 if (_notificationCategory) {
8 countMessagesUnderCategory(_notificationCategory);
9 } else {
10 countMessages();
11 }
12 };
13 11
14 const countMessagesUnderCategory = (notificationCategory) => { 12 const countMessagesUnderCategory = notificationCategory => {
15 var elements = document.querySelectorAll(".dijitTreeIsRoot") 13 const elements = document.querySelectorAll('.dijitTreeIsRoot');
16 var directMessages = 0; 14 let directMessages = 0;
17 var indirectMessages = 0; 15 let indirectMessages = 0;
18 for (var element of elements) { 16 for (const element of elements) {
19 var label = element.querySelectorAll(".dijitTreeLabel")[0]; 17 const label = element.querySelectorAll('.dijitTreeLabel')[0];
20 var unreadNode = element.querySelectorAll(".unread")[0]; 18 const unreadNode = element.querySelectorAll('.unread')[0];
21 var unreadAmount = Ferdium.safeParseInt(unreadNode.textContent); 19 const unreadAmount = Ferdium.safeParseInt(unreadNode.textContent);
22 if (label.textContent === notificationCategory) { 20 if (label.textContent === notificationCategory) {
23 directMessages += unreadAmount; 21 directMessages += unreadAmount;
24 } else { 22 } else {
@@ -29,18 +27,28 @@ module.exports = Ferdium => {
29 }; 27 };
30 28
31 const _countMessagesFromTitle = () => { 29 const _countMessagesFromTitle = () => {
32 var match = document.title.match(/^\((\d+)\) Tiny Tiny RSS$/); 30 const match = document.title.match(/^\((\d+)\) Tiny Tiny RSS$/);
33 var count = match != null && match.length > 0 ? match[1] : 0; 31 const count = match !== null && match.length > 0 ? match[1] : 0;
34 return Ferdium.safeParseInt(count); 32 return Ferdium.safeParseInt(count);
35 } 33 };
36 34
37 const countMessages = () => { 35 const countMessages = () => {
38 Ferdium.setBadge(_countMessagesFromTitle()); 36 Ferdium.setBadge(_countMessagesFromTitle());
39 }; 37 };
40 38
39 const getMessages = function getMessages() {
40 if (_notificationCategory) {
41 countMessagesUnderCategory(_notificationCategory);
42 } else {
43 countMessages();
44 }
45 };
46
41 const loopFunc = () => { 47 const loopFunc = () => {
42 getMessages(); 48 getMessages();
43 }; 49 };
44 50
45 Ferdium.loop(loopFunc); 51 Ferdium.loop(loopFunc);
52
53 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
46}; 54};