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

Fixes EuiComboBox Label not calculated correctly #3501

Merged
merged 5 commits into from
May 27, 2020

Conversation

ashikmeerankutty
Copy link
Contributor

@ashikmeerankutty ashikmeerankutty commented May 18, 2020

Summary

Fixes #3458

  • Pass getSelectedOptionForSearchValue to EuiComboBoxOptionsList options list as prop.

Before:

Screen Cast 2020-05-19 at 12 00 17 AM

After:

Screen Cast 2020-05-19 at 12 01 17 AM

I think this was missed during the typescript conversion #2838

Checklist

  • Check against all themes for compatibility in both light and dark modes
    - [ ] Checked in mobile
    - [ ] Checked in IE11 and Firefox
    - [ ] Props have proper autodocs
    - [ ] Added documentation examples
  • Added or updated jest tests
  • Checked for breaking changes and labeled appropriately
    - [ ] Checked for accessibility including keyboard-only and screenreader modes
  • A changelog entry exists and is marked appropriately

@kibanamachine
Copy link

Since this is a community submitted pull request, a Jenkins build has not been kicked off automatically. Can an Elastic organization member please verify the contents of this patch and then kick off a build manually?

Comment on lines 67 to +70
getSelectedOptionForSearchValue?: (
searchValue: string,
selectedOptions: any[]
) => EuiComboBoxOptionOption<T>;
) => EuiComboBoxOptionOption<T> | undefined;
Copy link
Contributor

Choose a reason for hiding this comment

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

why using undefined here when ? at the end of getSelectedOptionForSearchValue already suggests that undefined is acceptable

Copy link
Contributor Author

@ashikmeerankutty ashikmeerankutty May 19, 2020

Choose a reason for hiding this comment

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

If undefined is not given. It creates a lint error. I guess, In this case, the props value is undefined not the prop.

Copy link
Contributor

Choose a reason for hiding this comment

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

In this case, the props value is undefined not the prop

Correct. The ? allows for getSelectedOptionForSearchValue itself to be undefined.
(getSelectedOptionForSearchValue={undefined})
But adding | undefined allows for the value returned by the getSelectedOptionForSearchValue function to be undefined
(getSelectedOptionForSearchValue={(booleanParam) => booleanParam ? 'hello' : undefined})

@thompsongl thompsongl self-requested a review May 26, 2020 22:00
@thompsongl
Copy link
Contributor

jenkins test this

@kibanamachine
Copy link

Preview documentation changes for this PR: https://eui.elastic.co/pr_3501/

Copy link
Contributor

@thompsongl thompsongl left a comment

Choose a reason for hiding this comment

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

LGTM. Thanks!

@thompsongl
Copy link
Contributor

jenkins test this

@kibanamachine
Copy link

Preview documentation changes for this PR: https://eui.elastic.co/pr_3501/

@thompsongl thompsongl merged commit d1f0fc2 into elastic:master May 27, 2020
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.

[EuiComboBox] Label not calculated correctly
4 participants