From 006950318f1228af10eeb0cdfb0861af6ecb1e75 Mon Sep 17 00:00:00 2001 From: André Oliveira <37463445+SpecialAro@users.noreply.github.com> Date: Mon, 18 Mar 2024 12:36:05 +0000 Subject: Add several recipes (#519) The added recipes are as follows: - Mastodeck (fixes https://github.com/ferdium/ferdium-app/issues/959) - Microsoft Planner (fixes https://github.com/ferdium/ferdium-app/issues/955) - Alibaba Chat (fixes https://github.com/ferdium/ferdium-app/issues/1376) - Fiverr (step forward in https://github.com/ferdium/ferdium-app/issues/1377 - missing unread logic) - Draw.io (fixes https://github.com/ferdium/ferdium-app/issues/1429) - Canva (fixes https://github.com/ferdium/ferdium-app/issues/1447) - Penpot (fixes https://github.com/ferdium/ferdium-app/issues/1469) - HackerNews (fixes https://github.com/ferdium/ferdium-app/issues/1505) - Google Maps (fixes https://github.com/ferdium/ferdium-app/issues/1513) - Patreon (fixes https://github.com/ferdium/ferdium-app/issues/1524) - Fandom (fixes https://github.com/ferdium/ferdium-app/issues/1540) - Romeo (fixes https://github.com/ferdium/ferdium-app/issues/1553) - Infomaniak Kdrive (fixes https://github.com/ferdium/ferdium-app/issues/1559) - Notion Calendar (fixes https://github.com/ferdium/ferdium-app/issues/1599) - Superlist (fixes https://github.com/ferdium/ferdium-app/issues/1601) - Purelymail (fixes https://github.com/ferdium/ferdium-app/issues/1624) - SOGo (fixes https://github.com/ferdium/ferdium-app/issues/1472) --- recipes/sogo/icon.svg | 20 ++++++++++++++++++++ recipes/sogo/index.js | 1 + recipes/sogo/package.json | 10 ++++++++++ recipes/sogo/webview.js | 20 ++++++++++++++++++++ 4 files changed, 51 insertions(+) create mode 100644 recipes/sogo/icon.svg create mode 100644 recipes/sogo/index.js create mode 100644 recipes/sogo/package.json create mode 100644 recipes/sogo/webview.js (limited to 'recipes/sogo') diff --git a/recipes/sogo/icon.svg b/recipes/sogo/icon.svg new file mode 100644 index 0000000..80b0994 --- /dev/null +++ b/recipes/sogo/icon.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + diff --git a/recipes/sogo/index.js b/recipes/sogo/index.js new file mode 100644 index 0000000..dd41f72 --- /dev/null +++ b/recipes/sogo/index.js @@ -0,0 +1 @@ +module.exports = Ferdium => Ferdium; diff --git a/recipes/sogo/package.json b/recipes/sogo/package.json new file mode 100644 index 0000000..b7e6656 --- /dev/null +++ b/recipes/sogo/package.json @@ -0,0 +1,10 @@ +{ + "id": "sogo", + "name": "SOGo", + "version": "1.0.0", + "license": "MIT", + "config": { + "hasCustomUrl": true, + "hasNotificationSound": true + } +} diff --git a/recipes/sogo/webview.js b/recipes/sogo/webview.js new file mode 100644 index 0000000..158fcb6 --- /dev/null +++ b/recipes/sogo/webview.js @@ -0,0 +1,20 @@ +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; +} + +const _path = _interopRequireDefault(require('path')); + +module.exports = Ferdium => { + const getMessages = () => { + let count = 0; + for (const e of document.querySelectorAll('.sg-counter-badge')) { + if (e.textContent && e.textContent !== '') { + count += Number.parseInt(e.textContent); + } + } + Ferdium.setBadge(count, 0); + }; + Ferdium.loop(getMessages); + + Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); +}; -- cgit v1.2.3-70-g09d2