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

set default value on picker when data has only 1 element #11819

Merged
merged 4 commits into from
Nov 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/components/Picker/BasePicker/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,26 @@ class BasePicker extends React.Component {
this.executeOnCloseAndOnBlur = this.executeOnCloseAndOnBlur.bind(this);
}

componentDidMount() {
this.setDefaultValue();
}

componentDidUpdate(prevProps) {
if (prevProps.items === this.props.items) {
Copy link
Contributor

Choose a reason for hiding this comment

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

Is this equality check OK or should it use something a little better like _.isEqual()?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I don't think we need deep comparison here to improve performance.
Because once value is set, don't set again anymore from this code:
if (this.props.value || !this.props.items || this.props.items.length !== 1 || !this.props.onInputChange) {
return;
}

If we use _.isEqual(), it calculates every time this component is rendered (i.e. when value changed), so it affects performance.

return;
}
this.setDefaultValue();
}

setDefaultValue() {
Copy link
Contributor

@sobitneupane sobitneupane Oct 14, 2022

Choose a reason for hiding this comment

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

We only set Default Value if number of items is one. So, can you please add a comment mentioning it?

// When there is only 1 element in the selector, we do the user a favor and automatically select it for them
// so they don't have to spend extra time selecting the only possible value.
if (this.props.value || !this.props.items || this.props.items.length !== 1 || !this.props.onInputChange) {
return;
}
this.props.onInputChange(this.props.items[0].key);
}

executeOnCloseAndOnBlur() {
// Picker's onClose is not executed on Web and Desktop, so props.onClose has to be called with onBlur callback.
this.props.onClose();
Expand Down