elk/components/aria/AriaAnnouncer.vue

56 lines
1.4 KiB
Vue
Raw Normal View History

2022-12-23 16:08:36 +01:00
<script setup lang="ts">
2024-02-24 17:46:14 +01:00
import type { LocaleObject } from '@nuxtjs/i18n'
import type { AriaAnnounceType, AriaLive } from '~/composables/aria'
2022-12-23 16:08:36 +01:00
const router = useRouter()
const { t, locale, locales } = useI18n()
const { ariaAnnouncer, announce } = useAriaAnnouncer()
const localeMap = (locales.value as LocaleObject[]).reduce((acc, l) => {
acc[l.code!] = l.name!
return acc
}, {} as Record<string, string>)
const ariaLive = ref<AriaLive>('polite')
const ariaMessage = ref<string>('')
2022-12-23 16:08:36 +01:00
function onMessage(event: AriaAnnounceType, message?: string) {
2022-12-23 16:08:36 +01:00
if (event === 'announce')
ariaMessage.value = message!
2022-12-23 16:08:36 +01:00
else if (event === 'mute')
ariaLive.value = 'off'
2022-12-23 16:08:36 +01:00
else
ariaLive.value = 'polite'
2022-12-23 16:08:36 +01:00
}
watch(locale, (l, ol) => {
if (ol) {
announce(t('a11y.locale_changing', [localeMap[ol] ?? ol]))
setTimeout(() => {
announce(t('a11y.locale_changed', [localeMap[l] ?? l]))
}, 1000)
}
}, { immediate: true })
onMounted(() => {
ariaAnnouncer.on(onMessage)
router.beforeEach(() => {
announce(t('a11y.loading_page'))
})
router.afterEach((to, from) => {
from && setTimeout(() => {
requestAnimationFrame(() => {
const title = document.title.trim().split('|')
announce(t('a11y.route_loaded', [title[0]]))
})
}, 512)
})
})
</script>
<template>
<p sr-only role="status" :aria-live="ariaLive">
{{ ariaMessage }}
</p>
</template>