aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/icq/webview.js
blob: c0ba8e9d818e52d60d04741db09fc1e291f2d827 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module.exports = Ferdium => {
  const getMessages = () => {
    let directs = 0;
    const elements = document.querySelectorAll(
      '.nwa-msg-counter.icq-recent_state-read',
    );
    for (const element of elements) {
      if (
        Ferdium.safeParseInt(
          element.textContent && element.textContent.replace(/[^\d.]/g, ''),
        ) > 0
      ) {
        directs += 1; // count 1 per channel with messages
      }
    }

    Ferdium.setBadge(directs);
  };

  Ferdium.loop(getMessages);
};