Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(DropZone): ドラッグ&ドロップ時に選択したファイルがFormDataに格納されるようにした #4964

Merged
merged 1 commit into from
Oct 1, 2024

Conversation

hiroki0525
Copy link
Contributor

@hiroki0525 hiroki0525 commented Sep 30, 2024

関連URL

概要

DropZone コンポーネントで、ドラッグ&ドロップで選択されたファイルが input タグのDOMに格納されず、 form で送信した際に意図したファイルが FormData オブジェクトに格納されない問題がありました。

変更内容

DropZone コンポーネントで、ドラッグ&ドロップで選択されたファイルが input タグのDOMにデータが格納されるようにした。

確認方法

pnpm add https://pkg.pr.new/kufu/smarthr-ui@4964 で変更したパッケージをインストールし、 DropZone でファイルをドラッグ&ドロップしてから formsubmit して正常に選択したファイルが送信されていること。

Copy link

pkg-pr-new bot commented Sep 30, 2024

Open in Stackblitz

pnpm add https://pkg.pr.new/kufu/smarthr-ui@4964

commit: 9280d91

@hiroki0525 hiroki0525 marked this pull request as ready for review September 30, 2024 06:33
@hiroki0525 hiroki0525 requested a review from a team as a code owner September 30, 2024 06:33
@hiroki0525 hiroki0525 requested review from AtsushiM and atzzCokeK and removed request for a team September 30, 2024 06:33
@Qs-F
Copy link
Contributor

Qs-F commented Sep 30, 2024

(めちゃくちゃ些細なPRタイトルの話なのですが、Conventional commitsではスコープを型の後ろに (hogehoge) でつけると良いと書いてあるので、[]で囲うなら fix(DropZone): ... で書くほうがいいかもです!とはいえ自分以外誰も使ってないんでまぁ〜って感じですが…w)

参考

@@ -86,6 +86,9 @@ export const DropZone = forwardRef<HTMLInputElement, DropZoneProps & ElementProp
overrideEventDefault(e)
setFilesDraggedOver(false)
onSelectFiles(e, e.dataTransfer.files)
if (fileRef.current) {
fileRef.current.files = e.dataTransfer.files
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

良さそうに見える。これまで問題になってなかったてことは、現状のユースケースだと onSelectFiles で State で受け取ってる感じなんですかねぇ。

form から直接やりたいってのは server action 用途とかなんでしょうか?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

form から直接やりたいってのは server action 用途

ですね!

現状のユースケースだと onSelectFiles で State で受け取ってる感じ

たぶんそんな感じですかねー
そもそもファイルをアップロードするケースがあんまり少ないのかもしれませんが

@hiroki0525 hiroki0525 changed the title fix: [DropZone]ドラッグ&ドロップ時に選択したファイルがFormDataに格納されるようにした fix(DropZone): ドラッグ&ドロップ時に選択したファイルがFormDataに格納されるようにした Oct 1, 2024
Copy link
Contributor

@s-sasaki-0529 s-sasaki-0529 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍️ 良さそう。これで既存機能がぶっ壊れるということは流石にないだろうしあったら使い方のほうが悪いはず…。

@hiroki0525
Copy link
Contributor Author

大丈夫と信じてマージします!

@hiroki0525 hiroki0525 merged commit 53775fb into master Oct 1, 2024
22 checks passed
@hiroki0525 hiroki0525 deleted the fix-dropzone-drop branch October 1, 2024 01:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants