Add button to request notification permission
This commit is contained in:
parent
6e5ae038b7
commit
1b5c434afc
@ -1,5 +1,13 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
|
<button
|
||||||
|
class="notification-request"
|
||||||
|
v-show="!canNotify"
|
||||||
|
@click="requestNotification"
|
||||||
|
>
|
||||||
|
Enable Notifications
|
||||||
|
</button>
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Callsign</th>
|
<th>Callsign</th>
|
||||||
@ -38,17 +46,9 @@ const messages = ref([]);
|
|||||||
const messagesFromStation = ref({});
|
const messagesFromStation = ref({});
|
||||||
const now = ref(new Date());
|
const now = ref(new Date());
|
||||||
const trackedStations = ref(config.trackedStations);
|
const trackedStations = ref(config.trackedStations);
|
||||||
|
const canNotify = ref(Notification.permission === 'granted');
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
// request notification permissions
|
|
||||||
if (Notification.permission !== 'granted') {
|
|
||||||
Notification.requestPermission((permission) => {
|
|
||||||
if (permission === 'granted') {
|
|
||||||
new Notification('Test notification', { body: 'whatever' });
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Connect to websocket aprs stream
|
// Connect to websocket aprs stream
|
||||||
connectToStream();
|
connectToStream();
|
||||||
|
|
||||||
@ -103,9 +103,29 @@ function handleMessage(packet) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function requestNotification() {
|
||||||
|
// request notification permissions
|
||||||
|
if (Notification.permission !== 'granted') {
|
||||||
|
Notification.requestPermission((permission) => {
|
||||||
|
canNotify.value = permission;
|
||||||
|
if (permission === 'granted') {
|
||||||
|
new Notification('Test notification', { body: 'whatever' });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
.notification-request {
|
||||||
|
position: fixed;
|
||||||
|
right: 1em;
|
||||||
|
bottom: 1em;
|
||||||
|
z-index: 1;
|
||||||
|
font-size: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user