aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/chatra/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/chatra/webview.js')
-rw-r--r--recipes/chatra/webview.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes/chatra/webview.js b/recipes/chatra/webview.js
new file mode 100644
index 0000000..a8a611c
--- /dev/null
+++ b/recipes/chatra/webview.js
@@ -0,0 +1,19 @@
1const path = require('path');
2
3module.exports = (Franz, options) => {
4 const getMessages = () => {
5 // get new conversations in My Queue
6 const myQueue = $('.super-nav a.super-nav__item.js-from-super-to-nav[href^="/chat/box:my"] .count').not('.count--gray').text();
7
8 // get all missed conversations
9 const missed = $('.super-nav a.super-nav__item.js-from-super-to-nav[href^="/chat/box:missed"] .count').text();
10
11 // set Franz badge
12 // myQueue => New conversations in My Queue
13 // missed => All missed conversations
14 Franz.setBadge(myQueue, missed);
15 };
16
17 // check for new messages every second and update Franz badge
18 Franz.loop(getMessages);
19};