aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud-talk/webview.js
blob: 0dfb6eaa20b84e8d8c946419f02a8e8982cc114b (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
"use strict";

var _path = _interopRequireDefault(require("path"));

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

module.exports = Ferdi => {
  const getMessages = function getMessages() {
    let direct = 0;
    const notificationWrapper = document.querySelector(
      '.notifications .notification-wrapper'
    );

    if (notificationWrapper) {
      direct = notificationWrapper.querySelectorAll(
        '.notification[object_type="chat"], .notification[object_type="room"'
      ).length;
    }

    let indirect = 0;

    document.querySelectorAll('.app-navigation-entry__counter').forEach(
      function(counter) {
        indirect += Number(counter.textContent);
      }
    );
    Ferdi.setBadge(direct, indirect);
  };

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