Fix: Fixed the issue where the error prompt box on the Agent page would be covered #3221 (#8992)

### What problem does this PR solve?

Fix: Fixed the issue where the error prompt box on the Agent page would
be covered #3221

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2025-07-23 15:09:24 +08:00
committed by GitHub
parent b4b6d296ea
commit 03165a1efa
7 changed files with 319 additions and 44 deletions

View File

@ -148,6 +148,9 @@ export default {
trace: `${api_host}/canvas/trace`,
// agent
inputForm: `${api_host}/canvas/input_form`,
fetchVersionList: (id: string) => `${api_host}/canvas/getlistversion/${id}`,
fetchVersion: (id: string) => `${api_host}/canvas/getversion/${id}`,
fetchCanvas: (id: string) => `${api_host}/canvas/get/${id}`,
// mcp server
listMcpServer: `${api_host}/mcp_server/list`,

View File

@ -0,0 +1,146 @@
import message from '@/components/ui/message';
import { Authorization } from '@/constants/authorization';
import i18n from '@/locales/config';
import authorizationUtil, {
getAuthorization,
redirectToLogin,
} from '@/utils/authorization-util';
import { notification } from 'antd';
import axios from 'axios';
import { convertTheKeysOfTheObjectToSnake } from './common-util';
const FAILED_TO_FETCH = 'Failed to fetch';
export const RetcodeMessage = {
200: i18n.t('message.200'),
201: i18n.t('message.201'),
202: i18n.t('message.202'),
204: i18n.t('message.204'),
400: i18n.t('message.400'),
401: i18n.t('message.401'),
403: i18n.t('message.403'),
404: i18n.t('message.404'),
406: i18n.t('message.406'),
410: i18n.t('message.410'),
413: i18n.t('message.413'),
422: i18n.t('message.422'),
500: i18n.t('message.500'),
502: i18n.t('message.502'),
503: i18n.t('message.503'),
504: i18n.t('message.504'),
};
export type ResultCode =
| 200
| 201
| 202
| 204
| 400
| 401
| 403
| 404
| 406
| 410
| 413
| 422
| 500
| 502
| 503
| 504;
const errorHandler = (error: {
response: Response;
message: string;
}): Response => {
const { response } = error;
if (error.message === FAILED_TO_FETCH) {
notification.error({
description: i18n.t('message.networkAnomalyDescription'),
message: i18n.t('message.networkAnomaly'),
});
} else {
if (response && response.status) {
const errorText =
RetcodeMessage[response.status as ResultCode] || response.statusText;
const { status, url } = response;
notification.error({
message: `${i18n.t('message.requestError')} ${status}: ${url}`,
description: errorText,
});
}
}
return response ?? { data: { code: 1999 } };
};
const request = axios.create({
// errorHandler,
timeout: 300000,
// getResponse: true,
});
request.interceptors.request.use(
(config) => {
const data = convertTheKeysOfTheObjectToSnake(config.data);
const params = convertTheKeysOfTheObjectToSnake(config.params);
const newConfig = { ...config, data, params };
if (!newConfig.skipToken) {
newConfig.headers.set(Authorization, getAuthorization());
}
return newConfig;
},
function (error) {
return Promise.reject(error);
},
);
request.interceptors.response.use(
async (response) => {
if (response?.status === 413 || response?.status === 504) {
message.error(RetcodeMessage[response?.status as ResultCode]);
}
if (response.config.responseType === 'blob') {
return response;
}
const data = response?.data;
if (data?.code === 100) {
message.error(data?.message);
} else if (data?.code === 401) {
notification.error({
message: data?.message,
description: data?.message,
duration: 3,
});
authorizationUtil.removeAll();
redirectToLogin();
} else if (data?.code !== 0) {
notification.error({
message: `${i18n.t('message.hint')} : ${data?.code}`,
description: data?.message,
duration: 3,
});
}
return response;
},
function (error) {
console.log('🚀 ~ error:', error);
errorHandler(error);
return Promise.reject(error);
},
);
export default request;
export const get = (url: string) => {
return request.get(url);
};
export const post = (url: string, body: any) => {
return request.post(url, { data: body });
};
export const drop = () => {};
export const put = () => {};

View File

@ -1,5 +1,8 @@
import { AxiosRequestConfig, AxiosResponse } from 'axios';
import { isObject } from 'lodash';
import omit from 'lodash/omit';
import { RequestMethod } from 'umi-request';
import request from './next-request';
type Service<T extends string> = Record<
T,
@ -39,3 +42,39 @@ const registerServer = <T extends string>(
};
export default registerServer;
export function registerNextServer<T extends string>(
requestRecord: Record<
T,
{ url: string | ((...args: Array<any>) => string); method: string }
>,
) {
type Server = Record<
T,
(
config?:
| AxiosRequestConfig<any>
| Record<string, any>
| string
| number
| boolean
| undefined,
useAxiosNativeConfig?: boolean,
) => Promise<AxiosResponse<any, any>>
>;
const server: Server = {} as Server;
for (const name in requestRecord) {
if (Object.prototype.hasOwnProperty.call(requestRecord, name)) {
const { url, method } = requestRecord[name];
server[name] = (config, useAxiosNativeConfig = false) => {
const nextConfig = useAxiosNativeConfig ? config : { data: config };
const finalConfig = isObject(nextConfig) ? nextConfig : {};
const nextUrl = typeof url === 'function' ? url(config) : url;
return request({ url: nextUrl, method, ...finalConfig });
};
}
}
return server;
}