aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/erepublik/webview.js
blob: f2e2bde86c9df2497d6900aa16716afaac533728 (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
30
31
32
33
function _interopRequireDefault(obj) {
  return obj && obj.__esModule ? obj : { default: obj };
}

const _path = _interopRequireDefault(require('path'));

module.exports = Ferdium => {
  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 += Ferdium.safeParseInt(splitText[1]);
    }

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

    Ferdium.setBadge(countNotify, countFeed);
  };

  Ferdium.loop(getMessages);

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