2023-01-01 19:24:22 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
defineProps<{
|
|
|
|
title?: string
|
|
|
|
message: string
|
|
|
|
}>()
|
|
|
|
const { modelValue } = defineModel<{
|
|
|
|
modelValue: boolean
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
v-if="modelValue"
|
|
|
|
role="alert"
|
|
|
|
aria-describedby="notification-failed"
|
|
|
|
flex="~ col"
|
|
|
|
gap-1 text-sm
|
|
|
|
pt-1 ps-2 pe-1 pb-2
|
|
|
|
text-red-600 dark:text-red-400
|
|
|
|
border="~ base rounded red-600 dark:red-400"
|
|
|
|
>
|
|
|
|
<head id="notification-failed" flex justify-between>
|
|
|
|
<div flex items-center gap-x-2 font-bold>
|
|
|
|
<div aria-hidden="true" i-ri:error-warning-fill />
|
2023-01-05 08:47:58 +00:00
|
|
|
<p>{{ title ?? $t('settings.notifications.push_notifications.subscription_error.title') }}</p>
|
2023-01-01 19:24:22 +00:00
|
|
|
</div>
|
2023-01-05 08:47:58 +00:00
|
|
|
<CommonTooltip placement="bottom" :content="$t('settings.notifications.push_notifications.subscription_error.clear_error')">
|
2023-01-01 19:24:22 +00:00
|
|
|
<button
|
|
|
|
flex rounded-4 p1
|
|
|
|
hover:bg-active cursor-pointer transition-100
|
2023-01-05 08:47:58 +00:00
|
|
|
:aria-label="$t('settings.notifications.push_notifications.subscription_error.clear_error')"
|
2023-01-01 19:24:22 +00:00
|
|
|
@click="modelValue = false"
|
|
|
|
>
|
2023-01-08 07:49:32 +00:00
|
|
|
<span aria-hidden="true" w="1.75em" h="1.75em" i-ri:close-line />
|
2023-01-01 19:24:22 +00:00
|
|
|
</button>
|
|
|
|
</CommonTooltip>
|
|
|
|
</head>
|
|
|
|
<p>{{ message }}</p>
|
|
|
|
</div>
|
|
|
|
</template>
|