aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/feedly/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/feedly/webview.js')
-rw-r--r--recipes/feedly/webview.js15
1 files changed, 13 insertions, 2 deletions
diff --git a/recipes/feedly/webview.js b/recipes/feedly/webview.js
index b4887bc..6f46d8e 100644
--- a/recipes/feedly/webview.js
+++ b/recipes/feedly/webview.js
@@ -1,3 +1,9 @@
1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
1module.exports = Ferdium => { 7module.exports = Ferdium => {
2 const getMessages = () => { 8 const getMessages = () => {
3 const newsDOM = document.querySelectorAll( 9 const newsDOM = document.querySelectorAll(
@@ -7,13 +13,18 @@ module.exports = Ferdium => {
7 let counter = 0; 13 let counter = 0;
8 14
9 if (newsDOM && newsDOM.length > 0) { 15 if (newsDOM && newsDOM.length > 0) {
10 const textContent = newsDOM[0].textContent; 16 const { textContent } = newsDOM[0];
11 17
12 counter = textContent.includes('K') || textContent.includes('+') ? `${textContent.slice(0, Math.max(0, textContent.indexOf('K')))}000` : Ferdium.safeParseInt(textContent); 18 counter =
19 textContent.includes('K') || textContent.includes('+')
20 ? `${textContent.slice(0, Math.max(0, textContent.indexOf('K')))}000`
21 : Ferdium.safeParseInt(textContent);
13 } 22 }
14 23
15 Ferdium.setBadge(counter); 24 Ferdium.setBadge(counter);
16 }; 25 };
17 26
18 Ferdium.loop(getMessages); 27 Ferdium.loop(getMessages);
28
29 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
19}; 30};