aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/wire/webview.js
blob: 57baadc00f4b9a79d079cd015ac53c06c37444ac (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
module.exports = (Ferdi) => {
	function getMessages() {
		let direct = 0;
		let indirect = 0;

		// Count how many people/groups have texted you
		const conversationElems = document.querySelectorAll('[data-uie-name="conversation-folder-badge"]');
		if (conversationElems) {
			for (const conversationElem of conversationElems) {
				const count = parseInt(conversationElem.innerText);
				if (count) {
					direct += count;
				}
			}
		}

		// Count unread pending user requests
		const pendingElem = document.querySelector('[data-uie-name="item-pending-requests"]');
		if (pendingElem) {
			const matches = pendingElem.innerText.match(/^([1-9][0-9]*)/);
			if (matches && matches.length > 0) {
				indirect += parseInt(matches[1]);
			}
		}

		// Alternative would be to count all messages (unread conversation count + pending) from the header
		// const titleElem = document.querySelector('head title');
		// const matches = titleElem.innerText.match(/^\(([1-9][0-9]*)\)/);
		// if (matches) {
		// 	direct = matches[1];
		// }

		Ferdi.setBadge(direct, indirect);
	}

	Ferdi.loop(getMessages);

};