aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/kimaicloud/webview.js
blob: f4e2e9fca62d4c557f6952470c5ba17f768bae0d (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
24
25
26
module.exports = (Ferdi) => {
  const getMessages = function getMessages() {
    let count = 0;

    // get amount of running timesheets
    const label = document.querySelector('.main-header .navbar .dropdown.messages-menu .ticktac span.label');
    if (label !== undefined) {
      count = label.textContent;
    }

    // set Ferdi badge
    Ferdi.setBadge(count);
  };

  document.addEventListener('click', (e) => {
    const { tagName, target, href } = e.target;

    if (tagName === 'A' && target === '_blank') {
      e.preventDefault();
      e.stopImmediatePropagation();
      window.open(href);
    }
  });

  Ferdi.loop(getMessages);
};