mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
/* eslint-env serviceworker */
|
|
|
|
function getApiClient(serverId) {
|
|
return Promise.resolve(window.connectionManager.getApiClient(serverId));
|
|
}
|
|
|
|
function executeAction(action, data, serverId) {
|
|
return getApiClient(serverId).then(function (apiClient) {
|
|
switch (action) {
|
|
case 'cancel-install':
|
|
return apiClient.cancelPackageInstallation(data.id);
|
|
case 'restart':
|
|
return apiClient.restartServer();
|
|
default:
|
|
clients.openWindow('/');
|
|
return Promise.resolve();
|
|
}
|
|
});
|
|
}
|
|
|
|
/* eslint-disable-next-line no-restricted-globals -- self is valid in a serviceworker environment */
|
|
self.addEventListener('notificationclick', function (event) {
|
|
const notification = event.notification;
|
|
notification.close();
|
|
|
|
const data = notification.data;
|
|
const serverId = data.serverId;
|
|
const action = event.action;
|
|
|
|
if (!action) {
|
|
clients.openWindow('/');
|
|
event.waitUntil(Promise.resolve());
|
|
return;
|
|
}
|
|
|
|
event.waitUntil(executeAction(action, data, serverId));
|
|
}, false);
|
|
|
|
/* eslint-disable-next-line no-restricted-globals -- self is valid in a serviceworker environment */
|
|
self.addEventListener('activate', () => self.clients.claim());
|