aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/icq/webview.js
blob: e782eb4bc364cf2f730bbb4e6896b01614999b92 (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 = Ferdi => {
  const getMessages = () => {
    let directs = 0;
    const elements = document.querySelectorAll(
      '.nwa-msg-counter.icq-recent_state-read',
    );
    for (const element of elements) {
      if (
        Ferdi.safeParseInt(
          element.textContent && element.textContent.replace(/[^\d.]/g, ''),
        ) > 0
      ) {
        directs += 1; // count 1 per channel with messages
      }
    }

    Ferdi.setBadge(directs);
  };

  Ferdi.loop(getMessages);
};