elk/components/nav/NavTitle.vue

49 wiersze
1.2 KiB
Vue
Czysty Zwykły widok Historia

<script setup lang="ts">
const { env } = useBuildInfo()
const router = useRouter()
2023-01-11 04:31:35 +00:00
const back = ref<any>('')
const nuxtApp = useNuxtApp()
function onClickLogo() {
nuxtApp.hooks.callHook('elk-logo:click')
}
2023-01-11 04:31:35 +00:00
onMounted(() => {
back.value = router.options.history.state.back
})
router.afterEach(() => {
back.value = router.options.history.state.back
})
2022-11-27 16:57:16 +00:00
</script>
2022-11-14 03:33:09 +00:00
<template>
<div flex justify-between sticky top-0 bg-base z-1 py-4 native:py-7 data-tauri-drag-region>
2023-01-05 12:35:08 +00:00
<NuxtLink
flex items-end gap-3
2023-01-05 12:35:08 +00:00
py2 px-5
text-2xl
select-none
2023-01-05 12:35:08 +00:00
focus-visible:ring="2 current"
to="/home"
@click.prevent="onClickLogo"
2023-01-05 12:35:08 +00:00
>
2023-01-19 12:42:05 +00:00
<NavLogo shrink-0 aspect="1/1" sm:h-8 xl:h-10 class="rtl-flip" />
<div hidden xl:block text-secondary>
{{ $t('app_name') }} <sup text-sm italic mt-1>{{ env === 'release' ? 'alpha' : env }}</sup>
2023-01-05 12:35:08 +00:00
</div>
</NuxtLink>
<div
hidden xl:flex items-center me-8 mt-2
2023-01-19 18:32:25 +00:00
:class="{ 'pointer-events-none op0': !back || back === '/', 'xl:flex': $route.name !== 'tag' }"
>
2023-01-05 12:35:08 +00:00
<NuxtLink
:aria-label="$t('nav.back')"
2023-01-05 12:35:08 +00:00
@click="$router.go(-1)"
>
<div i-ri:arrow-left-line class="rtl-flip" btn-text />
</NuxtLink>
2022-11-14 03:33:09 +00:00
</div>
2023-01-05 12:35:08 +00:00
</div>
2022-11-14 03:33:09 +00:00
</template>