chore: replace all cn comments of fe to en version by volc api (#320)

This commit is contained in:
tecvan
2025-07-31 10:32:15 +08:00
committed by GitHub
parent 716ec0cba8
commit 71f6245a01
2960 changed files with 15545 additions and 15545 deletions

View File

@@ -37,7 +37,7 @@ export enum SchemaError {
INVALID = 'invalid',
}
/** 变量命名校验规则(对齐workflow得参数名校验) */
/** Variable name verification rules (parameter name verification for aligned workflow) */
const PARAM_NAME_VALIDATION_RULE =
/^(?!.*\b(true|false|and|AND|or|OR|not|NOT|null|nil|If|Switch)\b)[a-zA-Z_][a-zA-Z_$0-9]*$/;
@@ -112,21 +112,21 @@ function checkArrayOrObjectField(field: FormItemSchema) {
}
function checkNodeFormSchema(schema: NodeFormSchema) {
// 节点参数为空
// Node parameter is empty
if (!schema.inputs.length) {
return false;
}
const nameSet = new Set<string>();
for (const ipt of schema.inputs) {
// 名称非法 or 重复
// Name illegal or duplicate
if (!validateParamName(ipt.name) || nameSet.has(ipt.name)) {
return false;
}
nameSet.add(ipt.name);
// 单独检测复杂类型
// Detect complex types individually
if (!checkArrayOrObjectField(ipt)) {
return false;
}
@@ -143,7 +143,7 @@ function validateSchema(json?: string) {
try {
const schemas = JSON.parse(json) as NodeFormSchema[];
// schema为空 or start节点的inputs为空
// Schema is empty or start node inputs are empty
const isEmpty =
schemas.length === 0 ||
(schemas[0].component_type === ComponentType.CozeStartNode &&
@@ -166,7 +166,7 @@ function validateSchema(json?: string) {
}
}
/** 检查workflow节点表单是否为空(schema为空 or start节点的inputs为空) */
/** Checks if the workflow node form is empty (schema is empty or start node inputs are empty) */
export function useCheckSchema() {
const { bizComponentSubject, bizCtx } = useTestsetManageStore(store => store);
const [schemaError, setSchemaError] = useState(SchemaError.OK);