aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/toggl
diff options
context:
space:
mode:
authorLibravatar Nils Steinger <n-st@users.noreply.github.com>2021-11-20 21:49:47 +0100
committerLibravatar GitHub <noreply@github.com>2021-11-21 02:19:47 +0530
commitada14e8b8e45d6246bd8b7b273c044b215365377 (patch)
tree3ae5d0aad645b8705be3c7dce3a2b1cb37e233c6 /recipes/toggl
parentRevamped github Issue templates (new yml syntax) [skip ci] (diff)
downloadferdium-recipes-ada14e8b8e45d6246bd8b7b273c044b215365377.tar.gz
ferdium-recipes-ada14e8b8e45d6246bd8b7b273c044b215365377.tar.zst
ferdium-recipes-ada14e8b8e45d6246bd8b7b273c044b215365377.zip
Toggl recipe: Display 'unread' badge when a timer is running (#767)
Diffstat (limited to 'recipes/toggl')
-rw-r--r--recipes/toggl/package.json2
-rw-r--r--recipes/toggl/webview-unsafe.js11
-rw-r--r--recipes/toggl/webview.js12
3 files changed, 23 insertions, 2 deletions
diff --git a/recipes/toggl/package.json b/recipes/toggl/package.json
index f40b35e..09e5b64 100644
--- a/recipes/toggl/package.json
+++ b/recipes/toggl/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "toggl", 2 "id": "toggl",
3 "name": "toggl", 3 "name": "toggl",
4 "version": "1.1.0", 4 "version": "1.2.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://www.toggl.com/app/timer", 7 "serviceURL": "https://www.toggl.com/app/timer",
diff --git a/recipes/toggl/webview-unsafe.js b/recipes/toggl/webview-unsafe.js
new file mode 100644
index 0000000..24b139f
--- /dev/null
+++ b/recipes/toggl/webview-unsafe.js
@@ -0,0 +1,11 @@
1// only try to update badge once Ferdi API has finished loading
2if (ferdi != undefined && ferdi.setBadge != undefined) {
3 var timerRunning = (window.toggl != undefined) && !!(window.toggl.store.getState().view.timer.timeEntry.start);
4
5 if (timerRunning) {
6 // Treat running timer as a "non-direct" notification (default blue dot instead of urgent red "1")
7 ferdi.setBadge(0, 1);
8 } else {
9 ferdi.setBadge(0);
10 }
11}
diff --git a/recipes/toggl/webview.js b/recipes/toggl/webview.js
index 23607bd..199700a 100644
--- a/recipes/toggl/webview.js
+++ b/recipes/toggl/webview.js
@@ -1 +1,11 @@
1module.exports = Ferdi => Ferdi; 1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
4
5module.exports = Ferdi => {
6 const updateBadge = function updateBadge() {
7 Ferdi.injectJSUnsafe(_path.default.join(__dirname, 'webview-unsafe.js'));
8 };
9
10 Ferdi.loop(updateBadge);
11};