Skip to content

Commit

Permalink
Add Wakapi recipe (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
Serene-Arc authored Dec 2, 2023
1 parent 79ddd4b commit 0ece08f
Show file tree
Hide file tree
Showing 4 changed files with 127 additions and 0 deletions.
99 changes: 99 additions & 0 deletions recipes/wakapi/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions recipes/wakapi/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = Ferdium => Ferdium;
11 changes: 11 additions & 0 deletions recipes/wakapi/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"id": "wakapi",
"name": "Wakapi",
"version": "1.0.0",
"license": "MIT",
"config": {
"serviceURL": "https://wakapi.dev",
"hasHostedOption": true,
"hasCustomUrl": true
}
}
16 changes: 16 additions & 0 deletions recipes/wakapi/webview.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : { default: obj };
}

const _path = _interopRequireDefault(require('path'));

module.exports = Ferdium => {
// TODO: If your SNAME service has unread messages, uncomment these lines to implement the logic for updating the badges
// const getMessages = () => {
// // TODO: Insert your notification-finding code here
// Ferdium.setBadge(0, 0);
// };
// Ferdium.loop(getMessages);

Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
};

0 comments on commit 0ece08f

Please sign in to comment.