aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextdoor/webview.js
blob: 809e368d364bb22786fe02416a10fa38dc705f7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = Ferdi => {
  const getMessages = () => {
    let unread = 0;
    const notificationBadge = document.querySelectorAll(
      '.notification-badge',
    )[0];
    if (notificationBadge != undefined) {
      unread = Ferdi.safeParseInt(notificationBadge.textContent);
    }
    Ferdi.setBadge(unread);
  };

  Ferdi.loop(getMessages);
};