Skip to content

Commit

Permalink
feat(productive): add new recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
YaMoef committed Jun 3, 2024
1 parent 30c4e92 commit 96a08b7
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
6 changes: 6 additions & 0 deletions recipes/productive/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/productive/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = Ferdium => Ferdium;
9 changes: 9 additions & 0 deletions recipes/productive/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"id": "productive",
"name": "Productive",
"version": "1.0.0",
"license": "MIT",
"config": {
"serviceURL": "https://app.productive.io/"
}
}
16 changes: 16 additions & 0 deletions recipes/productive/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 96a08b7

Please sign in to comment.