aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/wire/webview.js
blob: b099eeebac0762b5a41f9e0e84606f6781e59829 (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
34
module.exports = (Ferdi) => {
  function getMessages() {
    let direct = 0;
    let indirect = 0;

    // Count how many people/groups have texted you
    const conversationElems = document.querySelectorAll('[data-uie-name="conversation-folder-badge"]');
    if (conversationElems) {
      for (const conversationElem of conversationElems) {
        direct += Ferdi.safeParseInt(conversationElem.innerText);
      }
    }

    // Count unread pending user requests
    const pendingElem = document.querySelector('[data-uie-name="item-pending-requests"]');
    if (pendingElem) {
      const matches = pendingElem.innerText.match(/^([1-9][0-9]*)/);
      if (matches && matches.length > 1) {
        indirect += Ferdi.safeParseInt(matches[1]);
      }
    }

    // Alternative would be to count all messages (unread conversation count + pending) from the header
    // const titleElem = document.querySelector('head title');
    // const matches = titleElem.innerText.match(/^\(([1-9][0-9]*)\)/);
    // if (matches) {
    // 	direct = matches[1];
    // }

    Ferdi.setBadge(direct, indirect);
  }

  Ferdi.loop(getMessages);
};