aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/slite/webview.js
blob: d892c3cc420b8bee710f71183ce6d8d086aab3c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const getInnerInt = selector => {
  const element = document.querySelector(selector);
  return element && parseInt(element.innerText);
};

module.exports = Ferdi => {
  const getMessages = function getMessages() {
    const direct = (
      getInnerInt("#app button[data-test-id='notificationsCount']") || 0
    );

    Ferdi.setBadge(direct);
  };

  Ferdi.loop(getMessages);
};