Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add upwork recipe resolves ferdium/ferdium-app#1742 #547

Merged
merged 11 commits into from
May 9, 2024
45 changes: 45 additions & 0 deletions recipes/upwork/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/upwork/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/upwork/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"id": "upwork",
"name": "upwork",
"version": "1.0.0",
"license": "MIT",
"config": {
"serviceURL": "https://www.upwork.com/ab/notifications/"
}
}
17 changes: 17 additions & 0 deletions recipes/upwork/webview.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : { default: obj };
}

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

module.exports = Ferdium => {
const getMessages = () => {
const directMessages = $('li .notification-row .d-inline-block')?.textContent;

Ferdium.setBadge(directMessages);
};

Ferdium.loop(getMessages);

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