aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/components/app/AppHeaderNavigation.vue
diff options
context:
space:
mode:
author简律纯 <hsiangnianian@outlook.com>2023-04-19 17:50:02 +0800
committer简律纯 <hsiangnianian@outlook.com>2023-04-19 17:50:02 +0800
commit56a6240bf700ac307342ed494d8bfbabe5c822dc (patch)
tree0b1288a2ec1cbb538c11f4c122b6a97b9c55a05f /docs/components/app/AppHeaderNavigation.vue
parent3adc965dd09490b7efa1cce9f09b0a3b30970277 (diff)
downloadHydroRoll-56a6240bf700ac307342ed494d8bfbabe5c822dc.tar.gz
HydroRoll-56a6240bf700ac307342ed494d8bfbabe5c822dc.zip
✨docs init
Diffstat (limited to 'docs/components/app/AppHeaderNavigation.vue')
-rw-r--r--docs/components/app/AppHeaderNavigation.vue94
1 files changed, 0 insertions, 94 deletions
diff --git a/docs/components/app/AppHeaderNavigation.vue b/docs/components/app/AppHeaderNavigation.vue
deleted file mode 100644
index 6f3ea91..0000000
--- a/docs/components/app/AppHeaderNavigation.vue
+++ /dev/null
@@ -1,94 +0,0 @@
-<script setup lang="ts">
-const route = useRoute()
-const { navBottomLink } = useContentHelpers()
-const { navigation } = useContent()
-const { config } = useDocus()
-
-const hasNavigation = computed(() => !!config.value.aside?.level)
-
-const filtered = computed(() => config.value.header?.exclude || [])
-
-const tree = computed(() => {
- return (navigation.value || []).filter((item: any) => {
- if (filtered.value.includes(item._path as never)) { return false }
- return true
- })
-})
-
-const isActive = (link: any) => (link.exact ? route.fullPath === link._path : route.fullPath.startsWith(link._path))
-</script>
-
-<template>
- <nav v-if="hasNavigation">
- <ul>
- <li
- v-for="link in tree"
- :key="link._path"
- >
- <NuxtLink
- class="link"
- :to="link.redirect? link.redirect : navBottomLink(link)"
- :class="{ active: isActive(link) }"
- >
- <Icon v-if="link.icon && config?.header?.showLinkIcon" :name="link.icon" />
- {{ link.title }}
- </NuxtLink>
- </li>
- </ul>
- </nav>
-</template>
-
-<style scoped lang="ts">
-css({
- nav: {
- display: 'none',
- '@lg': {
- display: 'block'
- },
- ul: {
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- flex: '1',
- maxWidth: '100%',
- truncate: true,
-
- '& > * + *': {
- marginLeft: '{space.2}'
- },
-
- li: {
- display: 'inline-flex',
- gap: '{space.1}',
- },
-
- '.link': {
- display: 'flex',
- alignItems: 'center',
- gap: '{space.2}',
- padding: '{space.2} {space.4}',
- fontSize: '{fontSize.sm}',
- borderRadius: '{radii.md}',
- outline: 'none',
- transition: 'background 200ms ease',
-
- svg: {
- display: 'inline-block'
- },
-
- '&:active,&.active,&:hover': {
- backgroundColor: '{color.gray.100}',
- '@dark': {
- backgroundColor: '{color.gray.900}',
- },
- },
-
- '&.active': {
- boxShadow: 'inset 0 2px 4px 0 rgb(0 0 0 / 0.05)',
- fontWeight: '{fontWeight.semibold}'
- }
- }
- }
- }
-})
-</style>