|
|
|
<script setup lang="ts">
|
|
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
import { definePageMeta, useHead } from '#imports'
|
|
|
|
import { extractSdkResponseErrorMsg } from '~/utils/errorUtils'
|
|
|
|
import { navigateTo, useNuxtApp } from '#app'
|
|
|
|
import { isEmail } from '~/utils/validation'
|
|
|
|
import MdiLogin from '~icons/mdi/login'
|
|
|
|
import MaterialSymbolsWarning from '~icons/material-symbols/warning'
|
|
|
|
|
|
|
|
const { $api, $state } = $(useNuxtApp())
|
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
|
|
|
definePageMeta({
|
|
|
|
requiresAuth: false,
|
|
|
|
title: 'title.headLogin',
|
|
|
|
})
|
|
|
|
|
|
|
|
useHead({
|
|
|
|
meta: [
|
|
|
|
{
|
|
|
|
hid: t('msg.info.loginMsg'),
|
|
|
|
name: t('msg.info.loginMsg'),
|
|
|
|
content: t('msg.info.loginMsg'),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
})
|
|
|
|
|
|
|
|
let error = $ref<string | null>(null)
|
|
|
|
|
|
|
|
const valid = ref()
|
|
|
|
|
|
|
|
const formValidator = ref()
|
|
|
|
|
|
|
|
const form = reactive({
|
|
|
|
email: '',
|
|
|
|
password: '',
|
|
|
|
})
|
|
|
|
|
|
|
|
const formRules = {
|
|
|
|
email: [
|
|
|
|
// E-mail is required
|
|
|
|
(v: string) => !!v || t('msg.error.signUpRules.emailReqd'),
|
|
|
|
// E-mail must be valid format
|
|
|
|
(v: string) => isEmail(v) || t('msg.error.signUpRules.emailInvalid'),
|
|
|
|
],
|
|
|
|
password: [
|
|
|
|
// Password is required
|
|
|
|
(v: string) => !!v || t('msg.error.signUpRules.passwdRequired'),
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
const signIn = async () => {
|
|
|
|
error = null
|
|
|
|
try {
|
|
|
|
const { token } = await $api.auth.signin(form)
|
|
|
|
$state.signIn(token!)
|
|
|
|
await navigateTo('/')
|
|
|
|
} catch (e: any) {
|
|
|
|
// todo: errors should not expose what was wrong (i.e. do not show "Password is wrong" messages)
|
|
|
|
error = await extractSdkResponseErrorMsg(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const resetError = () => {
|
|
|
|
if (error) {
|
|
|
|
error = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<NuxtLayout>
|
|
|
|
<v-form
|
|
|
|
ref="formValidator"
|
|
|
|
v-model="valid"
|
|
|
|
class="h-[calc(100%_+_90px)] min-h-[600px] flex justify-center items-center"
|
|
|
|
@submit.prevent="signIn"
|
|
|
|
>
|
|
|
|
<div class="h-full w-full flex flex-col flex-wrap justify-center items-center">
|
|
|
|
<div
|
|
|
|
class="bg-white dark:(!bg-gray-900 !text-white) md: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 />
|
|
|
|
|
|
|
|
<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 p-1">
|
|
|
|
<div class="flex items-center gap-2 justify-center"><MaterialSymbolsWarning /> {{ error }}</div>
|
|
|
|
</div>
|
|
|
|
</Transition>
|
|
|
|
|
|
|
|
<v-text-field
|
|
|
|
id="email"
|
|
|
|
v-model="form.email"
|
|
|
|
class="bg-white dark:!bg-gray-900"
|
|
|
|
:rules="formRules.email"
|
|
|
|
:label="$t('labels.email')"
|
|
|
|
:placeholder="$t('labels.email')"
|
|
|
|
:persistent-placeholder="true"
|
|
|
|
type="text"
|
|
|
|
@focus="resetError"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<v-text-field
|
|
|
|
id="password"
|
|
|
|
v-model="form.password"
|
|
|
|
class="bg-white dark:!bg-gray-900"
|
|
|
|
:rules="formRules.password"
|
|
|
|
:label="$t('labels.password')"
|
|
|
|
:placeholder="$t('labels.password')"
|
|
|
|
:persistent-placeholder="true"
|
|
|
|
type="password"
|
|
|
|
@focus="resetError"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<div class="hidden md:block self-end mx-8">
|
|
|
|
<nuxt-link class="prose-sm" to="/forgot-password">
|
|
|
|
{{ $t('msg.info.signUp.forgotPassword') }}
|
|
|
|
</nuxt-link>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="self-center flex flex-wrap gap-4 items-center mt-4 md:mx-8 md:justify-between justify-center w-full">
|
|
|
|
<button
|
|
|
|
:disabled="!valid"
|
|
|
|
:class="[
|
|
|
|
!valid
|
|
|
|
? '!opacity-50 !cursor-default'
|
|
|
|
: 'text-white bg-primary hover:(text-primary !bg-primary/75) dark:(!bg-secondary/75 hover:!bg-secondary/50)',
|
|
|
|
]"
|
|
|
|
class="ml-1 border-1 border-solid border-gray-300 rounded-lg p-4 bg-gray-100/50"
|
|
|
|
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>
|
|
|
|
</v-form>
|
|
|
|
</NuxtLayout>
|
|
|
|
</template>
|