aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/teamleader
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/teamleader')
-rw-r--r--recipes/teamleader/package.json2
-rw-r--r--recipes/teamleader/webview.js24
2 files changed, 12 insertions, 14 deletions
diff --git a/recipes/teamleader/package.json b/recipes/teamleader/package.json
index 0b1fe52..5fc94c3 100644
--- a/recipes/teamleader/package.json
+++ b/recipes/teamleader/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "teamleader", 2 "id": "teamleader",
3 "name": "teamleader", 3 "name": "teamleader",
4 "version": "1.2.0", 4 "version": "1.3.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://app.teamleader.eu/?gotologin", 7 "serviceURL": "https://app.teamleader.eu/?gotologin",
diff --git a/recipes/teamleader/webview.js b/recipes/teamleader/webview.js
index f530549..422af5e 100644
--- a/recipes/teamleader/webview.js
+++ b/recipes/teamleader/webview.js
@@ -1,35 +1,33 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) { 1function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj }; 2 return obj && obj.__esModule ? obj : { default: obj };
5} 3}
6 4
5const _path = _interopRequireDefault(require('path'));
6
7module.exports = Ferdium => { 7module.exports = Ferdium => {
8 const getMessages = () => { 8 const getMessages = () => {
9 let notifications = 0; 9 let notifications = 0;
10 let indirectNotifications = 0; 10 let indirectNotifications = 0;
11 11
12 const notification_element = document.querySelector( 12 const notificationElement = document.querySelector('#notifications_amount');
13 '#notifications_amount', 13 const ticketElement = document.querySelector(
14 );
15 const ticket_element = document.querySelector(
16 "a[href='tickets.php'] > span", 14 "a[href='tickets.php'] > span",
17 ); 15 );
18 const call_element = document.querySelector('#queue_amount'); 16 const callElement = document.querySelector('#queue_amount');
19 17
20 if (notification_element) { 18 if (notificationElement) {
21 notifications = Ferdium.safeParseInt( 19 notifications = Ferdium.safeParseInt(
22 notification_element.getAttribute('datacount'), 20 notificationElement.getAttribute('datacount'),
23 ); 21 );
24 } 22 }
25 23
26 if (ticket_element != null) { 24 if (ticketElement !== null) {
27 indirectNotifications = Ferdium.safeParseInt(ticket_element.textContent); 25 indirectNotifications = Ferdium.safeParseInt(ticketElement.textContent);
28 } 26 }
29 27
30 if (call_element) { 28 if (callElement) {
31 indirectNotifications += Ferdium.safeParseInt( 29 indirectNotifications += Ferdium.safeParseInt(
32 call_element.getAttribute('datacount'), 30 callElement.getAttribute('datacount'),
33 ); 31 );
34 } 32 }
35 33