dd05ee3a65
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
200 lines
5.3 KiB
Vue
200 lines
5.3 KiB
Vue
<template>
|
|
<div>
|
|
<template v-if="!store.state.serverConfiguration?.public">
|
|
<h2>Push Notifications</h2>
|
|
<div>
|
|
<button
|
|
id="pushNotifications"
|
|
type="button"
|
|
class="btn"
|
|
:disabled="
|
|
store.state.pushNotificationState !== 'supported' &&
|
|
store.state.pushNotificationState !== 'subscribed'
|
|
"
|
|
@click="onPushButtonClick"
|
|
>
|
|
<template v-if="store.state.pushNotificationState === 'subscribed'">
|
|
Unsubscribe from push notifications
|
|
</template>
|
|
<template v-else-if="store.state.pushNotificationState === 'loading'">
|
|
Loading…
|
|
</template>
|
|
<template v-else> Subscribe to push notifications </template>
|
|
</button>
|
|
<div v-if="store.state.pushNotificationState === 'nohttps'" class="error">
|
|
<strong>Warning</strong>: Push notifications are only supported over HTTPS
|
|
connections.
|
|
</div>
|
|
<div v-if="store.state.pushNotificationState === 'unsupported'" class="error">
|
|
<strong>Warning</strong>:
|
|
<span>Push notifications are not supported by your browser.</span>
|
|
|
|
<div v-if="isIOS" class="apple-push-unsupported">
|
|
Safari does
|
|
<a
|
|
href="https://bugs.webkit.org/show_bug.cgi?id=182566"
|
|
target="_blank"
|
|
rel="noopener"
|
|
>not support the web push notification specification</a
|
|
>, and because all browsers on iOS use Safari under the hood, The Lounge is
|
|
unable to provide push notifications on iOS devices.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<h2>Browser Notifications</h2>
|
|
<div>
|
|
<label class="opt">
|
|
<input
|
|
id="desktopNotifications"
|
|
:checked="store.state.settings.desktopNotifications"
|
|
:disabled="store.state.desktopNotificationState === 'nohttps'"
|
|
type="checkbox"
|
|
name="desktopNotifications"
|
|
/>
|
|
Enable browser notifications<br />
|
|
<div v-if="store.state.desktopNotificationState === 'unsupported'" class="error">
|
|
<strong>Warning</strong>: Notifications are not supported by your browser.
|
|
</div>
|
|
<div
|
|
v-if="store.state.desktopNotificationState === 'nohttps'"
|
|
id="warnBlockedDesktopNotifications"
|
|
class="error"
|
|
>
|
|
<strong>Warning</strong>: Notifications are only supported over HTTPS
|
|
connections.
|
|
</div>
|
|
<div
|
|
v-if="store.state.desktopNotificationState === 'blocked'"
|
|
id="warnBlockedDesktopNotifications"
|
|
class="error"
|
|
>
|
|
<strong>Warning</strong>: Notifications are blocked by your browser.
|
|
</div>
|
|
</label>
|
|
</div>
|
|
<div>
|
|
<label class="opt">
|
|
<input
|
|
:checked="store.state.settings.notification"
|
|
type="checkbox"
|
|
name="notification"
|
|
/>
|
|
Enable notification sound
|
|
</label>
|
|
</div>
|
|
<div>
|
|
<div class="opt">
|
|
<button id="play" @click.prevent="playNotification">Play sound</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<label class="opt">
|
|
<input
|
|
:checked="store.state.settings.notifyAllMessages"
|
|
type="checkbox"
|
|
name="notifyAllMessages"
|
|
/>
|
|
Enable notification for all messages
|
|
</label>
|
|
</div>
|
|
|
|
<div v-if="!store.state.serverConfiguration?.public">
|
|
<label class="opt">
|
|
<label for="highlights" class="opt">
|
|
Custom highlights
|
|
<span
|
|
class="tooltipped tooltipped-n tooltipped-no-delay"
|
|
aria-label="If a message contains any of these comma-separated
|
|
expressions, it will trigger a highlight."
|
|
>
|
|
<button class="extra-help" />
|
|
</span>
|
|
</label>
|
|
<input
|
|
id="highlights"
|
|
:value="store.state.settings.highlights"
|
|
type="text"
|
|
name="highlights"
|
|
class="input"
|
|
autocomplete="off"
|
|
placeholder="Comma-separated, e.g.: word, some more words, anotherword"
|
|
/>
|
|
</label>
|
|
</div>
|
|
|
|
<div v-if="!store.state.serverConfiguration?.public">
|
|
<label class="opt">
|
|
<label for="highlightExceptions" class="opt">
|
|
Highlight exceptions
|
|
<span
|
|
class="tooltipped tooltipped-n tooltipped-no-delay"
|
|
aria-label="If a message contains any of these comma-separated
|
|
expressions, it will not trigger a highlight even if it contains
|
|
your nickname or expressions defined in custom highlights."
|
|
>
|
|
<button class="extra-help" />
|
|
</span>
|
|
</label>
|
|
<input
|
|
id="highlightExceptions"
|
|
:value="store.state.settings.highlightExceptions"
|
|
type="text"
|
|
name="highlightExceptions"
|
|
class="input"
|
|
autocomplete="off"
|
|
placeholder="Comma-separated, e.g.: word, some more words, anotherword"
|
|
/>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import {computed, defineComponent} from "vue";
|
|
import {useStore} from "../../js/store";
|
|
import webpush from "../../js/webpush";
|
|
|
|
export default defineComponent({
|
|
name: "NotificationSettings",
|
|
setup() {
|
|
const store = useStore();
|
|
|
|
const isIOS = computed(
|
|
() =>
|
|
[
|
|
"iPad Simulator",
|
|
"iPhone Simulator",
|
|
"iPod Simulator",
|
|
"iPad",
|
|
"iPhone",
|
|
"iPod",
|
|
].includes(navigator.platform) ||
|
|
// iPad on iOS 13 detection
|
|
(navigator.userAgent.includes("Mac") && "ontouchend" in document)
|
|
);
|
|
|
|
const playNotification = () => {
|
|
const pop = new Audio();
|
|
pop.src = "audio/pop.wav";
|
|
|
|
// eslint-disable-next-line
|
|
pop.play();
|
|
};
|
|
|
|
const onPushButtonClick = () => {
|
|
webpush.togglePushSubscription();
|
|
};
|
|
|
|
return {
|
|
isIOS,
|
|
store,
|
|
playNotification,
|
|
onPushButtonClick,
|
|
};
|
|
},
|
|
});
|
|
</script>
|