admin-vben5/packages/effects/common-ui/src/ui/authentication/login.vue

178 lines
4.5 KiB
Vue
Raw Normal View History

2024-05-19 21:20:42 +08:00
<script setup lang="ts">
import type { AuthenticationProps, LoginEmits } from './typings';
2024-06-08 19:49:06 +08:00
import { computed, reactive } from 'vue';
import { useRouter } from 'vue-router';
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';
interface Props extends AuthenticationProps {}
2024-05-19 21:20:42 +08:00
defineOptions({
name: 'AuthenticationLogin',
});
withDefaults(defineProps<Props>(), {
codeLoginPath: '/auth/code-login',
forgetPasswordPath: '/auth/forget-password',
2024-05-19 21:20:42 +08:00
loading: false,
passwordPlaceholder: '',
qrCodeLoginPath: '/auth/qrcode-login',
registerPath: '/auth/register',
showCodeLogin: true,
showForgetPassword: true,
showQrcodeLogin: true,
showRegister: true,
showRememberMe: true,
showThirdPartyLogin: true,
subTitle: '',
title: '',
usernamePlaceholder: '',
2024-05-19 21:20:42 +08:00
});
const emit = defineEmits<{
submit: LoginEmits['submit'];
}>();
const router = useRouter();
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-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>
<div @keypress.enter.prevent="handleSubmit">
2024-05-19 21:20:42 +08:00
<Title>
{{ title || `${$t('authentication.welcomeBack')} 👋🏻` }}
2024-05-19 21:20:42 +08:00
<template #desc>
<span class="text-muted-foreground">
{{ 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"
:error-tip="$t('authentication.usernameTip')"
2024-05-19 21:20:42 +08:00
:label="$t('authentication.username')"
: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"
:error-tip="$t('authentication.passwordTip')"
2024-05-19 21:20:42 +08:00
:label="$t('authentication.password')"
: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">
<div v-if="showRememberMe" class="flex-center">
2024-05-19 21:20:42 +08:00
<VbenCheckbox v-model:checked="formState.rememberMe" name="rememberMe">
{{ $t('authentication.rememberMe') }}
2024-05-19 21:20:42 +08:00
</VbenCheckbox>
</div>
<span
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"
@click="handleGo(forgetPasswordPath)"
2024-05-19 21:20:42 +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
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"
@click="handleGo(codeLoginPath)"
2024-05-19 21:20:42 +08:00
>
{{ $t('authentication.mobileLogin') }}
2024-05-19 21:20:42 +08:00
</VbenButton>
<VbenButton
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"
@click="handleGo(qrCodeLoginPath)"
2024-05-19 21:20:42 +08:00
>
{{ $t('authentication.qrcodeLogin') }}
2024-05-19 21:20:42 +08:00
</VbenButton>
</div>
<!-- 第三方登录 -->
<ThirdPartyLogin v-if="showThirdPartyLogin" />
2024-05-19 21:20:42 +08:00
<div v-if="showRegister" class="text-center text-sm">
{{ $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"
@click="handleGo(registerPath)"
2024-05-19 21:20:42 +08:00
>
{{ $t('authentication.createAccount') }}
2024-05-19 21:20:42 +08:00
</span>
</div>
</div>
</template>