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.js17
1 files changed, 14 insertions, 3 deletions
diff --git a/recipes/groupme/webview.js b/recipes/groupme/webview.js
index 0d5afc3..0f0d3a6 100644
--- a/recipes/groupme/webview.js
+++ b/recipes/groupme/webview.js
@@ -1,12 +1,21 @@
1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
1module.exports = Ferdium => { 7module.exports = Ferdium => {
2 const getMessages = () => { 8 const getMessages = () => {
3
4 // array-ify the list of conversations 9 // array-ify the list of conversations
5 const allConversations = [...document.querySelectorAll('#tray .tray-list .list-item')] 10 const allConversations = [
11 ...document.querySelectorAll('#tray .tray-list .list-item'),
12 ];
6 // for each conversation on the list... 13 // for each conversation on the list...
7 const filteredConversations = allConversations.filter(e => { 14 const filteredConversations = allConversations.filter(e => {
8 // 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 [1] it has unread messages (not .ng-hide), and [2] it isn't muted (not .overlay)
9 return (!e.innerHTML.includes('ng-hide') && !e.innerHTML.includes('overlay')) 16 return (
17 !e.innerHTML.includes('ng-hide') && !e.innerHTML.includes('overlay')
18 );
10 }); 19 });
11 const unreadConversations = filteredConversations.length; 20 const unreadConversations = filteredConversations.length;
12 21
@@ -15,4 +24,6 @@ module.exports = Ferdium => {
15 }; 24 };
16 25
17 Ferdium.loop(getMessages); 26 Ferdium.loop(getMessages);
27
28 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
18}; 29};