mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: login 兼容不同的 request 版本
This commit is contained in:
parent
5a041f0882
commit
4116f5c699
@ -1,8 +1,12 @@
|
|||||||
|
import { request } from '@@/core/pluginExports';
|
||||||
import { ApplyPluginsType, getRouter, plugin } from '@fesjs/fes';
|
import { ApplyPluginsType, getRouter, plugin } from '@fesjs/fes';
|
||||||
|
|
||||||
let config;
|
let config;
|
||||||
function getLoginConfig() {
|
function getLoginConfig() {
|
||||||
if (config) return config;
|
if (config) {
|
||||||
|
return config;
|
||||||
|
}
|
||||||
|
|
||||||
config = plugin.applyPlugins({
|
config = plugin.applyPlugins({
|
||||||
key: 'login',
|
key: 'login',
|
||||||
type: ApplyPluginsType.modify,
|
type: ApplyPluginsType.modify,
|
||||||
@ -14,38 +18,63 @@ function getLoginConfig() {
|
|||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const defaultExport = {
|
||||||
|
onRouterCreated({ router }) {
|
||||||
|
const { hasLogin, loginPath } = getLoginConfig();
|
||||||
|
if (hasLogin && loginPath) {
|
||||||
|
let isAuthenticated;
|
||||||
|
router.beforeEach(async (to, from, next) => {
|
||||||
|
if (to.path !== loginPath && !isAuthenticated) {
|
||||||
|
isAuthenticated = await hasLogin();
|
||||||
|
if (!isAuthenticated) {
|
||||||
|
return next({ path: loginPath });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
next();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
// ACCESS
|
// ACCESS
|
||||||
|
|
||||||
export function request(memo) {
|
if (request.version) {
|
||||||
if (!memo.responseInterceptors) {
|
defaultExport.request = (memo) => {
|
||||||
memo.responseInterceptors = [];
|
const config = getRunTimeConfig();
|
||||||
}
|
if (config.ignore401Redirect) {
|
||||||
memo.responseInterceptors.push([
|
return memo;
|
||||||
(response) => response,
|
}
|
||||||
(error) => {
|
|
||||||
|
const errorHandler = memo.errorHandler;
|
||||||
|
memo.errorHandler = (error) => {
|
||||||
if (error?.response?.status === 401) {
|
if (error?.response?.status === 401) {
|
||||||
const router = getRouter();
|
const router = getRouter();
|
||||||
const { loginPath } = getLoginConfig();
|
const { loginPath } = getLoginConfig();
|
||||||
router.push({ path: loginPath });
|
router.push({ path: loginPath });
|
||||||
}
|
}
|
||||||
throw error;
|
errorHandler && errorHandler(error);
|
||||||
},
|
};
|
||||||
]);
|
return memo;
|
||||||
return memo;
|
};
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
defaultExport.request = (memo) => {
|
||||||
|
if (!memo.responseInterceptors) {
|
||||||
|
memo.responseInterceptors = [];
|
||||||
|
}
|
||||||
|
memo.responseInterceptors.push([
|
||||||
|
response => response,
|
||||||
|
(error) => {
|
||||||
|
if (error?.response?.status === 401) {
|
||||||
|
const router = getRouter();
|
||||||
|
const { loginPath } = getLoginConfig();
|
||||||
|
router.push({ path: loginPath });
|
||||||
|
}
|
||||||
|
throw error;
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
return memo;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export function onRouterCreated({ router }) {
|
export default defaultExport;
|
||||||
const { hasLogin, loginPath } = getLoginConfig();
|
|
||||||
if (hasLogin && loginPath) {
|
|
||||||
let isAuthenticated;
|
|
||||||
router.beforeEach(async (to, from, next) => {
|
|
||||||
if (to.path !== loginPath && !isAuthenticated) {
|
|
||||||
isAuthenticated = await hasLogin();
|
|
||||||
if (!isAuthenticated) {
|
|
||||||
return next({ path: loginPath });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
next();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user