aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/cinny/webview.js
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/cinny/webview.js
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/cinny/webview.js')
-rw-r--r--recipes/cinny/webview.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/recipes/cinny/webview.js b/recipes/cinny/webview.js
index f4fd306..c17cc79 100644
--- a/recipes/cinny/webview.js
+++ b/recipes/cinny/webview.js
@@ -1,3 +1,9 @@
1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
1module.exports = Ferdium => { 7module.exports = Ferdium => {
2 function getMessages() { 8 function getMessages() {
3 // Number of messages from rooms which has "All Messages" notifications enabled or when mentionned in a room with "Mentions & Keyword" notifications level. 9 // Number of messages from rooms which has "All Messages" notifications enabled or when mentionned in a room with "Mentions & Keyword" notifications level.
@@ -9,7 +15,7 @@ module.exports = Ferdium => {
9 const badges = document.querySelectorAll('.sidebar .notification-badge'); 15 const badges = document.querySelectorAll('.sidebar .notification-badge');
10 for (const badge of badges) { 16 for (const badge of badges) {
11 if (badge.childNodes.length === 0) { 17 if (badge.childNodes.length === 0) {
12 indirectCount++; 18 indirectCount += 1;
13 } else { 19 } else {
14 directCount += Ferdium.safeParseInt(badge.childNodes[0].textContent); 20 directCount += Ferdium.safeParseInt(badge.childNodes[0].textContent);
15 } 21 }
@@ -19,4 +25,6 @@ module.exports = Ferdium => {
19 Ferdium.setBadge(directCount, indirectCount); 25 Ferdium.setBadge(directCount, indirectCount);
20 } 26 }
21 Ferdium.loop(getMessages); 27 Ferdium.loop(getMessages);
28
29 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
22}; 30};