aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/mysms/webview.js
blob: 1878120040a1103cf79003c455a50f9b116623cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = Ferdi => {
  const getMessages = () => {
    const elements = document.querySelectorAll('.unread');

    let count = 0;
    for (const element of elements) {
      if (
        Ferdi.safeParseInt(
          element.textContent && element.textContent.replace(/[^\d.]/g, ''),
        ) > 0
      ) {
        count++; // count 1 per channel with messages
      }
    }

    Ferdi.setBadge(count);
  };

  Ferdi.loop(getMessages);
};