vue-vben-admin/apps/web-antd/src/store/auth.ts

145 lines
3.7 KiB
TypeScript
Raw Normal View History

2025-05-02 22:08:36 +08:00
import type { Recordable, UserInfo } from '@vben/types';
import { ref } from 'vue';
import { useRouter } from 'vue-router';
import { DEFAULT_HOME_PATH, LOGIN_PATH } from '@vben/constants';
import { resetAllStores, useAccessStore, useUserStore } from '@vben/stores';
import { notification } from 'ant-design-vue';
import { defineStore } from 'pinia';
import { getUserInfoApi, loginApi, logoutApi } from '#/api';
import { setToken } from '#/api/csrf';
import { $t } from '#/locales';
export const useAuthStore = defineStore('auth', () => {
const accessStore = useAccessStore();
const userStore = useUserStore();
const router = useRouter();
const loginLoading = ref(false);
/**
*
* Asynchronously handle the login process
* @param params
*/
async function authLogin(
params: Recordable<any>,
onSuccess?: () => Promise<void> | void,
) {
// 异步处理用户登录操作并获取 accessToken
const userInfo: null | UserInfo = null;
try {
loginLoading.value = true;
const { user, csrf } = await loginApi(params);
// 如果成功获取到 accessToken
if (typeof user !== 'string') {
// accessStore.setAccessToken(accessToken);
//
// // 获取用户信息并存储到 accessStore 中
// const [fetchUserInfoResult, accessCodes] = await Promise.all([
// fetchUserInfo(),
// getAccessCodesApi(),
// ]);
const userInfo = {
userId: user?.id?.toString() ?? '',
avatar: '',
realName: user.username,
username: user.username,
roles: [user.role.name],
homePath: '/analytics',
token: csrf.token,
};
accessStore.setAccessToken(csrf.token);
userStore.setUserInfo(userInfo);
accessStore.setAccessCodes(user.permissions);
console.log(userStore.userInfo);
if (accessStore.loginExpired) {
accessStore.setLoginExpired(false);
} else {
onSuccess
? await onSuccess?.()
: await router.push(userInfo?.homePath || DEFAULT_HOME_PATH);
}
if (userInfo?.realName) {
notification.success({
description: `${$t('authentication.loginSuccessDesc')}:${userInfo?.realName}`,
duration: 3,
message: $t('authentication.loginSuccess'),
});
}
}
} finally {
loginLoading.value = false;
}
return {
userInfo,
};
}
async function logout(redirect: boolean = true) {
try {
await logoutApi();
} catch {
// 不做任何处理
}
resetAllStores();
accessStore.setLoginExpired(false);
// 回登录页带上当前路由地址
await router.replace({
path: LOGIN_PATH,
query: redirect
? {
redirect: encodeURIComponent(router.currentRoute.value.fullPath),
}
: {},
});
}
async function fetchUserInfo() {
// let userInfo: null | UserInfo;
const { user, csrf } = await getUserInfoApi();
if (typeof user !== 'string') {
const userInfo = {
userId: user?.id?.toString() ?? '',
avatar: '',
realName: user.username,
username: user.username,
roles: [user.role.name],
homePath: '/analytics',
token: csrf.token,
};
userStore.setUserInfo(userInfo);
return userInfo;
}
return null;
}
async function csrfToken() {
const { csrf } = await getUserInfoApi();
setToken(csrf.token);
}
function $reset() {
loginLoading.value = false;
}
return {
$reset,
authLogin,
fetchUserInfo,
loginLoading,
logout,
csrfToken,
};
});