Skip to content

Commit

Permalink
feat(affine): add recipe (#593)
Browse files Browse the repository at this point in the history
  • Loading branch information
YaMoef authored Oct 22, 2024
1 parent 62ed534 commit 5488541
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions recipes/affine/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/affine/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = Ferdium => class Affine extends Ferdium {};
10 changes: 10 additions & 0 deletions recipes/affine/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"id": "affine",
"name": "Affine",
"version": "1.0.0",
"license": "MIT",
"config": {
"hasCustomUrl": true,
"serviceURL": "https://{affine}/"
}
}
16 changes: 16 additions & 0 deletions recipes/affine/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 5488541

Please sign in to comment.