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

募金登録の金額入力フォームにプルダウンを追加する #659

Merged
merged 9 commits into from
Nov 23, 2023

Conversation

TkymHrt
Copy link
Collaborator

@TkymHrt TkymHrt commented Nov 17, 2023

対応Issue

resolve #649

概要

募金登録の際に金額の入力フォームにプルダウン(選択肢)を追加する。
datalist要素を利用して実装する。

画面スクリーンショット等

スクリーンショット 2023-11-17 222713

テスト項目

  • 学内募金の学内募金登録モーダルを開き、「金額」の入力フォームをクリックすると金額の候補が表示される。
  • 登録した項目の編集モーダルを開き、「金額」の入力フォームをクリックすると金額の候補が表示される。

備考

https://developer.mozilla.org/ja/docs/Web/HTML/Element/datalist

Kubosaka

This comment was marked as resolved.

Copy link
Collaborator

@imaimai17468 imaimai17468 left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link
Collaborator

@Kubosaka Kubosaka left a comment

Choose a reason for hiding this comment

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

動作問題なしです。
少し短くできそうなところコメントしました。
いまいまいかのぶに見てもらって修正しなくても良いかどうか判断して欲しいです。

@@ -11,23 +11,36 @@ interface Props {
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
children?: React.ReactNode;
type?: string;
datalist?: { id: number; name: string }[];
listKey?: string;
enableDatalist?: boolean;
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
enableDatalist?: boolean;

好みですが、個人的にはdalalistがあるかどうかで判断できるかなって思いました。

Copy link
Collaborator

Choose a reason for hiding this comment

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

datalistlistkeyの存在を同時に確かめたい場合は、一緒にしてしまってもいいと思います

datalist?: {
    key: string;
    data: { id:number; name: string}[];
}

value={props.value}
onChange={props.onChange}
type={props.type}
list={props.enableDatalist ? props.listKey : undefined}
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
list={props.enableDatalist ? props.listKey : undefined}
list={props.datalist && props.listKey}

listにはpropsにdatalistがあれば、props.listkeyを渡すで十分かと思います。

>
{props.children}
</input>
{props.enableDatalist && (
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
{props.enableDatalist && (
{props.datalist && (

props.datalistがあるかどうかで判断できるかなって思います。

Copy link
Collaborator

Choose a reason for hiding this comment

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

enableDatalistで切り替えない場合はlistkeyのチェックも入れた方が安全になります

Suggested change
{props.enableDatalist && (
{props.enableDatalist && props.listkey && (

onChange={handler('price')}
datalist={DONATION_AMOUNT}
listKey='amoutOptions'
enableDatalist={true}
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
enableDatalist={true}

上のように修正すれば消せます。

Copy link
Collaborator

Choose a reason for hiding this comment

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

ちなみにtrueを渡さなくても

Suggested change
enableDatalist={true}
enableDatalist

のみでtrueのように動作します

onChange={handler('price')}
datalist={DONATION_AMOUNT}
listKey='amoutOptions'
enableDatalist={true}
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
enableDatalist={true}

ここも同様です。

Copy link
Collaborator

Choose a reason for hiding this comment

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

constantで定数を定義できてて良いと思います!

@TkymHrt TkymHrt self-assigned this Nov 18, 2023
Copy link
Collaborator

@imaimai17468 imaimai17468 left a comment

Choose a reason for hiding this comment

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

2点、実装とは関係ないですが、

  • PRのタイトルは意味の伝わるものがいいです
    • 英語でも日本語でもいいので、何をどうしたかを書くとPRの内容がよりわかりやすいと思います
  • commit messageをもう少し詳細に書いた方がいいと思います
    • 例えばこのPRだとAdd attribute to AddModalが2個ありますが、それぞれ何がどう違う作業なのかぱっと見わかりません(同じなら1つのcommitにしましょう)
    • これも別に日本語でいいので、どこで何をしたか書けるとcommitの趣旨が伝わりやすいです

@TkymHrt TkymHrt changed the title Feat/yama/649 add dropdown Feat/yama/649 募金登録の金額入力フォームにプルダウンを追加する Nov 20, 2023
@TkymHrt TkymHrt changed the title Feat/yama/649 募金登録の金額入力フォームにプルダウンを追加する 募金登録の金額入力フォームにプルダウンを追加する Nov 20, 2023
Comment on lines 37 to 43
{props.datalist?.key && props.datalist?.data && (
<datalist id={props.datalist.key}>
{props.datalist.data.map((option) => (
<option key={option.id} value={option.name} />
))}
</datalist>
)}
Copy link
Collaborator

Choose a reason for hiding this comment

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

datalistが存在すればkeyもdataも存在すると思うので、datalistの存在だけ確認すればいいと思います

Suggested change
{props.datalist?.key && props.datalist?.data && (
<datalist id={props.datalist.key}>
{props.datalist.data.map((option) => (
<option key={option.id} value={option.name} />
))}
</datalist>
)}
{props.datalist && (
<datalist id={props.datalist.key}>
{props.datalist.data.map((option) => (
<option key={option.id} value={option.name} />
))}
</datalist>
)}

Copy link
Collaborator

@imaimai17468 imaimai17468 left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link
Collaborator

@Kubosaka Kubosaka left a comment

Choose a reason for hiding this comment

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

LGTM!

@Kubosaka Kubosaka merged commit c26c10e into develop Nov 23, 2023
2 checks passed
@Kubosaka Kubosaka deleted the feat/yama/649-Add-dropdown branch November 23, 2023 13:13
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