perf(pages): import vue-recaptcha on a per-page basis

This commit is contained in:
parent 841637e233
commit 568c921251
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

73
app.vue

@ -1,26 +1,75 @@
<script lang="ts" setup> <script lang="ts" setup>
import { theme } from 'ant-design-vue'; import { theme } from "ant-design-vue";
import { IUser } from './models/user'; import { IUser } from "./models/user";
const {data: user}: any = await useApiFetch("/auth/session")
provide("dark", user?.profile?.nightMode || false)
const dop = useAuth().data?.value as any;
let darkBool = dop?.user?.profile?.nightMode || false;
provide("user", ref(dop?.user || null));
provide("dark", darkBool);
useHead({
bodyAttrs: {
"data-theme": computed(() => {
return darkBool ? "dark" : undefined;
}).value,
},
});
let loaded = ref<boolean>(false);
provide("loaded", loaded);
// let loaded = ref<boolean[]>([]);
// provide("loaded", {
// loaded,
// pushState() {
// loaded.value.push(false)
// },
// flipLast() {
// loaded.value[ loaded.value.length ] = true
// }
// });
</script> </script>
<template> <template>
<a-config-provider :theme="{ <a-config-provider
:theme="{
token: { token: {
colorPrimary: '#ff3c8e', colorPrimary: '#ff2883',
colorSuccess: '#2be396', colorSuccess: '#2be396',
colorWarning: '#face14', colorWarning: '#face14',
colorInfo: '#17e3ff' colorInfo: '#15c6e3',
colorTextBase: darkBool ? '#fff' : '#101010',
}, },
algorithm: ((user as IUser)?.profile?.nightMode || false) ? theme.darkAlgorithm : theme.defaultAlgorithm algorithm: darkBool ? theme.darkAlgorithm : theme.defaultAlgorithm,
}"> }"
>
<NuxtLayout> <NuxtLayout>
<NuxtPage /> <NuxtPage />
<!-- <NuxtWelcome /> --> <!-- <NuxtWelcome /> -->
</NuxtLayout> </NuxtLayout>
</a-config-provider> </a-config-provider>
</template> </template>
<style>
body[data-theme="dark"],
body[data-theme="dark"] .alayhead {
background-color: #141414;
color: #fff;
}
html {
background: #f5f5f5;
}
html,
body {
height: 100%;
}
html:has(body[data-theme="dark"]) {
background-color: #141414 !important;
}
body {
margin: 0px !important;
}
body:not([data-theme="dark"]) .alayhead {
background-color: #f5f5f5 !important;
}
</style>