mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
115 lines
2.9 KiB
Vue
115 lines
2.9 KiB
Vue
<!-- eslint-disable vue/no-v-html -->
|
|
<template>
|
|
<div>
|
|
<NuxtLoadingIndicator />
|
|
|
|
<Header :links="links" />
|
|
|
|
<UContainer>
|
|
<UMain>
|
|
<UPage>
|
|
<UPageError :error="error" />
|
|
</UPage>
|
|
</UMain>
|
|
</UContainer>
|
|
|
|
<Footer />
|
|
|
|
<ClientOnly>
|
|
<LazyUDocsSearch :files="files" :navigation="navigation" :links="links" :fuse="{ resultLimit: 1000 }" />
|
|
</ClientOnly>
|
|
|
|
<UNotifications>
|
|
<template #title="{ title }">
|
|
<span v-html="title" />
|
|
</template>
|
|
</UNotifications>
|
|
<UModals />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { NuxtError } from '#app'
|
|
import type { ParsedContent } from '@nuxt/content/dist/runtime/types'
|
|
|
|
useSeoMeta({
|
|
title: 'Page not found',
|
|
description: 'We are sorry but this page could not be found.'
|
|
})
|
|
|
|
defineProps<{
|
|
error: NuxtError
|
|
}>()
|
|
|
|
const route = useRoute()
|
|
const colorMode = useColorMode()
|
|
const { branch } = useContentSource()
|
|
|
|
const { data: nav } = await useAsyncData('navigation', () => fetchContentNavigation())
|
|
const { data: files } = useLazyFetch<ParsedContent[]>('/api/search.json', { default: () => [], server: false })
|
|
|
|
// Computed
|
|
|
|
const navigation = computed(() => {
|
|
if (branch.value?.name === 'dev') {
|
|
const dev = nav.value.find(item => item._path === '/dev')?.children
|
|
const pro = nav.value.find(item => item._path === '/pro')
|
|
|
|
return [
|
|
...dev,
|
|
...(pro ? [pro] : [])
|
|
]
|
|
}
|
|
|
|
return nav.value?.filter(item => item._path !== '/dev') || []
|
|
})
|
|
|
|
const color = computed(() => colorMode.value === 'dark' ? '#18181b' : 'white')
|
|
|
|
const links = computed(() => {
|
|
return [{
|
|
label: 'Docs',
|
|
icon: 'i-heroicons-book-open',
|
|
to: branch.value?.name === 'dev' ? '/dev/getting-started' : '/getting-started',
|
|
active: branch.value?.name === 'dev' ? (route.path.startsWith('/dev/getting-started') || route.path.startsWith('/dev/components')) : (route.path.startsWith('/getting-started') || route.path.startsWith('/components'))
|
|
}, ...(navigation.value.find(item => item._path === '/pro') ? [{
|
|
label: 'Pro',
|
|
icon: 'i-heroicons-square-3-stack-3d',
|
|
to: '/pro',
|
|
active: route.path.startsWith('/pro/getting-started') || route.path.startsWith('/pro/components') || route.path.startsWith('/pro/prose')
|
|
}, {
|
|
label: 'Pricing',
|
|
icon: 'i-heroicons-credit-card',
|
|
to: '/pro/pricing'
|
|
}, {
|
|
label: 'Templates',
|
|
icon: 'i-heroicons-computer-desktop',
|
|
to: '/pro/templates'
|
|
}] : []), {
|
|
label: 'Releases',
|
|
icon: 'i-heroicons-rocket-launch',
|
|
to: '/releases'
|
|
}].filter(Boolean)
|
|
})
|
|
|
|
// Head
|
|
|
|
useHead({
|
|
meta: [
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
|
{ key: 'theme-color', name: 'theme-color', content: color }
|
|
],
|
|
link: [
|
|
{ rel: 'icon', type: 'image/svg+xml', href: '/icon.svg' }
|
|
],
|
|
htmlAttrs: {
|
|
lang: 'en'
|
|
}
|
|
})
|
|
|
|
// Provide
|
|
|
|
provide('navigation', navigation)
|
|
provide('files', files)
|
|
</script>
|