2024-05-19 21:20:42 +08:00
|
|
|
<script setup lang="ts">
|
2024-08-05 21:12:22 +08:00
|
|
|
import type { AuthenticationProps, LoginEmits } from './typings';
|
|
|
|
|
2024-06-08 19:49:06 +08:00
|
|
|
import { computed, reactive } from 'vue';
|
|
|
|
import { useRouter } from 'vue-router';
|
|
|
|
|
2024-07-23 00:03:59 +08:00
|
|
|
import { $t } from '@vben/locales';
|
2024-05-19 21:20:42 +08:00
|
|
|
import {
|
|
|
|
VbenButton,
|
|
|
|
VbenCheckbox,
|
|
|
|
VbenInput,
|
|
|
|
VbenInputPassword,
|
|
|
|
} from '@vben-core/shadcn-ui';
|
|
|
|
|
|
|
|
import Title from './auth-title.vue';
|
|
|
|
import ThirdPartyLogin from './third-party-login.vue';
|
|
|
|
|
2024-07-11 11:05:01 +08:00
|
|
|
interface Props extends AuthenticationProps {}
|
2024-05-19 21:20:42 +08:00
|
|
|
|
|
|
|
defineOptions({
|
|
|
|
name: 'AuthenticationLogin',
|
|
|
|
});
|
|
|
|
|
|
|
|
withDefaults(defineProps<Props>(), {
|
2024-06-02 21:21:34 +08:00
|
|
|
codeLoginPath: '/auth/code-login',
|
|
|
|
forgetPasswordPath: '/auth/forget-password',
|
2024-05-19 21:20:42 +08:00
|
|
|
loading: false,
|
2024-06-02 21:21:34 +08:00
|
|
|
passwordPlaceholder: '',
|
|
|
|
qrCodeLoginPath: '/auth/qrcode-login',
|
|
|
|
registerPath: '/auth/register',
|
|
|
|
showCodeLogin: true,
|
|
|
|
showForgetPassword: true,
|
|
|
|
showQrcodeLogin: true,
|
|
|
|
showRegister: true,
|
2024-07-11 20:11:11 +08:00
|
|
|
showRememberMe: true,
|
2024-06-02 21:21:34 +08:00
|
|
|
showThirdPartyLogin: true,
|
2024-07-11 20:11:11 +08:00
|
|
|
subTitle: '',
|
|
|
|
title: '',
|
2024-06-02 21:21:34 +08:00
|
|
|
usernamePlaceholder: '',
|
2024-05-19 21:20:42 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
submit: LoginEmits['submit'];
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
2024-07-10 22:44:48 +08:00
|
|
|
const REMEMBER_ME_KEY = `REMEMBER_ME_USERNAME_${location.hostname}`;
|
2024-05-19 21:20:42 +08:00
|
|
|
|
|
|
|
const localUsername = localStorage.getItem(REMEMBER_ME_KEY) || '';
|
2024-06-02 21:21:34 +08:00
|
|
|
|
2024-05-19 21:20:42 +08:00
|
|
|
const formState = reactive({
|
|
|
|
password: '',
|
|
|
|
rememberMe: !!localUsername,
|
|
|
|
submitted: false,
|
|
|
|
username: localUsername,
|
|
|
|
});
|
|
|
|
|
|
|
|
const usernameStatus = computed(() => {
|
|
|
|
return formState.submitted && !formState.username ? 'error' : 'default';
|
|
|
|
});
|
|
|
|
|
|
|
|
const passwordStatus = computed(() => {
|
|
|
|
return formState.submitted && !formState.password ? 'error' : 'default';
|
|
|
|
});
|
|
|
|
|
|
|
|
function handleSubmit() {
|
|
|
|
formState.submitted = true;
|
2024-05-21 22:42:25 +08:00
|
|
|
|
2024-05-19 21:20:42 +08:00
|
|
|
if (
|
|
|
|
usernameStatus.value !== 'default' ||
|
|
|
|
passwordStatus.value !== 'default'
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
localStorage.setItem(
|
|
|
|
REMEMBER_ME_KEY,
|
|
|
|
formState.rememberMe ? formState.username : '',
|
|
|
|
);
|
|
|
|
|
|
|
|
emit('submit', {
|
|
|
|
password: formState.password,
|
|
|
|
username: formState.username,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleGo(path: string) {
|
|
|
|
router.push(path);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2024-06-02 21:21:34 +08:00
|
|
|
<div @keypress.enter.prevent="handleSubmit">
|
2024-05-19 21:20:42 +08:00
|
|
|
<Title>
|
2024-07-11 20:11:11 +08:00
|
|
|
{{ title || `${$t('authentication.welcomeBack')} 👋🏻` }}
|
2024-05-19 21:20:42 +08:00
|
|
|
<template #desc>
|
|
|
|
<span class="text-muted-foreground">
|
2024-07-11 20:11:11 +08:00
|
|
|
{{ subTitle || $t('authentication.loginSubtitle') }}
|
2024-05-19 21:20:42 +08:00
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
</Title>
|
|
|
|
|
|
|
|
<VbenInput
|
|
|
|
v-model="formState.username"
|
2024-06-09 13:31:43 +08:00
|
|
|
:autofocus="false"
|
2024-07-10 21:55:16 +08:00
|
|
|
:error-tip="$t('authentication.usernameTip')"
|
2024-05-19 21:20:42 +08:00
|
|
|
:label="$t('authentication.username')"
|
2024-06-02 21:21:34 +08:00
|
|
|
:placeholder="usernamePlaceholder || $t('authentication.username')"
|
2024-06-09 13:31:43 +08:00
|
|
|
:status="usernameStatus"
|
|
|
|
name="username"
|
2024-05-21 23:23:48 +08:00
|
|
|
required
|
2024-06-09 13:31:43 +08:00
|
|
|
type="text"
|
2024-05-19 21:20:42 +08:00
|
|
|
/>
|
|
|
|
<VbenInputPassword
|
|
|
|
v-model="formState.password"
|
2024-07-10 21:55:16 +08:00
|
|
|
:error-tip="$t('authentication.passwordTip')"
|
2024-05-19 21:20:42 +08:00
|
|
|
:label="$t('authentication.password')"
|
2024-06-02 21:21:34 +08:00
|
|
|
:placeholder="passwordPlaceholder || $t('authentication.password')"
|
2024-06-09 13:31:43 +08:00
|
|
|
:status="passwordStatus"
|
|
|
|
name="password"
|
2024-05-19 21:20:42 +08:00
|
|
|
required
|
|
|
|
type="password"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<div class="mb-6 mt-4 flex justify-between">
|
2024-07-11 20:11:11 +08:00
|
|
|
<div v-if="showRememberMe" class="flex-center">
|
2024-05-19 21:20:42 +08:00
|
|
|
<VbenCheckbox v-model:checked="formState.rememberMe" name="rememberMe">
|
2024-07-10 21:55:16 +08:00
|
|
|
{{ $t('authentication.rememberMe') }}
|
2024-05-19 21:20:42 +08:00
|
|
|
</VbenCheckbox>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<span
|
2024-06-02 21:21:34 +08:00
|
|
|
v-if="showForgetPassword"
|
2024-06-23 19:17:31 +08:00
|
|
|
class="text-primary hover:text-primary-hover active:text-primary-active cursor-pointer text-sm font-normal"
|
2024-06-02 21:21:34 +08:00
|
|
|
@click="handleGo(forgetPasswordPath)"
|
2024-05-19 21:20:42 +08:00
|
|
|
>
|
2024-07-10 21:55:16 +08:00
|
|
|
{{ $t('authentication.forgetPassword') }}
|
2024-05-19 21:20:42 +08:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<VbenButton :loading="loading" class="w-full" @click="handleSubmit">
|
|
|
|
{{ $t('common.login') }}
|
|
|
|
</VbenButton>
|
|
|
|
|
|
|
|
<div class="mb-2 mt-4 flex items-center justify-between">
|
|
|
|
<VbenButton
|
2024-06-02 21:21:34 +08:00
|
|
|
v-if="showCodeLogin"
|
2024-05-19 21:20:42 +08:00
|
|
|
class="w-1/2"
|
2024-06-09 13:31:43 +08:00
|
|
|
variant="outline"
|
2024-06-02 21:21:34 +08:00
|
|
|
@click="handleGo(codeLoginPath)"
|
2024-05-19 21:20:42 +08:00
|
|
|
>
|
2024-07-10 21:55:16 +08:00
|
|
|
{{ $t('authentication.mobileLogin') }}
|
2024-05-19 21:20:42 +08:00
|
|
|
</VbenButton>
|
|
|
|
<VbenButton
|
2024-06-02 21:21:34 +08:00
|
|
|
v-if="showQrcodeLogin"
|
2024-05-19 21:20:42 +08:00
|
|
|
class="ml-4 w-1/2"
|
2024-06-09 13:31:43 +08:00
|
|
|
variant="outline"
|
2024-06-02 21:21:34 +08:00
|
|
|
@click="handleGo(qrCodeLoginPath)"
|
2024-05-19 21:20:42 +08:00
|
|
|
>
|
2024-07-10 21:55:16 +08:00
|
|
|
{{ $t('authentication.qrcodeLogin') }}
|
2024-05-19 21:20:42 +08:00
|
|
|
</VbenButton>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 第三方登录 -->
|
2024-06-02 21:21:34 +08:00
|
|
|
<ThirdPartyLogin v-if="showThirdPartyLogin" />
|
2024-05-19 21:20:42 +08:00
|
|
|
|
2024-06-02 21:21:34 +08:00
|
|
|
<div v-if="showRegister" class="text-center text-sm">
|
2024-07-10 21:55:16 +08:00
|
|
|
{{ $t('authentication.accountTip') }}
|
2024-05-19 21:20:42 +08:00
|
|
|
<span
|
2024-06-23 19:17:31 +08:00
|
|
|
class="text-primary hover:text-primary-hover active:text-primary-active cursor-pointer text-sm font-normal"
|
2024-06-02 21:21:34 +08:00
|
|
|
@click="handleGo(registerPath)"
|
2024-05-19 21:20:42 +08:00
|
|
|
>
|
2024-07-10 21:55:16 +08:00
|
|
|
{{ $t('authentication.createAccount') }}
|
2024-05-19 21:20:42 +08:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|