aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/office365-owa/webview.js
blob: b897c8d4083623c48080099c9986df09226baf95 (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
35
36
37
38
module.exports = (Ferdi, settings) => {
  const collectCounts = (selector) => {
    let unreadCount = 0;
    const foldersElement = document.querySelector(selector);
    if (foldersElement) {
      const allScreenReaders = foldersElement.querySelectorAll('span.screenReaderOnly');
      for (const child of allScreenReaders) {
        if (child.previousSibling) {
          unreadCount += Ferdi.safeParseInt(child.previousSibling.innerText);
        }
      }
    }
    return unreadCount;
  };

  const getMessages = () => {
    let directUnreadCount = 0;
    let indirectUnreadCount = 0;

    if (location.pathname.match(/\/owa/)) {
      // classic app
      directUnreadCount = Ferdi.safeParseInt(jQuery("span[title*='Inbox'] + div > span").first().text());
    } else {
      // new app
      if (settings.onlyShowFavoritesInUnreadCount === true) {
        directUnreadCount = collectCounts('div[role=tree]:nth-child(2)'); // favorites
      } else {
        directUnreadCount = collectCounts('div[role=tree]:nth-child(3)'); // folders
      }

      indirectUnreadCount = collectCounts('div[role=tree]:nth-child(4)'); // groups
    }

    Ferdi.setBadge(directUnreadCount, indirectUnreadCount);
  }

  Ferdi.loop(getMessages);
};