aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/office365-owa/webview.js
blob: ae21e1943959d2b769c6357f286a163ec751bb9b (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
'use strict';

module.exports = Franz => {
  const getMessages = function getMessages() {
    let unreadMail = 0;

    if (location.pathname.match(/\/owa/)) {
      // classic app
      unreadMail = parseInt(
        jQuery("span[title*='Inbox'] + div > span")
          .first()
          .text(),
        10
      );
    } else {
      // new app
      const folders = document.querySelector('div[title="Folders"]');
      if (!folders) {
        return;
      }

      unreadMail = [...folders.parentNode.parentNode.children].reduce((count, child) => {
        const unread = child.querySelector('.screenReaderOnly');
        return unread && unread.textContent === 'unread'
          ? count + parseInt(unread.previousSibling.textContent, 10)
          : count;
      }, 0);
    }

    Franz.setBadge(unreadMail);
  };
  Franz.loop(getMessages);
};