-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtop-navigation.vue
130 lines (124 loc) · 3.51 KB
/
top-navigation.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<script setup lang="ts">
import {
chakra,
useColorMode,
CHStack,
CFlex,
CIcon,
CIconButton,
CLink
} from '@chakra-ui/vue-next';
import { onMounted, ref } from 'vue';
import SponsorButton from '../SponsorButton.server.vue';
import VersionSwitcher from '../VersionSwitcher';
import siteConfig from '@/config/site-config';
const { colorMode, toggleColorMode } = useColorMode();
const headerRef = ref<{ $el: HTMLDivElement } | undefined>(undefined);
const height = ref(0);
onMounted(() => {
height.value = headerRef.value?.$el.getBoundingClientRect().height ?? 0;
});
</script>
<template>
<chakra.header
ref="headerRef"
transition="box-shadow 0.2s, background-color 0.2s"
pos="sticky"
top="0"
z-index="overlay"
left="0"
right="0"
width="full"
backdrop-filter="saturate(120%) blur(5px)"
border-bottom="1px solid"
border-color="emerald.500"
border-bottom-color="emerald.500"
>
<chakra.nav height="4.5rem" mx="auto" max-w="8xl">
<!-- content -->
<CFlex w="100%" h="100%" px="6" align="center" justify="space-between">
<CFlex align="center">
<nuxt-link prefetch to="/">
<chakra.a
display="block"
aria-label="Chakra UI Vue, Back to homepage"
>
<ChakraLogo />
</chakra.a>
</nuxt-link>
</CFlex>
<!-- nav -->
<CFlex
justify="flex-end"
w="100%"
max-w="1100px"
align="center"
color="gray.400"
>
<VersionSwitcher />
<CHStack
spacing="5"
:display="{ base: 'none', md: 'flex' }"
align-items="center"
>
<CLink
is-external
aria-label="Go to Chakra UI GitHub page"
:href="siteConfig.repo.url"
>
<CIcon
display="block"
transition="color 0.2s"
w="5"
h="5"
:_hover="{ color: 'gray.600' }"
name="github"
/>
</CLink>
<CLink
is-external
aria-label="Go to Chakra UI Discord page"
:href="siteConfig.discord"
>
<CIcon
display="block"
transition="color 0.2s"
w="5"
h="5"
:_hover="{ color: 'gray.600' }"
name="discord"
/>
</CLink>
<CLink
is-external
aria-label="Go to Chakra UI YouTube channel"
:href="siteConfig.youtube"
>
<CIcon
display="block"
transition="color 0.2s"
w="5"
h="5"
:_hover="{ color: 'gray.600' }"
name="youtube"
/>
</CLink>
<CIconButton
aria-label="Switch color mode"
variant="ghost"
size="sm"
type="button"
@click="toggleColorMode"
>
<IconsMoonIcon v-if="colorMode === 'light'" />
<IconsSunIcon v-else />
</CIconButton>
<SponsorButton ml="5" />
</CHStack>
<!-- <mobile-nav-button @click="isOpen = true"></mobile-nav-button> -->
</CFlex>
</CFlex>
<!-- <mobile-nav :is-open="isOpen" @close="isOpen = false"></mobile-nav> -->
</chakra.nav>
</chakra.header>
</template>