aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/simplenote/webview.js
blob: b4180e4ef8f7d74b2233cede3d246484271fea6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = Ferdium => {
  const getMessages = () => {
    let count = 0;

    if (window.location.pathname.includes('messaging')) {
      count = document.querySelectorAll(
        '.msg-conversation-card__unread-count',
      ).length;
    } else {
      const element = document.querySelector(
        '.nav-item--messaging .nav-item__badge-count',
      );
      if (element) {
        count = Ferdium.safeParseInt(element.textContent);
      }
    }

    Ferdium.setBadge(count);
  };

  Ferdium.loop(getMessages);
};