From b812ae268d8ed307c26a35190d656a1beab34f43 Mon Sep 17 00:00:00 2001 From: Filatov Dmitry Date: Sat, 27 Apr 2024 17:20:59 +0300 Subject: [PATCH] fix(Select): show invalid state without passing error message (#1554) --- src/components/Select/Select.tsx | 6 +++--- src/components/Select/__tests__/Select.error.test.tsx | 8 ++++++++ src/components/Select/__tests__/utils.tsx | 1 + 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/components/Select/Select.tsx b/src/components/Select/Select.tsx index 9ee92b4d17..a495e4cbb3 100644 --- a/src/components/Select/Select.tsx +++ b/src/components/Select/Select.tsx @@ -162,11 +162,11 @@ export const Select = React.forwardRef(function }); const errorMessageId = useUniqId(); + const isErrorStateVisible = validationState === 'invalid'; const isErrorMsgVisible = - validationState === 'invalid' && Boolean(errorMessage) && errorPlacement === 'outside'; + isErrorStateVisible && Boolean(errorMessage) && errorPlacement === 'outside'; const isErrorIconVisible = - validationState === 'invalid' && Boolean(errorMessage) && errorPlacement === 'inside'; - const isErrorStateVisible = isErrorMsgVisible || isErrorIconVisible; + isErrorStateVisible && Boolean(errorMessage) && errorPlacement === 'inside'; const handleOptionClick = React.useCallback( (option?: FlattenOption) => { diff --git a/src/components/Select/__tests__/Select.error.test.tsx b/src/components/Select/__tests__/Select.error.test.tsx index db2727cbbb..372627ee03 100644 --- a/src/components/Select/__tests__/Select.error.test.tsx +++ b/src/components/Select/__tests__/Select.error.test.tsx @@ -4,7 +4,15 @@ import {render, screen} from '../../../../test-utils/utils'; import {CONTROL_ERROR_MESSAGE_QA} from '../../controls/utils'; import {Select} from '../Select'; +import {SELECT_CONTROL_BUTTON_ERROR_CLASS, TEST_QA, setup} from './utils'; + describe('Select error', () => { + test('render error appearance with invalid state and without errorMessage', () => { + const {getByTestId} = setup({validationState: 'invalid'}); + const selectControl = getByTestId(TEST_QA); + + expect(selectControl).toHaveClass(SELECT_CONTROL_BUTTON_ERROR_CLASS); + }); test('render error message with error prop (if it is not an empty string)', () => { render(