|
|
|
<script setup lang="ts">
|
|
|
|
import type { RuleObject } from 'ant-design-vue/es/form'
|
|
|
|
import {
|
|
|
|
definePageMeta,
|
|
|
|
extractSdkResponseErrorMsg,
|
|
|
|
isEmail,
|
|
|
|
navigateTo,
|
|
|
|
reactive,
|
|
|
|
ref,
|
|
|
|
useApi,
|
|
|
|
useGlobal,
|
|
|
|
useI18n,
|
|
|
|
useSidebar,
|
|
|
|
} from '#imports'
|
|
|
|
|
|
|
|
const { signIn: _signIn } = useGlobal()
|
|
|
|
|
|
|
|
const { api, isLoading } = useApi()
|
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
|
|
|
useSidebar({ hasSidebar: false })
|
|
|
|
|
|
|
|
definePageMeta({
|
|
|
|
requiresAuth: false,
|
|
|
|
title: 'title.headLogin',
|
|
|
|
})
|
|
|
|
|
|
|
|
const formValidator = ref()
|
|
|
|
|
|
|
|
let error = $ref<string | null>(null)
|
|
|
|
|
|
|
|
const form = reactive({
|
|
|
|
email: '',
|
|
|
|
password: '',
|
|
|
|
})
|
|
|
|
|
|
|
|
const formRules: Record<string, RuleObject[]> = {
|
|
|
|
email: [
|
|
|
|
// E-mail is required
|
|
|
|
{ required: true, message: t('msg.error.signUpRules.emailReqd') },
|
|
|
|
// E-mail must be valid format
|
|
|
|
{
|
|
|
|
validator: (_: unknown, v: string) => {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
if (isEmail(v)) return resolve()
|
|
|
|
reject(new Error(t('msg.error.signUpRules.emailInvalid')))
|
|
|
|
})
|
|
|
|
},
|
|
|
|
message: t('msg.error.signUpRules.emailInvalid'),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
password: [
|
|
|
|
// Password is required
|
|
|
|
{ required: true, message: t('msg.error.signUpRules.passwdRequired') },
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
async function signIn() {
|
|
|
|
if (!formValidator.value.validate()) return
|
|
|
|
|
|
|
|
resetError()
|
|
|
|
|
|
|
|
api.auth
|
|
|
|
.signin(form)
|
|
|
|
.then(async ({ token }) => {
|
|
|
|
_signIn(token!)
|
|
|
|
await navigateTo('/')
|
|
|
|
})
|
|
|
|
.catch(async (err) => {
|
|
|
|
// todo: errors should not expose what was wrong (i.e. do not show "Password is wrong" messages)
|
|
|
|
error = await extractSdkResponseErrorMsg(err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetError() {
|
|
|
|
if (error) error = null
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<NuxtLayout>
|
|
|
|
<a-form
|
|
|
|
ref="formValidator"
|
|
|
|
:model="form"
|
|
|
|
layout="vertical"
|
|
|
|
class="bg-primary/5 signin h-full flex justify-center items-center nc-form-signin"
|
|
|
|
@finish="signIn"
|
|
|
|
>
|
|
|
|
<div class="h-full w-full flex flex-col items-center justify-center pt-[50px]">
|
|
|
|
<div
|
|
|
|
class="bg-white dark:(!bg-gray-900 !text-white) relative flex flex-col justify-center gap-2 w-full max-w-[500px] mx-auto p-8 md:(rounded-lg border-1 border-gray-200 shadow-xl)"
|
|
|
|
>
|
|
|
|
<general-noco-icon
|
|
|
|
class="!rounded-full color-transition hover:(ring ring-pink-500)"
|
|
|
|
:class="[isLoading ? 'animated-bg-gradient' : '']"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<h1 class="prose-2xl font-bold self-center my-4">{{ $t('general.signIn') }}</h1>
|
|
|
|
|
|
|
|
<Transition name="layout">
|
|
|
|
<div v-if="error" class="self-center mb-4 bg-red-500 text-white rounded-lg w-3/4 mx-auto p-1">
|
|
|
|
<div class="flex items-center gap-2 justify-center">
|
|
|
|
<MaterialSymbolsWarning />
|
|
|
|
<div class="break-words">{{ error }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Transition>
|
|
|
|
|
|
|
|
<a-form-item :label="$t('labels.email')" name="email" :rules="formRules.email">
|
|
|
|
<a-input v-model:value="form.email" size="large" :placeholder="$t('labels.email')" @focus="resetError" />
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item :label="$t('labels.password')" name="password" :rules="formRules.password">
|
|
|
|
<a-input-password
|
|
|
|
v-model:value="form.password"
|
|
|
|
size="large"
|
|
|
|
class="password"
|
|
|
|
:placeholder="$t('labels.password')"
|
|
|
|
@focus="resetError"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<div class="hidden md:block self-end">
|
|
|
|
<nuxt-link class="prose-sm" to="/forgot-password">
|
|
|
|
{{ $t('msg.info.signUp.forgotPassword') }}
|
|
|
|
</nuxt-link>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="self-center flex flex-col flex-wrap gap-4 items-center mt-4 justify-center">
|
|
|
|
<button class="submit" type="submit">
|
|
|
|
<span class="flex items-center gap-2"><MdiLogin /> {{ $t('general.signIn') }}</span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<div class="text-end prose-sm">
|
|
|
|
{{ $t('msg.info.signUp.dontHaveAccount') }}
|
|
|
|
<nuxt-link to="/signup">{{ $t('general.signUp') }}</nuxt-link>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="md:hidden">
|
|
|
|
<nuxt-link class="prose-sm" to="/forgot-password">
|
|
|
|
{{ $t('msg.info.signUp.forgotPassword') }}
|
|
|
|
</nuxt-link>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a-form>
|
|
|
|
</NuxtLayout>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.signin {
|
|
|
|
.ant-input-affix-wrapper,
|
|
|
|
.ant-input {
|
|
|
|
@apply dark:(bg-gray-700 !text-white) !appearance-none my-1 border-1 border-solid border-primary/50 rounded;
|
|
|
|
}
|
|
|
|
|
|
|
|
.password {
|
|
|
|
input {
|
|
|
|
@apply !border-none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ant-input-password-icon {
|
|
|
|
@apply dark:!text-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.submit {
|
|
|
|
@apply z-1 relative color-transition border border-gray-300 rounded-md p-3 bg-gray-100/50 text-white bg-primary;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
@apply rounded-md absolute top-0 left-0 right-0 bottom-0 transition-all duration-150 ease-in-out bg-primary;
|
|
|
|
content: '';
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover::after {
|
|
|
|
@apply transform scale-110 ring ring-pink-500;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active::after {
|
|
|
|
@apply ring ring-pink-500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|