aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/disqus/webview.js
blob: fcdd38619488a22c9cae299c03fd544562738ed7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module.exports = Ferdi => {
  const getInnerInt = selector => {
    const element = document.querySelector(selector);
    return element && Ferdi.safeParseInt(element.textContent);
  };

  const getMessages = () => {
    const direct =
      getInnerInt("header div[data-role='unread-notification-count']") ||
      getInnerInt('a.has-notifs div.notif-count') ||
      0;

    Ferdi.setBadge(direct);
  };

  Ferdi.loop(getMessages);
};