All files / lib notifications.js

0% Statements 0/10
0% Branches 0/8
0% Functions 0/3
0% Lines 0/9

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36                                                                       
import { getSettings } from './settings.svelte';
import { toasts } from './toasts.svelte';
 
/**
 * Ask the user for permission to send system notifications
 */
export async function askForNotificationPermission() {
	if (Notification.permission === 'default') {
		try {
			await Notification.requestPermission();
		} catch (e) {
			console.error('Notification permission request failed', e);
			// Ignore - user probably dismissed the permission prompt
		}
	} else if (Notification.permission === 'denied') {
		toasts.error(
			'Vous avez refusé les notifications système. Veuillez changer cela dans les paramètres de votre navigateur.'
		);
	}
}
 
/**
 * Send a system notification if permission was granted
 * @param {string} title
 * @param {NotificationOptions} options
 * @returns
 */
export async function sendNotification(title, options) {
	if (!hasNotificationsEnabled()) return;
	new Notification(title, options);
}
 
export function hasNotificationsEnabled() {
	return Notification.permission === 'granted' && getSettings().notifications;
}