-
-
Notifications
You must be signed in to change notification settings - Fork 217
/
app.vue
174 lines (160 loc) · 5.03 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<script setup>
// eslint-disable-next-line import/no-extraneous-dependencies
import 'fork-corner/dist/fork-corner.css';
import { storeToRefs } from 'pinia';
import initForkCorner from '~/fork-corner';
import AppSidebar from '~/components/AppSidebar.vue';
import { useAppStore } from '~/stores/app';
import { useConversationsStore } from '~/stores/conversations';
const appStore = useAppStore();
const conversationsStore = useConversationsStore();
const {
isMenuOpen,
isMenuOpening,
} = storeToRefs(appStore);
const {
conversationTitle,
} = storeToRefs(conversationsStore);
useHead({
title: `${conversationTitle.value} - PandoraAI`,
meta: [
{
name: 'viewport',
content: 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no',
},
],
});
onMounted(() => {
initForkCorner();
});
</script>
<template>
<a
href="https://github.com/waylaidwanderer/PandoraAI"
target="_blank"
id="fork-corner"
class="fork-corner fc-size-small fc-pos-tr fc-animate fc-theme-github"
title="Fork me on GitHub"
></a>
<div class="flex flex-row min-h-screen text-slate-300">
<AppSidebar/>
<Transition name="fade">
<div
v-if="isMenuOpen"
@click="isMenuOpen = false"
class="fixed inset-0 bg-black/30 z-10 lg:hidden" aria-hidden="true"
/>
</Transition>
<div
class="flex flex-col flex-1 w-full"
:class="{
'lg:ml-[20rem] transition-all ease-in-out': isMenuOpening,
'lg:ml-0': !isMenuOpening,
}"
>
<header class="px-3 py-6 text-center bg-purple-500/[15%] shadow relative">
<!-- Menu icon -->
<button
@click="isMenuOpen = true"
class="
absolute top-0 left-0 p-3 ml-3 mt-3 text-white/70 hover:text-white/90 z-10
focus:outline-none
transition duration-300 ease-in-out
lg:hidden
"
>
<Icon name="bx:bx-menu" class="w-8 h-8" />
</button>
<!-- Show/Hide sidebar button (lg) -->
<button
@click="isMenuOpen = !isMenuOpen"
class="
absolute top-0 left-0 p-3 ml-3 mt-3 text-white/70 hover:text-white/90 z-10
focus:outline-none
transition duration-300 ease-in-out
hidden lg:block
"
>
<Icon
:name="isMenuOpen ? 'bx:bx-chevron-left' : 'bx:bx-chevron-right'"
class="w-8 h-8"
/>
</button>
<!-- Title -->
<h1 class="text-2xl font-bold text-white/80 drop-shadow-md">Pandora<span class="font-light">AI</span></h1>
</header>
<main class="flex flex-grow py-2">
<Chat/>
</main>
<footer class="px-3 pb-6 text-center">
<span class="text-xs font-light text-slate-400">
powered by
<a href="https://github.com/waylaidwanderer/node-chatgpt-api" target="_blank">
https://github.com/waylaidwanderer/node-chatgpt-api
</a>
</span>
</footer>
</div>
</div>
</template>
<style>
:root {
--background: hsl(240, 80%, 10%);
}
body {
background:
radial-gradient(
60vmax 60vmax at 0% 0%,
hsla(240, 100%, 2%, 0.9) 0%,
hsla(240, 100%, 2%, 0) 95%),
radial-gradient(
80vmax 50vmax at 110% -10%,
hsla(175, 100%, 60%, 0.9) 0%,
hsla(200, 100%, 50%, 0.5) 50%,
hsla(240, 100%, 50%, 0) 95%),
radial-gradient(
90vmax 50vmax at 50vmax 50vmax,
hsla(260, 100%, 60%, 0.9) 0%,
hsla(240, 100%, 60%, 0) 95%)
var(--background);
}
footer a {
@apply opacity-75 hover:opacity-100 transition duration-300 ease-in-out;
background: linear-gradient(to right, #37feff 0%, #bd7bff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.15s ease-in-out;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
#fork-corner {
z-index: 41;
top: 5px !important;
right: 5px !important;
}
.fork-corner.fc-theme-github + div {
top: -88px !important;
right: -88px !important;
@apply shadow bg-black/50 z-40;
}
.fork-corner.fc-theme-github > i {
@apply text-white/80;
font-size: 35px !important;
}
::-webkit-scrollbar {
width: 9px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(155, 155, 155, 0.5);
border-radius: 20px;
border: transparent;
}
</style>