web-dev-qa-db-ja.com

Reduxフォームの<Field>のclassName

Reduxフォームを作成しました。CSSでそれらをカスタマイズするために、各フィールドにclassNameを追加します。各フィールドのコードは次のとおりです。

<Form onSubmit={handleSubmit(requestAccountsFilter)}>
        <FormGroup row>
          <Field
            id="symbol"
            name="symbol"
            type="text"
            component={inputField}
            placeholder="Enter Product Here"
          />
          <Field id="side" name="side" component={inputField} type="select">
            <option value={null}>Any</option>
            <option value="Buy">Buy</option>
            <option value="Sell">Sell</option>
          </Field>
          <Field id="status" name="status" component={inputField} type="select">
            <option value={null}>Any</option>
            <option value="Working">Working</option>
            <option value="Completed">Completed</option>
          </Field>
          <Button name="submit-btn" className="filter-submit-btn" color="danger" type="submit">
        Submit
      </Button>
    </FormGroup>
  </Form>

ClassNameタグを追加しましたが、追加したプレースホルダーもclassNameも表示されません。各フィールドをカスタマイズするにはどうすればよいですか?

19
user7334203
<Field 
    type="text" 
    className="myClass"
    component={InputField} 
    placeholder="Type here..."
/>

カスタムInputFieldは次のようになります

(私は http://redux-form.com/6.5.0/examples/submitValidation/ からこの例を取得しました))

export const InputField = ({ input, type, placeholder, className, meta: { touched, error } }) => (
  <div>
      <input {...input} placeholder={placeholder} type={type} className={className}/>
      {meta.touched && meta.error && <span>{meta.error}</span>}
  </div>
)

またはより良いアプローチ、小道具が多すぎる場合は、 object destructuring を使用できます

export const InputField = (field) => ( 
    <div> 
        <input {...field.input} {...field} /> 
        {field.meta.touched && field.meta.error && <span className="error">{field.meta.error}</span>} 
    </div>
)

{...field}は、Fieldで渡したすべての小道具を抽出します。

この公式のredux-formの例をご覧ください: http://redux-form.com/6.5.0/examples/react-widgets/ より多くのアイデアを得るために。

それが役に立てば幸い :)

12
Hardik Modha

オブジェクトの破壊メソッドを使用してclassNameを設定できます。

<Field 
        type="text" 
        input={{className:'red'}}
        component={InputField} 
        placeholder="Type here..."
    />
1
luis

component={InputField}と言ってカスタムレンダラーを使用していることを理解していますが、他の人のために(ドキュメントにそれが見つからないため)、component="input"component="select"などの組み込みのレンダラーを使用している場合は、 classNameを追加すると、レンダラーがそれを適用します。例:

<Field name="foo" component="select" className="form-control">
</Field>
1