aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zoho
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-07-26 06:29:03 -0600
committerLibravatar GitHub <noreply@github.com>2023-07-26 17:59:03 +0530
commit9b8f01716774a960073e944823ab727cc867a8f6 (patch)
tree732b83770baa78f5cf12776aaa33ce65bebfa418 /recipes/zoho
parentAdd Excalidraw recipe (#393) (diff)
downloadferdium-recipes-9b8f01716774a960073e944823ab727cc867a8f6.tar.gz
ferdium-recipes-9b8f01716774a960073e944823ab727cc867a8f6.tar.zst
ferdium-recipes-9b8f01716774a960073e944823ab727cc867a8f6.zip
chore: improve lint setup (#397)
- update eslint config to closely mirror the ones from ferdium-app - add .eslintignore - opt in to eslint `reportUnusedDisableDirectives` config option - remove `trailingComma: all` from `prettier` config which is default in `prettier` v3 - autofix or disable a lot of lint issues throughout codebase - add `volta` configuration to `package.json` to autoload correct `node` and `pnpm` versions - upgrade all `eslint` and `prettier` related dependencies to latest - update lint:fix npm script - reformat touched files with prettier - bumped up minor version for all recipes that have changes - introduced injection of 'service.css' where it was missing in many recipes --------- Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
Diffstat (limited to 'recipes/zoho')
-rw-r--r--recipes/zoho/package.json2
-rw-r--r--recipes/zoho/webview-unsafe.js16
-rw-r--r--recipes/zoho/webview.js20
3 files changed, 21 insertions, 17 deletions
diff --git a/recipes/zoho/package.json b/recipes/zoho/package.json
index 7e4ea87..b1444d7 100644
--- a/recipes/zoho/package.json
+++ b/recipes/zoho/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "zoho", 2 "id": "zoho",
3 "name": "Zoho Mail", 3 "name": "Zoho Mail",
4 "version": "1.3.0", 4 "version": "1.4.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://www.zoho.com/mail/login.html", 7 "serviceURL": "https://www.zoho.com/mail/login.html",
diff --git a/recipes/zoho/webview-unsafe.js b/recipes/zoho/webview-unsafe.js
index eb83595..df5237b 100644
--- a/recipes/zoho/webview-unsafe.js
+++ b/recipes/zoho/webview-unsafe.js
@@ -1,12 +1,12 @@
1//wait for Ferdium and Zoho Mail to initialize 1// wait for Ferdium and Zoho Mail to initialize
2if ( 2if (
3 Object.prototype.hasOwnProperty.call(window, "ferdium") && 3 Object.prototype.hasOwnProperty.call(window, 'ferdium') &&
4 Object.prototype.hasOwnProperty.call(window.ferdium, "setBadge") && 4 Object.prototype.hasOwnProperty.call(window.ferdium, 'setBadge') &&
5 Object.prototype.hasOwnProperty.call(window, "zmNCenter") && 5 Object.prototype.hasOwnProperty.call(window, 'zmNCenter') &&
6 Object.prototype.hasOwnProperty.call(window, "zmfolAction") 6 Object.prototype.hasOwnProperty.call(window, 'zmfolAction')
7) { 7) {
8 var unreadNotifications = window.zmNCenter.counter.count(); //General Notifications by Zoho (Bell Icon) 8 const unreadNotifications = window.zmNCenter.counter.count(); // General Notifications by Zoho (Bell Icon)
9 var unreadMail = window.zmfolAction.getUnreadViewCount(); //Unread messages count 9 const unreadMail = window.zmfolAction.getUnreadViewCount(); // Unread messages count
10 10
11 window.ferdium.setBadge(unreadMail, unreadNotifications); 11 window.ferdium.setBadge(unreadMail, unreadNotifications);
12} 12}
diff --git a/recipes/zoho/webview.js b/recipes/zoho/webview.js
index 02a5039..2643760 100644
--- a/recipes/zoho/webview.js
+++ b/recipes/zoho/webview.js
@@ -1,22 +1,26 @@
1const _path = _interopRequireDefault(require('path')); 1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
2 4
3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 5const _path = _interopRequireDefault(require('path'));
4 6
5module.exports = (Ferdium) => { 7module.exports = Ferdium => {
6 const getMessages = () => { 8 const getMessages = () => {
7 Ferdium.injectJSUnsafe(_path.default.join(__dirname, 'webview-unsafe.js')); 9 Ferdium.injectJSUnsafe(_path.default.join(__dirname, 'webview-unsafe.js'));
8 }; 10 };
9 11
10 //Zoho uses different URLs for different regions. Find out which region the account belongs to and redirect to the correct URL. 12 // Zoho uses different URLs for different regions. Find out which region the account belongs to and redirect to the correct URL.
11 const redirectRegion = () => { 13 const redirectRegion = () => {
12 if (window.location.href === "https://www.zoho.com/mail/login.html") { 14 if (window.location.href === 'https://www.zoho.com/mail/login.html') {
13 const btn = document.querySelectorAll(".access-apps"); 15 const btn = document.querySelectorAll('.access-apps');
14 if (btn.length > 0) { 16 if (btn.length > 0) {
15 window.location.assign(btn[0].href + "zm/"); 17 window.location.assign(`${btn[0].href}zm/`);
16 } 18 }
17 } 19 }
18 } 20 };
19 21
20 window.addEventListener('load', redirectRegion); 22 window.addEventListener('load', redirectRegion);
21 Ferdium.loop(getMessages); 23 Ferdium.loop(getMessages);
24
25 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
22}; 26};