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

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

window.onload = () => {
  const title = document.querySelector('.window-title').innerHTML;

  if (title && title.includes('Google Chrome 36+')) {
    window.location.reload();
  }
};

module.exports = (Ferdi, settings) => {
  const getMessages = () => {
    const elements = document.querySelectorAll('.CxUIE, .unread');
    let count = 0;

    for (let i = 0; i < elements.length; i += 1) {
      if (elements[i].querySelectorAll('*[data-icon="muted"]').length === 0) {
        count += 1;
      }
    }

    Ferdi.setBadge(count);
  };

  Ferdi.loop(getMessages);

  window.addEventListener('beforeunload', async () => {
    Ferdi.clearStorageData(settings.id, { storages: ['serviceworkers'] });
  });

  Ferdi.injectCSS(_path.default.join(__dirname, 'service.css'));
};