33 lines
878 B
TypeScript
Raw Normal View History

2017-10-17 09:27:15 +00:00
import { AnimeNotifier } from "../AnimeNotifier"
// Enable notifications
export async function enableNotifications(arn: AnimeNotifier, button: HTMLElement) {
await arn.pushManager.subscribe(arn.user.dataset.id)
arn.updatePushUI()
}
// Disable notifications
export async function disableNotifications(arn: AnimeNotifier, button: HTMLElement) {
await arn.pushManager.unsubscribe(arn.user.dataset.id)
arn.updatePushUI()
}
// Test notification
2018-02-28 22:26:06 +00:00
export async function testNotification(arn: AnimeNotifier) {
await fetch("/api/test/notification", {
2017-10-17 09:27:15 +00:00
credentials: "same-origin"
})
2018-02-28 23:06:03 +00:00
}
// Mark notifications as seen
export async function markNotificationsAsSeen(arn: AnimeNotifier) {
await fetch("/api/mark/notifications/seen", {
credentials: "same-origin"
})
// Update notification counter
arn.notificationManager.update()
// Update notifications
arn.reloadContent()
2017-10-17 09:27:15 +00:00
}