mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-24 23:47:17 +08:00
224 lines
6.6 KiB
Vue
224 lines
6.6 KiB
Vue
<script setup lang="ts">
|
|
import { useI18n } from "vue-i18n";
|
|
import Motion from "./utils/motion";
|
|
import { useRouter } from "vue-router";
|
|
import { message } from "@/utils/message";
|
|
import { loginRules } from "./utils/rule";
|
|
import { useNav } from "@/layout/hooks/useNav";
|
|
import type { FormInstance } from "element-plus";
|
|
import { $t, transformI18n } from "@/plugins/i18n";
|
|
import { useLayout } from "@/layout/hooks/useLayout";
|
|
import { useUserStoreHook } from "@/store/modules/user";
|
|
import { initRouter, getTopMenu } from "@/router/utils";
|
|
import { bg, avatar, illustration } from "./utils/static";
|
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
|
import { ref, reactive, toRaw, onMounted, onBeforeUnmount } from "vue";
|
|
import { useTranslationLang } from "@/layout/hooks/useTranslationLang";
|
|
import { useDataThemeChange } from "@/layout/hooks/useDataThemeChange";
|
|
|
|
import dayIcon from "@/assets/svg/day.svg?component";
|
|
import darkIcon from "@/assets/svg/dark.svg?component";
|
|
import globalization from "@/assets/svg/globalization.svg?component";
|
|
import Lock from "@iconify-icons/ri/lock-fill";
|
|
import Check from "@iconify-icons/ep/check";
|
|
import User from "@iconify-icons/ri/user-3-fill";
|
|
|
|
defineOptions({
|
|
name: "Login"
|
|
});
|
|
const router = useRouter();
|
|
const loading = ref(false);
|
|
const ruleFormRef = ref<FormInstance>();
|
|
|
|
const { initStorage } = useLayout();
|
|
initStorage();
|
|
|
|
const { t } = useI18n();
|
|
const { dataTheme, overallStyle, dataThemeChange } = useDataThemeChange();
|
|
dataThemeChange(overallStyle.value);
|
|
const { title, getDropdownItemStyle, getDropdownItemClass } = useNav();
|
|
const { locale, translationCh, translationEn } = useTranslationLang();
|
|
|
|
const ruleForm = reactive({
|
|
username: "admin",
|
|
password: "admin123"
|
|
});
|
|
|
|
const onLogin = async (formEl: FormInstance | undefined) => {
|
|
if (!formEl) return;
|
|
await formEl.validate((valid, fields) => {
|
|
if (valid) {
|
|
loading.value = true;
|
|
useUserStoreHook()
|
|
.loginByUsername({ username: ruleForm.username, password: "admin123" })
|
|
.then(res => {
|
|
if (res.success) {
|
|
// Fetch backend routes
|
|
return initRouter().then(() => {
|
|
router.push(getTopMenu(true).path).then(() => {
|
|
message(t("login.pureLoginSuccess"), { type: "success" });
|
|
});
|
|
});
|
|
} else {
|
|
message(t("login.pureLoginFail"), { type: "error" });
|
|
}
|
|
})
|
|
.finally(() => (loading.value = false));
|
|
}
|
|
});
|
|
};
|
|
|
|
/** Use common function to prevent `removeEventListener` failure */
|
|
function onkeypress({ code }: KeyboardEvent) {
|
|
if (["Enter", "NumpadEnter"].includes(code)) {
|
|
onLogin(ruleFormRef.value);
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
window.document.addEventListener("keypress", onkeypress);
|
|
});
|
|
|
|
onBeforeUnmount(() => {
|
|
window.document.removeEventListener("keypress", onkeypress);
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="select-none">
|
|
<img :src="bg" class="wave" />
|
|
<div class="flex-c absolute right-5 top-3">
|
|
<!-- Theme -->
|
|
<el-switch
|
|
v-model="dataTheme"
|
|
inline-prompt
|
|
:active-icon="dayIcon"
|
|
:inactive-icon="darkIcon"
|
|
@change="dataThemeChange"
|
|
/>
|
|
<!-- Globalization -->
|
|
<el-dropdown trigger="click">
|
|
<globalization
|
|
class="hover:text-primary hover:!bg-[transparent] w-[20px] h-[20px] ml-1.5 cursor-pointer outline-none duration-300"
|
|
/>
|
|
<template #dropdown>
|
|
<el-dropdown-menu class="translation">
|
|
<el-dropdown-item
|
|
:style="getDropdownItemStyle(locale, 'vi')"
|
|
:class="['dark:!text-white', getDropdownItemClass(locale, 'vi')]"
|
|
@click="translationCh"
|
|
>
|
|
<IconifyIconOffline
|
|
v-show="locale === 'vi'"
|
|
class="check-vi"
|
|
:icon="Check"
|
|
/>
|
|
Tiếng Việt
|
|
</el-dropdown-item>
|
|
<el-dropdown-item
|
|
:style="getDropdownItemStyle(locale, 'en')"
|
|
:class="['dark:!text-white', getDropdownItemClass(locale, 'en')]"
|
|
@click="translationEn"
|
|
>
|
|
<span v-show="locale === 'en'" class="check-en">
|
|
<IconifyIconOffline :icon="Check" />
|
|
</span>
|
|
English
|
|
</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</template>
|
|
</el-dropdown>
|
|
</div>
|
|
<div class="login-container">
|
|
<div class="img">
|
|
<component :is="toRaw(illustration)" />
|
|
</div>
|
|
<div class="login-box">
|
|
<div class="login-form">
|
|
<avatar class="avatar" />
|
|
<Motion>
|
|
<h2 class="outline-none">{{ title }}</h2>
|
|
</Motion>
|
|
|
|
<el-form
|
|
ref="ruleFormRef"
|
|
:model="ruleForm"
|
|
:rules="loginRules"
|
|
size="large"
|
|
>
|
|
<Motion :delay="100">
|
|
<el-form-item
|
|
:rules="[
|
|
{
|
|
required: true,
|
|
message: transformI18n($t('login.pureUsernameReg')),
|
|
trigger: 'blur'
|
|
}
|
|
]"
|
|
prop="username"
|
|
>
|
|
<el-input
|
|
v-model="ruleForm.username"
|
|
clearable
|
|
:placeholder="t('login.pureUsername')"
|
|
:prefix-icon="useRenderIcon(User)"
|
|
/>
|
|
</el-form-item>
|
|
</Motion>
|
|
|
|
<Motion :delay="150">
|
|
<el-form-item prop="password">
|
|
<el-input
|
|
v-model="ruleForm.password"
|
|
clearable
|
|
show-password
|
|
:placeholder="t('login.purePassword')"
|
|
:prefix-icon="useRenderIcon(Lock)"
|
|
/>
|
|
</el-form-item>
|
|
</Motion>
|
|
|
|
<Motion :delay="250">
|
|
<el-button
|
|
class="w-full mt-4"
|
|
size="default"
|
|
type="primary"
|
|
:loading="loading"
|
|
@click="onLogin(ruleFormRef)"
|
|
>
|
|
{{ t("login.pureLogin") }}
|
|
</el-button>
|
|
</Motion>
|
|
</el-form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
@import url("@/style/login.css");
|
|
</style>
|
|
|
|
<style lang="scss" scoped>
|
|
:deep(.el-input-group__append, .el-input-group__prepend) {
|
|
padding: 0;
|
|
}
|
|
|
|
.translation {
|
|
::v-deep(.el-dropdown-menu__item) {
|
|
padding: 5px 40px;
|
|
}
|
|
|
|
.check-vi {
|
|
position: absolute;
|
|
left: 20px;
|
|
}
|
|
|
|
.check-en {
|
|
position: absolute;
|
|
left: 20px;
|
|
}
|
|
}
|
|
</style>
|