2022-12-17 23:29:16 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
defineProps<{
|
2022-12-25 12:45:37 +00:00
|
|
|
showReAuthMessage: boolean
|
2022-12-17 23:29:16 +00:00
|
|
|
withHeader?: boolean
|
|
|
|
busy?: boolean
|
|
|
|
animate?: boolean
|
|
|
|
}>()
|
|
|
|
|
|
|
|
defineEmits(['hide', 'subscribe'])
|
2022-12-17 23:55:00 +00:00
|
|
|
const isLegacyAccount = computed(() => !currentUser.value?.vapidKey)
|
2022-12-17 23:29:16 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div flex="~ col" role="alert" aria-labelledby="notifications-warning" :class="withHeader ? 'border-b border-base' : null">
|
|
|
|
<header v-if="withHeader" flex items-center pb-2>
|
|
|
|
<h2 id="notifications-warning" text-md font-bold w-full>
|
|
|
|
{{ $t('notification.settings.warning.enable_title') }}
|
|
|
|
</h2>
|
|
|
|
<button
|
|
|
|
flex rounded-4
|
|
|
|
type="button"
|
|
|
|
:title="$t('notification.settings.warning.enable_close')"
|
|
|
|
hover:bg-active cursor-pointer transition-100
|
|
|
|
:disabled="busy"
|
|
|
|
@click="$emit('hide')"
|
|
|
|
>
|
2022-12-19 20:31:12 +00:00
|
|
|
<span aria-hidden="true" i-ri:close-line />
|
2022-12-17 23:29:16 +00:00
|
|
|
</button>
|
|
|
|
</header>
|
|
|
|
<p>
|
|
|
|
{{ $t(withHeader ? 'notification.settings.warning.enable_description' : 'notification.settings.warning.enable_description_short') }}
|
|
|
|
</p>
|
2022-12-25 12:45:37 +00:00
|
|
|
<p v-if="isLegacyAccount && showReAuthMessage">
|
|
|
|
{{ $t('notification.settings.warning.re_auth') }}
|
|
|
|
</p>
|
2022-12-17 23:29:16 +00:00
|
|
|
<button
|
|
|
|
btn-outline rounded-full font-bold py4 flex="~ gap2 center" m5
|
|
|
|
type="button"
|
|
|
|
:class="busy ? 'border-transparent' : null"
|
2022-12-17 23:55:00 +00:00
|
|
|
:disabled="busy || isLegacyAccount"
|
2022-12-17 23:29:16 +00:00
|
|
|
@click="$emit('subscribe')"
|
|
|
|
>
|
|
|
|
<span aria-hidden="true" :class="busy && animate ? 'i-ri:loader-2-fill animate-spin' : 'i-ri:check-line'" />
|
|
|
|
{{ $t('notification.settings.warning.enable_desktop') }}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</template>
|