From d9a365937efe3f72ac33bc29179b413632403fbe Mon Sep 17 00:00:00 2001 From: zhangzhulei Date: Thu, 13 Apr 2023 10:18:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=201.=20wizard=E7=BB=84=E4=BB=B6locale?= =?UTF-8?q?=E5=A4=84=E7=90=86=EF=BC=9B2.normalizeSteps=E6=96=B9=E6=B3=95?= =?UTF-8?q?=E8=B0=83=E7=94=A8=E6=97=B6=E6=9C=BA=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/amis-ui/src/locale/de-DE.ts | 6 +- packages/amis-ui/src/locale/en-US.ts | 6 +- packages/amis-ui/src/locale/zh-CN.ts | 3 +- packages/amis/src/renderers/Wizard.tsx | 155 +++++++++++++------------ 4 files changed, 93 insertions(+), 77 deletions(-) diff --git a/packages/amis-ui/src/locale/de-DE.ts b/packages/amis-ui/src/locale/de-DE.ts index 7362da743..47562fc42 100644 --- a/packages/amis-ui/src/locale/de-DE.ts +++ b/packages/amis-ui/src/locale/de-DE.ts @@ -241,7 +241,8 @@ register('de-DE', { 'Table.valueField': 'valueField muss vorhanden sein', 'Table.index': 'Index', 'Table.add': 'Neu', - 'Table.addButtonDisabledTip': 'Reichen Sie bei der Inhaltsbearbeitung zuerst ein und erstellen Sie dann eine neue Option', + 'Table.addButtonDisabledTip': + 'Reichen Sie bei der Inhaltsbearbeitung zuerst ein und erstellen Sie dann eine neue Option', 'Table.toggleColumn': 'Spalten anzeigen', 'Table.searchFields': 'Abfragefelder setzen', 'Tag.placeholder': 'Noch kein Tag', @@ -405,5 +406,6 @@ register('de-DE', { 'JSONSchema.description': 'Description', 'JSONSchema.key': 'Key', 'JSONSchema.array_items': 'Items', - 'TimeNow': 'Jetzt' + 'TimeNow': 'Jetzt', + 'Steps.step': 'Schritt {{index}}' }); diff --git a/packages/amis-ui/src/locale/en-US.ts b/packages/amis-ui/src/locale/en-US.ts index 9b551bd55..87c913907 100644 --- a/packages/amis-ui/src/locale/en-US.ts +++ b/packages/amis-ui/src/locale/en-US.ts @@ -233,7 +233,8 @@ register('en-US', { 'Table.valueField': 'Must have valueField', 'Table.index': 'Index', 'Table.add': 'Add', - 'Table.addButtonDisabledTip': 'In content editing, please submit first and then create a new option', + 'Table.addButtonDisabledTip': + 'In content editing, please submit first and then create a new option', 'Table.toggleColumn': 'Display columns', 'Table.searchFields': 'Set query fields', 'Tag.placeholder': 'No tag yet', @@ -393,5 +394,6 @@ register('en-US', { 'JSONSchema.array_items': 'Items', 'TimeNow': 'Now', 'IconSelect.all': 'All', - 'IconSelect.choice': 'Icon selection' + 'IconSelect.choice': 'Icon selection', + 'Steps.step': 'Step {{index}}' }); diff --git a/packages/amis-ui/src/locale/zh-CN.ts b/packages/amis-ui/src/locale/zh-CN.ts index 8f1f84ae1..e8ba63952 100644 --- a/packages/amis-ui/src/locale/zh-CN.ts +++ b/packages/amis-ui/src/locale/zh-CN.ts @@ -389,5 +389,6 @@ register('zh-CN', { 'Required': '必填', 'TimeNow': '此刻', 'IconSelect.all': '全部', - 'IconSelect.choice': '图标选择' + 'IconSelect.choice': '图标选择', + 'Steps.step': '第 {{index}} 步' }); diff --git a/packages/amis/src/renderers/Wizard.tsx b/packages/amis/src/renderers/Wizard.tsx index 033b79d2d..3ea0cde95 100644 --- a/packages/amis/src/renderers/Wizard.tsx +++ b/packages/amis/src/renderers/Wizard.tsx @@ -33,53 +33,55 @@ import {ActionSchema} from './Action'; import {tokenize, evalExpressionWithConditionBuilder} from 'amis-core'; import {StepSchema} from './Steps'; +import isEqual from 'lodash/isEqual'; -export type WizardStepSchema = Omit & StepSchema & { - /** - * 当前步骤用来保存数据的 api。 - */ - api?: SchemaApi; +export type WizardStepSchema = Omit & + StepSchema & { + /** + * 当前步骤用来保存数据的 api。 + */ + api?: SchemaApi; - asyncApi?: SchemaApi; + asyncApi?: SchemaApi; - /** - * 当前步骤用来获取初始数据的 api - */ - initApi?: SchemaApi; + /** + * 当前步骤用来获取初始数据的 api + */ + initApi?: SchemaApi; - /** - * 是否可直接跳转到该步骤,一般编辑模式需要可直接跳转查看。 - */ - jumpable?: boolean; + /** + * 是否可直接跳转到该步骤,一般编辑模式需要可直接跳转查看。 + */ + jumpable?: boolean; - /** - * 通过 JS 表达式来配置当前步骤可否被直接跳转到。 - */ - jumpableOn?: SchemaExpression; + /** + * 通过 JS 表达式来配置当前步骤可否被直接跳转到。 + */ + jumpableOn?: SchemaExpression; - /** - * Step 标题 - */ - title?: string; - label?: string; + /** + * Step 标题 + */ + title?: string; + label?: string; - /** - * 每一步可以单独配置按钮。如果不配置wizard会自动生成。 - */ - actions?: Array; + /** + * 每一步可以单独配置按钮。如果不配置wizard会自动生成。 + */ + actions?: Array; - /** - * 保存完后,可以指定跳转地址,支持相对路径和组内绝对路径,同时可以通过 $xxx 使用变量 - */ - redirect?: string; + /** + * 保存完后,可以指定跳转地址,支持相对路径和组内绝对路径,同时可以通过 $xxx 使用变量 + */ + redirect?: string; - reload?: SchemaReload; + reload?: SchemaReload; - /** - * 默认表单提交自己会通过发送 api 保存数据,但是也可以设定另外一个 form 的 name 值,或者另外一个 `CRUD` 模型的 name 值。 如果 target 目标是一个 `Form` ,则目标 `Form` 会重新触发 `initApi` 和 `schemaApi`,api 可以拿到当前 form 数据。如果目标是一个 `CRUD` 模型,则目标模型会重新触发搜索,参数为当前 Form 数据。 - */ - target?: string; -}; + /** + * 默认表单提交自己会通过发送 api 保存数据,但是也可以设定另外一个 form 的 name 值,或者另外一个 `CRUD` 模型的 name 值。 如果 target 目标是一个 `Form` ,则目标 `Form` 会重新触发 `initApi` 和 `schemaApi`,api 可以拿到当前 form 数据。如果目标是一个 `CRUD` 模型,则目标模型会重新触发搜索,参数为当前 Form 数据。 + */ + target?: string; + }; /** * 表单向导 @@ -340,12 +342,18 @@ export default class Wizard extends React.Component { parent.addEventListener('scroll', this.affixDetect); this.unSensor = resizeSensor(dom as HTMLElement, this.affixDetect); this.affixDetect(); + this.normalizeSteps(store.data); } componentDidUpdate(prevProps: WizardProps) { const props = this.props; const {store, fetchSuccess, fetchFailed} = props; + // 步骤steps改变 + if (!isEqual(prevProps.steps, props.steps)) { + this.normalizeSteps(props.data); + } + if ( isApiOutdated( prevProps.initApi, @@ -385,22 +393,30 @@ export default class Wizard extends React.Component { } async normalizeSteps(values: any) { - const steps = this.props.steps; + const {steps, translate: __} = this.props; const rawSteps: WizardStepSchema[] = []; const stepsLength = steps.length; // 这里有个bug,如果把第一个step隐藏,表单就不会渲染 for (let i = 0; i < stepsLength; i++) { - const hiddenFlag = await evalExpressionWithConditionBuilder(steps[i].hiddenOn, values); + const hiddenFlag = await evalExpressionWithConditionBuilder( + steps[i].hiddenOn, + values + ); !hiddenFlag && rawSteps.push(steps[i]); } this.setState({ rawSteps: rawSteps.map((step, index) => { delete step.hiddenOn; return Object.assign(step, { - title: step.title || step.label || `第${index + 1}步` - }) + title: + step.title || + step.label || + __('Steps.step', { + index: index + 1 + }) + }); }) - }) + }); } @autobind @@ -703,7 +719,6 @@ export default class Wizard extends React.Component { const previous = store.data; const final = {...previous, ...values}; - this.normalizeSteps(values); if (await this.dispatchEvent('change', final)) { return; } @@ -717,7 +732,6 @@ export default class Wizard extends React.Component { this.initalValues[step] = this.initalValues[step] || values; const store = this.props.store; - this.normalizeSteps(values); store.updateData(values); } @@ -980,26 +994,22 @@ export default class Wizard extends React.Component { } renderSteps() { - const { - mode, - classPrefix: ns, - classnames: cx, - stepsClassName, - } = this.props; + const {mode, classPrefix: ns, classnames: cx, stepsClassName} = this.props; const {currentStep, rawSteps: steps} = this.state; return ( -
- { - Array.isArray(steps) && steps.length ? ( - - ) : null - } +
+ {Array.isArray(steps) && steps.length ? ( + + ) : null}
); } @@ -1158,17 +1168,20 @@ export default class Wizard extends React.Component { loadingConfig, stepClassName, bodyClassName, - wrapWithPanel, + wrapWithPanel } = this.props; const {rawSteps: stateSteps, currentStep} = this.state; // 这里初次渲染时,需要取props的steps - const steps = Array.isArray(stateSteps) && stateSteps.length > 0 ? - stateSteps : - Array.isArray(propsSteps) ? [...propsSteps].map(step => { - delete step.hiddenOn; - return step; - }) : null; + const steps = + Array.isArray(stateSteps) && stateSteps.length > 0 + ? stateSteps + : Array.isArray(propsSteps) + ? [...propsSteps].map(step => { + delete step.hiddenOn; + return step; + }) + : null; const step = Array.isArray(steps) ? steps[currentStep - 1] : null; @@ -1186,10 +1199,7 @@ export default class Wizard extends React.Component { {this.renderSteps()}
{step ? ( render( @@ -1329,6 +1339,7 @@ export class WizardRenderer extends Wizard { } setData(values: object, replace?: boolean) { + this.normalizeSteps(values); return this.props.store.updateData(values, undefined, replace); }