現在、React(TypeScript)でFormikのFormでユーザーインプットを処理するコンポーネントを作ろうとしています。Formの入力値のタイプはTextとFileです。
現時点で抱えている問題としては、特定の条件下で画像をアップしようとした時にFormの入力フィールドが(意図していないのに)リセットされてしまうという事です。
例えば、先に画像ファイルを選択してその後でテキストの欄を記入して送信ボタンを押せば全てのデータが正常にaxios.post
で送信されてバックエンド側でも適切に処理されてデータが保存されるのですが、ユーザーインプットの順番を逆にして、先にテキストタイプの欄を入力してから画像を選択するとその時にフォームのテキストの入力欄がリセットされてしまうのです。さらには、ファイルの所の値も自身のローカルPCから選んだ画像ではなく"foo.txt"
としてリセットされてしまいます。
下記が実際のコードです。
import React from 'react'; import Word from '../interfaces/Word.interface'; import WordsDataService from '../api/WordsDataService'; import { Formik, Form, Field, ErrorMessage } from 'formik'; import IWordProps from '../interfaces/IWordProps.interface'; import IWordState from '../interfaces/IWordState.interface'; class CreateWord extends React.Component<IWordProps, IWordState>{ constructor(props: IWordProps){ super(props) this.state = { wordId: this.props.match.params.id, wordData: { id: 0, ownLangWordName: '', targetLangWordName: '', ownLangExSentence: '', targetLangExSentence: '', createdDate: new Date, image: new File(["foo"], "foo.txt") } } this.onSubmit = this.onSubmit.bind(this) this.onChange = this.onChange.bind(this) this.awaitSetState = this.awaitSetState.bind(this) } componentDidMount(){ // directly mutating the state. to be refined later this.state.wordData.id = null; } async awaitSetState(stateUpdate: Word){ await this.setState({wordData : stateUpdate}) } onChange(e: { currentTarget: HTMLInputElement; }){ const chosenFile = e.currentTarget.files[0]; console.log("The value of chosenFile:"); console.log(chosenFile); let tempWordData = this.state.wordData; tempWordData.image = chosenFile; this.awaitSetState(tempWordData); console.log("The value of this.state.wordData: "); console.log(this.state.wordData); } onSubmit(values: Word){ let word = values; WordsDataService.createWord(word) .then(() => this.props.history.push('/')) } render(){ let { id, ownLangWordName, targetLangWordName, ownLangExSentence, targetLangExSentence, createdDate, image} = this.state.wordData; return( <div> <h2>Create Word</h2> <div> <Formik initialValues={{ id, ownLangWordName, targetLangWordName, ownLangExSentence, targetLangExSentence, createdDate, image}} onSubmit={this.onSubmit} enableReinitialize={true} > { (props) => ( <Form> <fieldset> <label>Word (Target Language)</label> <Field type="text" name="targetLangWordName"/> </fieldset> <fieldset> <label>Word (Own Language)</label> <Field type="text" name="ownLangWordName"/> </fieldset> <fieldset> <label>Sentence (Target Language)</label> <Field type="text" size="75" name="targetLangExSentence"/> </fieldset> <fieldset> <label>Sentence (Own Language)</label> <Field type="text" size="75" name="ownLangExSentence"/> </fieldset> <fieldset> <label>Date</label> <Field type="text" name="createdDate"/> </fieldset> <fieldset> <label>Image</label> <input id="image" type="file" name="image" onChange={this.onChange}/> </fieldset> <button type="submit">Save</button> </Form> ) } </Formik> </div> </div> ) } } export default CreateWord;
空の文字列や"foo.txt"
がstate.wordData
にデフォルト値として設定したものであるという所までは把握していますが、よくわからないのが「なぜファイルインプットを先に入力してテキストを後から入力したら何も問題が起こらないのに後でファイルを選択すると入力欄がリセットされてしまうのか?」という事です。
JavaScriptやTypeScriptにおいては非同期的な性質があるという事を意識する必要があるのはわかっていますが、下記のようなasync & await
のメソッドも定義して使っているのにうまくいっていないのが現状です。
async awaitSetState(stateUpdate: Word){ await this.setState({wordData : stateUpdate}) }
console.logで各フェーズでの変数の値を見てもみましたが、
this.awaitSetState(tempWordData); console.log("The value of this.state.wordData: "); console.log(this.state.wordData); ...
の段階ではもうFormの各入力欄が空の文字列や"foo.txt"
としてリセットされてしまっていました。
あなたの回答
tips
プレビュー