使用 react-final-form 时无法访问 Wizard 表单页面中的 mutator 函数

Unable to access mutator functions in Wizard form page while using react-final-form

我正在尝试参考这段代码https://codesandbox.io/s/km2n35kq3v. For my use case I need some mutator functions to be used inside my form fields. This example illustrates how to do that - https://codesandbox.io/s/kx8qv67nk5?from-embed使用react-final-form创建一个向导表单。 当我使用向导表单而不是单页表单时,我不确定如何在我的表单步骤中访问更改函数。

我试图通过修改由 Wizard.js 呈现的 <Form> 组件来将这两个示例结合起来,以传递突变器。但是我无法在向导表单页面中访问这些修改器。

在Wizard.js

    return (
      <Form
        mutators={{
          // potentially other mutators could be merged here
          ...arrayMutators,
        }}
        render={({
          handleSubmit,
          submitting,
          values,
          pristine,
          invalid,
          form: {
            mutators: {push, pop, remove},
          },
        }) => {
          return (
            <form onSubmit={handleSubmit}>

另一个文件index.js


    <Wizard
      initialValues={{ employed: true, stooge: "larry" }}
      onSubmit={onSubmit}
    >
      <Wizard.Page>
        <FieldArray name="customers">
          {({ fields }) =>
            fields.map((name, index) => (
              <div key={name}>
                <label>Cust. #{index + 1}</label>

                <Field
                  name={`${name}.firstName`}
                  component="input"
                  placeholder="First Name"
                />
                <span
                  onClick={() => fields.remove(index)}
                  style={{ cursor: "pointer" }}
                >
                  ❌
                </span>
              </div>
            ))
          }
        </FieldArray>
      </Wizard.Page>
</Wizard>

它出错了 - 删除在 index.js

中未定义

看看这个工作示例:https://codesandbox.io/s/znzlqvzvnx

我所做的更改:

Wizard.js

     static Page = ({ children, mutators }) => {
        if(typeof children === 'function'){
          return children(mutators);
        }

        return children;
      };

     ...

     <form onSubmit={handleSubmit}>
       {
          // activePage
          <activePage.type {...activePage.props} mutators={mutators} />
       }

     ...

index.js(只有第一个<Wizard.page>

      <Wizard.Page>
        {
          ({ upper }) => (
            <React.Fragment>
              <div>
                <label>First Name</label>
                <Field
                  name="firstName"
                  component="input"

                  ...

              </div>
            </React.Fragment>
          )
        }        
      </Wizard.Page>