mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: login 兼容不同的 request 版本 (#242)
* fix: login 兼容不同的 request 版本 * chore: upgrade request
This commit is contained in:
parent
7e9cb618f0
commit
36cc169ffe
@ -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,27 +18,8 @@ function getLoginConfig() {
|
|||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ACCESS
|
const defaultExport = {
|
||||||
|
onRouterCreated({ router }) {
|
||||||
export function 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 }) {
|
|
||||||
const { hasLogin, loginPath } = getLoginConfig();
|
const { hasLogin, loginPath } = getLoginConfig();
|
||||||
if (hasLogin && loginPath) {
|
if (hasLogin && loginPath) {
|
||||||
let isAuthenticated;
|
let isAuthenticated;
|
||||||
@ -48,4 +33,48 @@ export function onRouterCreated({ router }) {
|
|||||||
next();
|
next();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
// ACCESS
|
||||||
|
|
||||||
|
if (request.version) {
|
||||||
|
defaultExport.request = (memo) => {
|
||||||
|
const config = getRunTimeConfig();
|
||||||
|
if (config.ignore401Redirect) {
|
||||||
|
return memo;
|
||||||
|
}
|
||||||
|
|
||||||
|
const errorHandler = memo.errorHandler;
|
||||||
|
memo.errorHandler = (error) => {
|
||||||
|
if (error?.response?.status === 401) {
|
||||||
|
const router = getRouter();
|
||||||
|
const { loginPath } = getLoginConfig();
|
||||||
|
router.push({ path: loginPath });
|
||||||
|
}
|
||||||
|
errorHandler && errorHandler(error);
|
||||||
|
};
|
||||||
|
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 default defaultExport;
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fesjs/utils": "^3.0.1",
|
"@fesjs/utils": "^3.0.1",
|
||||||
"@qlin/request": "^0.2.0"
|
"@qlin/request": "^0.2.3"
|
||||||
},
|
},
|
||||||
"typings": "./types.d.ts"
|
"typings": "./types.d.ts"
|
||||||
}
|
}
|
||||||
|
8
pnpm-lock.yaml
generated
8
pnpm-lock.yaml
generated
@ -650,8 +650,8 @@ importers:
|
|||||||
specifier: ^3.0.1
|
specifier: ^3.0.1
|
||||||
version: link:../fes-utils
|
version: link:../fes-utils
|
||||||
'@qlin/request':
|
'@qlin/request':
|
||||||
specifier: ^0.2.0
|
specifier: ^0.2.3
|
||||||
version: 0.2.0
|
version: 0.2.3
|
||||||
vue:
|
vue:
|
||||||
specifier: ^3.2.37
|
specifier: ^3.2.37
|
||||||
version: 3.3.4
|
version: 3.3.4
|
||||||
@ -3921,8 +3921,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==}
|
resolution: {integrity: sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@qlin/request@0.2.0:
|
/@qlin/request@0.2.3:
|
||||||
resolution: {integrity: sha512-zbCIHy7wBYy4pz/GarBeDTGmtkT2QfsCqudKQMs6wkhZ/ZMMQzAhO7d+REH89d3cdUPvw7qMnpYXYpHEg2eCeg==}
|
resolution: {integrity: sha512-haKCRgZZWF9cZF7btRNfZQlDtJQ0uVqjwp51mqT+073V7JbL2DpUmVsRODtb3nnw9uVAHOqS9rmq+ZigwftgGg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/lodash-es': 4.17.12
|
'@types/lodash-es': 4.17.12
|
||||||
lodash-es: 4.17.21
|
lodash-es: 4.17.21
|
||||||
|
Loading…
x
Reference in New Issue
Block a user