mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 07:45:18 +00:00
fix(linkage): avoid infinite loop (#3069)
This commit is contained in:
parent
45dcdab083
commit
19bad669af
@ -140,8 +140,6 @@ const WithForm = (props: WithFormProps) => {
|
||||
});
|
||||
// 如果是 linkageRules 数组的最后一个元素
|
||||
if (index === linkageRules.length - 1) {
|
||||
// 等待异步操作完成
|
||||
await new Promise((resolve) => setTimeout(resolve, 0));
|
||||
// 清空 linkagefields 数组中对象的属性
|
||||
linkagefields.forEach((v) => {
|
||||
v.linkageProperty = {};
|
||||
|
@ -43,12 +43,8 @@ export const linkageMergeAction = async ({
|
||||
...field.linkageProperty,
|
||||
required: requiredResult,
|
||||
};
|
||||
return new Promise((resolve) => {
|
||||
setTimeout(() => {
|
||||
field.required = last(field.linkageProperty.required);
|
||||
});
|
||||
resolve(void 0);
|
||||
});
|
||||
field.required = last(field.linkageProperty.required);
|
||||
break;
|
||||
case ActionType.InRequired:
|
||||
if (await conditionAnalyses({ rules: condition, variables, localVariables })) {
|
||||
requiredResult.push(false);
|
||||
@ -57,12 +53,8 @@ export const linkageMergeAction = async ({
|
||||
...field.linkageProperty,
|
||||
required: requiredResult,
|
||||
};
|
||||
return new Promise((resolve) => {
|
||||
setTimeout(() => {
|
||||
field.required = last(field.linkageProperty.required);
|
||||
});
|
||||
resolve(void 0);
|
||||
});
|
||||
field.required = last(field.linkageProperty.required);
|
||||
break;
|
||||
case ActionType.Visible:
|
||||
case ActionType.None:
|
||||
case ActionType.Hidden:
|
||||
@ -73,12 +65,8 @@ export const linkageMergeAction = async ({
|
||||
...field.linkageProperty,
|
||||
display: displayResult,
|
||||
};
|
||||
return new Promise((resolve) => {
|
||||
setTimeout(() => {
|
||||
field.display = last(displayResult);
|
||||
});
|
||||
resolve(void 0);
|
||||
});
|
||||
field.display = last(displayResult);
|
||||
break;
|
||||
case ActionType.Editable:
|
||||
case ActionType.ReadOnly:
|
||||
case ActionType.ReadPretty:
|
||||
@ -89,12 +77,8 @@ export const linkageMergeAction = async ({
|
||||
...field.linkageProperty,
|
||||
pattern: patternResult,
|
||||
};
|
||||
return new Promise((resolve) => {
|
||||
setTimeout(() => {
|
||||
field.pattern = last(patternResult);
|
||||
});
|
||||
resolve(void 0);
|
||||
});
|
||||
field.pattern = last(patternResult);
|
||||
break;
|
||||
case ActionType.Value:
|
||||
if (isConditionEmpty(condition) || (await conditionAnalyses({ rules: condition, variables, localVariables }))) {
|
||||
if (value?.mode === 'express') {
|
||||
|
Loading…
Reference in New Issue
Block a user