購入報告一覧ページの isDisabled のスタイルが正常に当たらない問題を解決 #522
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
対応Issue
resolve #492
概要
購入報告ページの編集・削除ボタンの isDisabeld やそのスタイルが正常に当たらない問題があったので、それを解決しました。
原因
おそらく、Recoil で管理している
user
を使っていることが原因でした。Recoil で管理している値はレンダリング後に保持される値で、SSR時に仮想DOMを作成した時は
user
がundefined
なので編集・削除ボタンはisDisabled
がfalse
になるが、CSR時にはuser
が存在しているので、その部分で問題が発生していた。(場合によってはHydration Error
が出たりしていた。)解決方法
user を使用した条件分岐を行う際は、手間だが
currentUser
を取得するAPIを叩き、取得したcurrentUser
を用いて条件分岐を行うことで解決できる。画面スクリーンショット等
2023-04-09.16.06.26.mov
テスト項目
備考