First separation commit.
Added LICENSE, README.md, CONTRIBUTORS.md
This commit is contained in:
parent
09513af31b
commit
4678528d00
657 changed files with 422 additions and 0 deletions
|
@ -1,31 +0,0 @@
|
|||
! function() {
|
||||
"use strict";
|
||||
|
||||
function getApiClient(serverId) {
|
||||
return connectionManager ? Promise.resolve(connectionManager.getApiClient(serverId)) : Promise.reject()
|
||||
}
|
||||
|
||||
function executeAction(action, data, serverId) {
|
||||
return getApiClient(serverId).then(function(apiClient) {
|
||||
switch (action) {
|
||||
case "cancel-install":
|
||||
var id = data.id;
|
||||
return apiClient.cancelPackageInstallation(id);
|
||||
case "restart":
|
||||
return apiClient.restartServer();
|
||||
default:
|
||||
return clients.openWindow("/"), Promise.resolve()
|
||||
}
|
||||
})
|
||||
}
|
||||
var connectionManager;
|
||||
self.addEventListener("notificationclick", function(event) {
|
||||
var notification = event.notification;
|
||||
notification.close();
|
||||
var data = notification.data,
|
||||
serverId = data.serverId,
|
||||
action = event.action;
|
||||
if (!action) return clients.openWindow("/"), void event.waitUntil(Promise.resolve());
|
||||
event.waitUntil(executeAction(action, data, serverId))
|
||||
}, !1)
|
||||
}();
|
Loading…
Add table
Add a link
Reference in a new issue