2024-08-12 08:41:21 +00:00
|
|
|
<template>
|
|
|
|
<v-container class="h-[calc(100vh-80px)] flex flex-col gap-3 items-center justify-center">
|
|
|
|
<v-card class="w-full max-w-[720px] overflow-auto" :loading="loading">
|
|
|
|
<v-card-text class="card-grid pa-9">
|
|
|
|
<div>
|
|
|
|
<v-avatar color="accent" icon="mdi-check-decagram" size="large" class="card-rounded mb-2" />
|
|
|
|
<h1 class="text-2xl">Confirm registration</h1>
|
|
|
|
<p>Confirm your account to unlock more abilities.</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<v-window :touch="false" :model-value="panel" class="pa-2 mx-[-0.5rem]">
|
|
|
|
<v-window-item value="confirm">
|
|
|
|
<div>
|
|
|
|
<v-expand-transition>
|
|
|
|
<v-alert v-show="error" variant="tonal" type="error" class="text-xs mb-3">
|
|
|
|
Something went wrong... {{ error }}
|
|
|
|
</v-alert>
|
|
|
|
</v-expand-transition>
|
|
|
|
|
|
|
|
<v-progress-circular v-if="!error" indeterminate size="32" color="grey-darken-3" class="mb-3" />
|
|
|
|
|
|
|
|
<h1 class="font-bold text-xl">Confirming</h1>
|
|
|
|
<p>We are confirming your account. Please stand by, this won't took a long time...</p>
|
|
|
|
</div>
|
|
|
|
</v-window-item>
|
|
|
|
<v-window-item value="callback">
|
|
|
|
<div>
|
|
|
|
<v-icon icon="mdi-fire" size="32" color="grey-darken-3" class="mb-3" />
|
|
|
|
|
|
|
|
<h1 class="font-bold text-xl">Confirmed</h1>
|
|
|
|
<p>You're done! We successfully confirmed your account.</p>
|
|
|
|
|
|
|
|
<p class="mt-3">Now you can continue to use Solarpass, we will redirect you to dashboard soon.</p>
|
|
|
|
</div>
|
|
|
|
</v-window-item>
|
|
|
|
</v-window>
|
|
|
|
</v-card-text>
|
|
|
|
</v-card>
|
|
|
|
|
|
|
|
<copyright service="passport" />
|
|
|
|
</v-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { ref } from "vue"
|
|
|
|
import { useRoute, useRouter } from "vue-router"
|
|
|
|
|
|
|
|
const config = useRuntimeConfig()
|
|
|
|
|
|
|
|
const route = useRoute()
|
|
|
|
const router = useRouter()
|
|
|
|
const auth = useUserinfo()
|
|
|
|
|
|
|
|
const error = ref<string | null>(null)
|
|
|
|
|
|
|
|
const loading = ref(false)
|
|
|
|
|
|
|
|
const panel = ref("confirm")
|
|
|
|
|
|
|
|
async function confirm() {
|
|
|
|
if (!route.query["code"]) {
|
|
|
|
error.value = "code was not exists"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-08-17 15:56:03 +00:00
|
|
|
const res = await fetch(`${config.public.solarNetworkApi}/cgi/id/users/me/confirm`, {
|
2024-08-12 08:41:21 +00:00
|
|
|
method: "POST",
|
|
|
|
headers: { "Content-Type": "application/json" },
|
|
|
|
body: JSON.stringify({
|
|
|
|
code: route.query["code"],
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
if (res.status !== 200) {
|
|
|
|
error.value = await res.text()
|
|
|
|
} else {
|
|
|
|
loading.value = true
|
|
|
|
panel.value = "callback"
|
|
|
|
await auth.readProfiles()
|
|
|
|
await router.push({ name: "dashboard" })
|
|
|
|
}
|
|
|
|
loading.value = false
|
|
|
|
}
|
|
|
|
|
|
|
|
confirm()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.card-grid {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
gap: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.card-grid {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-rounded {
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
</style>
|