-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
133 lines (125 loc) · 3.22 KB
/
app.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
131
132
133
<script setup lang="ts">
import { socials, links } from '~/constants'
const { loggedIn, clear, user } = useUserSession()
const colorMode = useColorMode()
function toggleColorMode() {
colorMode.preference = colorMode.preference === 'dark' ? 'light' : 'dark'
}
watch(loggedIn, () => {
if (!loggedIn.value) {
navigateTo('/')
}
})
const items = [
[
{
label: 'Todos',
icon: 'i-heroicons-check-circle',
to: '/todos',
},
...links,
],
[
{
label: 'Logout',
icon: 'i-heroicons-arrow-left-on-rectangle',
click: clear,
},
],
]
const card = ref()
const contentHeight = ref(0)
onMounted(() => {
const header = card.value?.$el.children[0]
const footer = card.value?.$el.children[2]
contentHeight.value = card.value?.$el.clientHeight - header.clientHeight - footer.clientHeight
})
</script>
<template>
<UContainer :ui="{ base: ' ' }">
<UCard
ref="card"
:ui="{
divide: '',
body: { padding: '' },
base: 'min-h-screen m-8',
header: { base: 'sticky top-0 z-10 flex justify-between items-center gap-10', background: 'bg-white dark:bg-gray-900 border-b border-gray-400/40 rounded-t-lg' },
footer: { base: 'sticky bottom-0 z-10 flex justify-between items-center gap-10', background: 'backdrop-blur border-b border-gray-400/40 border-t border-gray-400/40 rounded-b-lg' },
}"
>
<template #header>
<NuxtLink to="/">
<ClientOnly>
<template #placeholder>
<img
class="w-48"
src="/logo-light.png"
>
</template>
<img
class="w-48"
:src="`/logo-${colorMode.value}.png`"
>
</ClientOnly>
</NuxtLink>
<div
id="actions"
class="w-full"
/>
<UButton
v-if="!user?.login"
to="/api/auth/github"
icon="i-simple-icons-github"
label="Login with GitHub"
color="black"
external
/>
<UDropdown
v-else
:items="items"
>
<UButton
color="white"
trailing-icon="i-heroicons-chevron-down-20-solid"
>
<UAvatar
:src="`https://github.com/${user.login}.png`"
:alt="user.login"
size="2xs"
/>
{{ user.login }}
</UButton>
</UDropdown>
</template>
<NuxtPage :style="{ 'min-height': `${contentHeight}px` }" />
<template
#footer
>
<div
id="footer"
ref="footer"
class="w-full"
/>
<div class="flex gap-4">
<UButton
v-for="link of socials"
:key="link.to"
square
variant="soft"
color="black"
:icon="link.icon"
:to="link.to"
/>
<UButton
square
variant="soft"
color="black"
:icon="colorMode.preference === 'dark' ? 'i-heroicons-moon' : 'i-heroicons-sun'"
@click="toggleColorMode"
/>
</div>
</template>
</UCard>
</UContainer>
<UNotifications />
</template>