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(MultiComboBox): itemの比較にitem.labelを参照していたのをやめる #5191

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

eatski
Copy link

@eatski eatski commented Dec 13, 2024

関連URL

https://kufuinc.slack.com/archives/C06KVP5PL23/p1734060131150619

概要

close #5190

MultiComboBoxのitem同士が同一かどうかの判定でlabelも参照されているが、labelに設定できるJSX.Elementは等価であっても等値ではない場合がありうるので、label同士の === による判定が意図通りになるかはアプリケーションの実装による。
この判定が意図通りにならない場合、同じアイテムを複数回選択できてしまう・一度選択したアイテムを選択解除できないなどの問題が発生しそう

変更内容

valueがitems内で一意(valueが同じでlabelが違うitemは無い)という前提を置き、MultiComboBox内でitem同士が同一かどうかの判定を行っていた部分でlabelも参照するのをやめました。

確認方法

@eatski eatski requested a review from a team as a code owner December 13, 2024 07:12
@eatski eatski requested review from moshisora and uknmr and removed request for a team December 13, 2024 07:12
Copy link

pkg-pr-new bot commented Dec 13, 2024

Open in Stackblitz

npm i https://pkg.pr.new/kufu/smarthr-ui@5191

commit: 9ada4ae

@@ -468,7 +462,7 @@ const ActualMultiComboBox = <T,>(
className={selectedListStyle}
>
{selectedItems.map((selectedItem, i) => (
<li key={`${selectedItem.label}-${selectedItem.value}`}>
<li key={selectedItem.value}>
Copy link
Author

Choose a reason for hiding this comment

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

valueがitems内で一意(valueが同じでlabelが違うitemは無い)という前提を置いたので、keyの設定にlabelは必要ないはず
また、JSX.Elementが渡されると [Object Object] が展開されてしまうので修正しました。

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.

1 participant