aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/groupme/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/groupme/webview.js')
-rw-r--r--recipes/groupme/webview.js16
1 files changed, 7 insertions, 9 deletions
diff --git a/recipes/groupme/webview.js b/recipes/groupme/webview.js
index 0f0d3a6..680f12e 100644
--- a/recipes/groupme/webview.js
+++ b/recipes/groupme/webview.js
@@ -7,20 +7,18 @@ const _path = _interopRequireDefault(require('path'));
7module.exports = Ferdium => { 7module.exports = Ferdium => {
8 const getMessages = () => { 8 const getMessages = () => {
9 // array-ify the list of conversations 9 // array-ify the list of conversations
10 const allConversations = [ 10 const unreadConversations = [
11 ...document.querySelectorAll('#tray .tray-list .list-item'), 11 ...document.querySelectorAll('#tray .tray-list .list-item.unread'),
12 ]; 12 ];
13 // for each conversation on the list... 13 // for each conversation on the list...
14 const filteredConversations = allConversations.filter(e => { 14 const filteredConversations = unreadConversations.filter(e => {
15 // keep it on the list if [1] it has unread messages (not .ng-hide), and [2] it isn't muted (not .overlay) 15 // keep it on the list if it isn't muted (not .muted)
16 return ( 16 return !e.innerHTML.includes('muted');
17 !e.innerHTML.includes('ng-hide') && !e.innerHTML.includes('overlay')
18 );
19 }); 17 });
20 const unreadConversations = filteredConversations.length; 18 const unreadUnmutedConversations = filteredConversations.length;
21 19
22 // set Ferdium badge 20 // set Ferdium badge
23 Ferdium.setBadge(unreadConversations); 21 Ferdium.setBadge(unreadUnmutedConversations);
24 }; 22 };
25 23
26 Ferdium.loop(getMessages); 24 Ferdium.loop(getMessages);