aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/elk/webview.js
blob: f284fd36ada763277ca5e2b1230e8513b513363a (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
const _path = _interopRequireDefault(require('path'));

function _interopRequireDefault(obj) {
  return obj && obj.__esModule ? obj : { default: obj };
}

module.exports = (Ferdium) => {
  // Inject css
  Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));

  // Get notifications
  Ferdium.loop(() => {
    const notifications = document.querySelectorAll("[href$=notifications]").item(0);
    // Null if not present
    if (!notifications) {
      return;
    }
    // Assume first element contains the number of notifications
    let parsedValue = Ferdium.safeParseInt(notifications.outerText);
    // Set to parsed value
    Ferdium.setBadge(parsedValue);
  });
}