aboutsummaryrefslogtreecommitdiffstats
path: root/recipes
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-09-27 05:25:50 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-09-27 05:25:50 +0530
commita86245afc0c4aaca259d5c3f014794dbc4d913de (patch)
tree4b3fe945bafca56b5ea71975c75e2eb513575ac6 /recipes
parentrefactor: add 'serviceId' when invoking 'clearStorageData' (#726) (diff)
downloadferdium-recipes-a86245afc0c4aaca259d5c3f014794dbc4d913de.tar.gz
ferdium-recipes-a86245afc0c4aaca259d5c3f014794dbc4d913de.tar.zst
ferdium-recipes-a86245afc0c4aaca259d5c3f014794dbc4d913de.zip
refactor: remove references 'Ferdi.ipcRenderer' in recipes - create an abstraction layer instead for better maintainance
Diffstat (limited to 'recipes')
-rw-r--r--recipes/pleroma/package.json2
-rw-r--r--recipes/pleroma/webview.js2
-rw-r--r--recipes/rocketchat/package.json2
-rw-r--r--recipes/rocketchat/webview.js5
-rw-r--r--recipes/slack/package.json2
-rw-r--r--recipes/slack/webview.js2
6 files changed, 6 insertions, 9 deletions
diff --git a/recipes/pleroma/package.json b/recipes/pleroma/package.json
index 1592d7b..766a63c 100644
--- a/recipes/pleroma/package.json
+++ b/recipes/pleroma/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "pleroma", 2 "id": "pleroma",
3 "name": "Pleroma", 3 "name": "Pleroma",
4 "version": "1.2.0", 4 "version": "1.2.1",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "hasCustomUrl": true 7 "hasCustomUrl": true
diff --git a/recipes/pleroma/webview.js b/recipes/pleroma/webview.js
index 557f318..da76955 100644
--- a/recipes/pleroma/webview.js
+++ b/recipes/pleroma/webview.js
@@ -151,7 +151,7 @@ module.exports = Ferdi => {
151 Ferdi.loop(() => { 151 Ferdi.loop(() => {
152 getMessages(); 152 getMessages();
153 if (updater.update()) { 153 if (updater.update()) {
154 Ferdi.ipcRenderer.sendToHost('avatar', updater.toDataURL()); 154 Ferdi.setAvatarImage(updater.toDataURL());
155 } 155 }
156 }); 156 });
157 }, (e) => { 157 }, (e) => {
diff --git a/recipes/rocketchat/package.json b/recipes/rocketchat/package.json
index 2bf5722..c44647a 100644
--- a/recipes/rocketchat/package.json
+++ b/recipes/rocketchat/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "rocketchat", 2 "id": "rocketchat",
3 "name": "Rocket.Chat", 3 "name": "Rocket.Chat",
4 "version": "1.2.2", 4 "version": "1.2.3",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://{teamId}.rocket.chat", 7 "serviceURL": "https://{teamId}.rocket.chat",
diff --git a/recipes/rocketchat/webview.js b/recipes/rocketchat/webview.js
index 24d784a..5ed7866 100644
--- a/recipes/rocketchat/webview.js
+++ b/recipes/rocketchat/webview.js
@@ -41,10 +41,7 @@ module.exports = Ferdi => {
41 const response = JSON.parse(this.responseText); 41 const response = JSON.parse(this.responseText);
42 42
43 if (response.icons.length >= 1) { 43 if (response.icons.length >= 1) {
44 Ferdi.ipcRenderer.sendToHost( 44 Ferdi.setAvatarImage(`${window.location.protocol}//${window.location.host}${response.icons[0].src}`);
45 'avatar',
46 `${window.location.protocol}//${window.location.host}${response.icons[0].src}`,
47 );
48 } 45 }
49 }; 46 };
50 47
diff --git a/recipes/slack/package.json b/recipes/slack/package.json
index 877bd8e..db05b26 100644
--- a/recipes/slack/package.json
+++ b/recipes/slack/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "slack", 2 "id": "slack",
3 "name": "Slack", 3 "name": "Slack",
4 "version": "1.3.1", 4 "version": "1.3.2",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://{teamId}.slack.com", 7 "serviceURL": "https://{teamId}.slack.com",
diff --git a/recipes/slack/webview.js b/recipes/slack/webview.js
index 3064e79..23cede8 100644
--- a/recipes/slack/webview.js
+++ b/recipes/slack/webview.js
@@ -36,7 +36,7 @@ module.exports = Ferdi => {
36 countTeamIconCheck += 1; 36 countTeamIconCheck += 1;
37 37
38 if (bgUrl) { 38 if (bgUrl) {
39 Ferdi.ipcRenderer.sendToHost('avatar', bgUrl); 39 Ferdi.setAvatarImage(bgUrl);
40 } else if (countTeamIconCheck <= 5) { 40 } else if (countTeamIconCheck <= 5) {
41 setTimeout(() => { 41 setTimeout(() => {
42 getTeamIcon(countTeamIconCheck + 1); 42 getTeamIcon(countTeamIconCheck + 1);