Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
[terra-form-select] Fix Search field value clears out issue (#4103)
Browse files Browse the repository at this point in the history
  • Loading branch information
adavijit authored May 24, 2024
1 parent fd88a8d commit a32dc9a
Show file tree
Hide file tree
Showing 16 changed files with 33 additions and 5 deletions.
4 changes: 3 additions & 1 deletion packages/terra-form-select/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

## Unreleased

* Fixed
* Search field value now persists when navigating to another component.

## 6.62.1 - (May 13, 2024)

* Fixed
* Fixed a "prop not recognized" console error.


## 6.62.0 - (May 8, 2024)

* Added
Expand Down
7 changes: 3 additions & 4 deletions packages/terra-form-select/src/search/Frame.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,9 @@ class Frame extends React.Component {
this.setState({ isFocused: false, focusedByTouch: false });

if (this.state.hasSearchChanged) {
this.setState({
searchValue: this.props.display,
hasSearchChanged: false,
});
this.setState((prevState) => ({
searchValue: prevState.searchValue.trim(),
}));
}

this.closeDropdown();
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions packages/terra-form-select/tests/wdio/select-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1795,6 +1795,33 @@ Terra.describeViewports('Select', ['tiny'], () => {

after(() => $('#root').click());
});

describe('should retain input value on fucusing another component', () => {
it('retain input and focus using tab key', () => {
$('[data-terra-select]').click();
const input = $('[data-terra-select-combobox] input');
input.setValue('Test');

// Pressing Tab key twice to focus the body
browser.keys('Tab');
browser.keys('Tab');

expect($('body')).toBeFocused();
expect(input).toHaveValue('Test');
});

it('should retain input value and focus body when body is clicked', () => {
const input = $('[data-terra-select-combobox] input');

$('[data-terra-select]').click();
input.setValue('Test');

$('body').click();

expect($('body')).toBeFocused();
expect(input).toHaveValue('Test');
});
});
});

describe('Search Variant - controlled', () => {
Expand Down

0 comments on commit a32dc9a

Please sign in to comment.