aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/erepublik/webview.js
blob: a47c57d3e9e3ca43368a97ac5769df58de85dab0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const _path = _interopRequireDefault(require('path'));

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

module.exports = Ferdi => {
  const getMessages = () => {
    const elementNotify = document.querySelectorAll('.notify');
    const elementFeed = document.querySelectorAll('.unreadCounter.ng-binding.ng-scope');

    let countNotify = 0;
    let countFeed = 0;

    for (const element of elementNotify) {
      const splitText = element.title.split(':');
      countNotify += Ferdi.safeParseInt(splitText[1]);
    }

    for (const element of elementFeed) {
      countFeed += Ferdi.safeParseInt(element.textContent);
    }

    Ferdi.setBadge(countNotify, countFeed);
  };

  Ferdi.loop(getMessages);

  Ferdi.injectCSS(_path.default.join(__dirname, 'service.css'));
  Ferdi.injectCSS(_path.default.join(__dirname, 'crpk-resources/fonts.css'));
};