aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ms-planner/webview.js
blob: 4dd73fdf8c752fdf1512e8ce504b6dcea8ad3023 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const path = require('path');

setTimeout(() => {
  const elem = document.querySelector('.landing-title.version-title');
  if (elem && elem.textContent.toLowerCase().includes('google chrome')) {
    window.FerdiumAPI.clearCache();
    window.location.reload();
  }
}, 1000);

const isMutedIcon = element =>
  element.parentElement.parentElement.querySelectorAll('*[data-icon="muted"]')
    .length > 0;

const isPinnedIcon = element => element.classList.contains('_1EFSv');

module.exports = Ferdium => {
  const getMessages = function getMessages() {
    const elements = document.querySelectorAll(
      '.CxUIE, .unread, ._0LqQ, .m61XR .ZKn2B, .VOr2j, ._1V5O7 ._2vfYK, html[dir] ._23LrM, ._1pJ9J:not(._2XH9R)',
    );
    let count = 0;

    for (const element of elements) {
      try {
        // originalLog(isMutedIcon(elements[i]), isPinnedIcon(elements[i]));
        if (!isMutedIcon(element) && !isPinnedIcon(element)) {
          count += 1;
        }
      } catch {
        // nope;
      }
    }

    Ferdium.setBadge(count);
  };

  Ferdium.injectCSS(path.join(__dirname, 'service.css'));
  Ferdium.loop(getMessages);
};