aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/lark
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-08-27 18:13:24 +0530
committerLibravatar GitHub <noreply@github.com>2021-08-27 18:13:24 +0530
commit155c4b832281348c16be1f4ef667e6e23dbf1bd8 (patch)
treed144e2de2e6c7fb2e334246e8a4aecdbeb08ef8d /recipes/lark
parentdocs: fixed template file for creating recipe. (diff)
downloadferdium-recipes-155c4b832281348c16be1f4ef667e6e23dbf1bd8.tar.gz
ferdium-recipes-155c4b832281348c16be1f4ef667e6e23dbf1bd8.tar.zst
ferdium-recipes-155c4b832281348c16be1f4ef667e6e23dbf1bd8.zip
chore: normalized all recipes to ensure compatibility with es6 (#639)
- Removed some calls to set badge with '0' all the time. - Removed all 'sourceMaps' since they are all outdated atm.
Diffstat (limited to 'recipes/lark')
-rw-r--r--recipes/lark/index.js2
-rw-r--r--recipes/lark/package.json2
-rw-r--r--recipes/lark/webview.js15
3 files changed, 11 insertions, 8 deletions
diff --git a/recipes/lark/index.js b/recipes/lark/index.js
index 258da41..23607bd 100644
--- a/recipes/lark/index.js
+++ b/recipes/lark/index.js
@@ -1 +1 @@
module.exports = Franz => Franz; module.exports = Ferdi => Ferdi;
diff --git a/recipes/lark/package.json b/recipes/lark/package.json
index 6f64a10..81c2a37 100644
--- a/recipes/lark/package.json
+++ b/recipes/lark/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "lark", 2 "id": "lark",
3 "name": "Lark", 3 "name": "Lark",
4 "version": "0.0.4", 4 "version": "0.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://{teamId}.larksuite.com/messenger/", 7 "serviceURL": "https://{teamId}.larksuite.com/messenger/",
diff --git a/recipes/lark/webview.js b/recipes/lark/webview.js
index d4e88e1..5e32219 100644
--- a/recipes/lark/webview.js
+++ b/recipes/lark/webview.js
@@ -1,16 +1,19 @@
1const path = require('path'); 1const _path = _interopRequireDefault(require('path'));
2 2
3module.exports = (Franz) => { 3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
4
5module.exports = (Ferdi) => {
4 const getMessages = function getMessages() { 6 const getMessages = function getMessages() {
5 const ele = document.querySelectorAll('.larkc-badge-count.navbarMenu-badge'); 7 const ele = document.querySelectorAll('.larkc-badge-count.navbarMenu-badge');
6 if (!ele.length) { 8 if (!ele.length) {
7 Franz.setBadge(0); 9 Ferdi.setBadge(0);
8 return; 10 return;
9 } 11 }
10 const messages = parseInt(ele[0].innerHTML, 10); 12 const messages = parseInt(ele[0].innerHTML, 10);
11 Franz.setBadge(messages); 13 Ferdi.setBadge(messages);
12 }; 14 };
13 15
14 Franz.injectCSS(path.join(__dirname, 'service.css')); 16 Ferdi.loop(getMessages);
15 Franz.loop(getMessages); 17
18 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css'));
16}; 19};