aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/tt-rss/webview.js
blob: 3e3a0d3878e649e82d01e9e2d311b593dc0b0fe9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"use strict";

module.exports = Ferdium => {
  const getMessages = function getMessages() {
    // Initialize empty vars
    var unread = 0;
    var match = [];
    // Extract the number from the title
    match = document.title.match(/^\((\d+)\) Tiny Tiny RSS$/);
    // Some logic to handle the match groups
    unread = match != null && match.length > 0 ? match[1] : 0;
    // Set unread msgs badge
    Ferdium.setBadge(Number.parseInt(unread, 10));
  };

  const loopFunc = () => {
    getMessages();
  };

  Ferdium.loop(loopFunc);
};