aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/erepublik/webview.js
blob: 2f5bc9f55b4b228204e2993a3f39dd1a3fa1a0f2 (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 = 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'));
};