Reviewed-on: daoyoucloud/tachycode#501 Reviewed-by: sealday <zhanglin@daoyoucloud.com> Co-authored-by: bai.jingfeng <bai.jingfeng@foxmail.com> Co-committed-by: bai.jingfeng <bai.jingfeng@foxmail.com>
This commit is contained in:
parent
31ab773e4c
commit
f2ad0534fa
@ -1,9 +1,11 @@
|
|||||||
import { SchemaComponent } from '@nocobase/client';
|
import { SchemaComponent } from '@nocobase/client';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import { ErrorBoundary } from './ErrorBoundary';
|
||||||
|
|
||||||
export const CustomAssociatedField = (props) => {
|
export const CustomAssociatedField = (props) => {
|
||||||
if (!props.component) return;
|
if (!props.component) return;
|
||||||
return (
|
return (
|
||||||
|
<ErrorBoundary>
|
||||||
<SchemaComponent
|
<SchemaComponent
|
||||||
schema={{
|
schema={{
|
||||||
type: 'string',
|
type: 'string',
|
||||||
@ -12,5 +14,6 @@ export const CustomAssociatedField = (props) => {
|
|||||||
'x-component-props': props,
|
'x-component-props': props,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
</ErrorBoundary>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -5,6 +5,7 @@ import { useField, useFieldSchema } from '@formily/react';
|
|||||||
import { Field } from '@nocobase/database';
|
import { Field } from '@nocobase/database';
|
||||||
import { useCustomComponent } from '../../hooks/useCustomComponent';
|
import { useCustomComponent } from '../../hooks/useCustomComponent';
|
||||||
import { CustomComponentType } from './custom-components';
|
import { CustomComponentType } from './custom-components';
|
||||||
|
import { ErrorBoundary } from './ErrorBoundary';
|
||||||
|
|
||||||
export const CustomComponentStub = (props) => {
|
export const CustomComponentStub = (props) => {
|
||||||
return <div>请选择组件</div>;
|
return <div>请选择组件</div>;
|
||||||
@ -13,6 +14,7 @@ export const CustomComponentStub = (props) => {
|
|||||||
export const CustomComponentDispatcher = (props) => {
|
export const CustomComponentDispatcher = (props) => {
|
||||||
if (!props.component) return;
|
if (!props.component) return;
|
||||||
return (
|
return (
|
||||||
|
<ErrorBoundary>
|
||||||
<SchemaComponent
|
<SchemaComponent
|
||||||
schema={{
|
schema={{
|
||||||
type: 'void',
|
type: 'void',
|
||||||
@ -21,6 +23,7 @@ export const CustomComponentDispatcher = (props) => {
|
|||||||
'x-component-props': props,
|
'x-component-props': props,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
</ErrorBoundary>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
import { SchemaComponent } from '@nocobase/client';
|
import { SchemaComponent } from '@nocobase/client';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import { ErrorBoundary } from './ErrorBoundary';
|
||||||
|
|
||||||
export const CustomField = (props) => {
|
export const CustomField = (props) => {
|
||||||
if (!props.component) return;
|
if (!props.component) return;
|
||||||
return (
|
return (
|
||||||
|
<ErrorBoundary>
|
||||||
<SchemaComponent
|
<SchemaComponent
|
||||||
schema={{
|
schema={{
|
||||||
type: 'string',
|
type: 'string',
|
||||||
@ -12,5 +14,6 @@ export const CustomField = (props) => {
|
|||||||
'x-component-props': props,
|
'x-component-props': props,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
</ErrorBoundary>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -0,0 +1,31 @@
|
|||||||
|
import React, { useState, useEffect } from 'react';
|
||||||
|
import { useTranslation } from '../../locale';
|
||||||
|
|
||||||
|
export const ErrorBoundary = ({ children, fallback }) => {
|
||||||
|
const { t } = useTranslation();
|
||||||
|
const [hasError, setHasError] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
// 捕获子组件的错误
|
||||||
|
const handleError = (error) => {
|
||||||
|
console.error('Error caught by ErrorBoundary:', error);
|
||||||
|
setHasError(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
// TODO: 或者上报至错误服务器,记录
|
||||||
|
// 添加错误处理函数到 window
|
||||||
|
window.addEventListener('error', handleError);
|
||||||
|
// 移除事件监听器
|
||||||
|
return () => {
|
||||||
|
window.removeEventListener('error', handleError);
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// 如果有错误,展示备用, 可以通过fallback回调自定义,或者显示默认 UI 组件
|
||||||
|
if (hasError) {
|
||||||
|
return fallback ? fallback : <div>{t('Something went wrong. Please try again later.')}</div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 否则渲染子组件
|
||||||
|
return children;
|
||||||
|
};
|
@ -18,5 +18,6 @@
|
|||||||
"Pick a data entry for viewing and editing": "Pick a data entry for viewing and editing",
|
"Pick a data entry for viewing and editing": "Pick a data entry for viewing and editing",
|
||||||
"Please select": "Please select",
|
"Please select": "Please select",
|
||||||
"Association field": "Association field",
|
"Association field": "Association field",
|
||||||
"HomePage Config": "HomePage Config"
|
"HomePage Config": "HomePage Config",
|
||||||
|
"Something went wrong. Please try again later.": "Something went wrong. Please try again later."
|
||||||
}
|
}
|
||||||
|
@ -18,5 +18,6 @@
|
|||||||
"Pick a data entry for viewing and editing": "选择一条数据用于查看与编辑",
|
"Pick a data entry for viewing and editing": "选择一条数据用于查看与编辑",
|
||||||
"Please select": "请选择",
|
"Please select": "请选择",
|
||||||
"Association field": "关联字段",
|
"Association field": "关联字段",
|
||||||
"HomePage Config": "主页配置"
|
"HomePage Config": "主页配置",
|
||||||
|
"Something went wrong. Please try again later.": "系统内部显示错误,请稍后再试"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user