Skip to content

Commit bb0af35

Browse files
authored
fix: Disables select native search when read-only (#3385)
1 parent 0b3c8d7 commit bb0af35

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

pages/select/select.test.page.tsx

+13
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,19 @@ export default function SelectPage() {
155155
}}
156156
/>
157157
</Box>
158+
<Box padding="s">
159+
<Box variant="h1">Read-only select</Box>
160+
<Select
161+
id="select_native_search_readonly"
162+
readOnly={true}
163+
options={options}
164+
selectedOption={selectedOption1}
165+
placeholder="Choose option"
166+
onChange={(e: any) => {
167+
setSelectedOption1(e.detail.selectedOption);
168+
}}
169+
/>
170+
</Box>
158171
</Box>
159172
</ScreenshotArea>
160173
</article>

src/select/__integ__/select-native-search.test.ts

+18-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ describe(`Select (Native Search)`, () => {
136136
);
137137

138138
test(
139-
'selects the match with dropdown closed -- extended option with missing properties, searches entire option',
139+
'selects the match with dropdown closed -- extended option with missing properties, searches entire option - "ano"',
140140
setupTest(optionsType, async page => {
141141
await page.focusSelect();
142142
await page.keys(['a', 'n', 'o']);
@@ -154,12 +154,28 @@ describe(`Select (Native Search)`, () => {
154154
);
155155

156156
test(
157-
'selects the match with dropdown closed -- extended option with missing properties, searches entire option',
157+
'selects the match with dropdown closed -- extended option with missing properties, searches entire option - "third"',
158158
setupTest(optionsType, async page => {
159159
await page.focusSelect();
160160
await page.keys(['t', 'h', 'i', 'r', 'd']);
161161
await expect(page.getTriggerLabel()).resolves.toMatch('Third thing');
162162
})
163163
);
164164
});
165+
166+
describe('Options - Read-only', () => {
167+
test('cannot use native search on read-only select', async () => {
168+
await setupTest('simple', async page => {
169+
await page.focusSelect();
170+
await page.keys(['o']);
171+
await expect(page.getTriggerLabel()).resolves.toBe('Option 1');
172+
})();
173+
174+
await setupTest('readonly', async page => {
175+
await page.focusSelect();
176+
await page.keys(['o']);
177+
await expect(page.getTriggerLabel()).resolves.toBe('Choose option');
178+
})();
179+
});
180+
});
165181
});

src/select/internal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ const InternalSelect = React.forwardRef(
138138
});
139139

140140
const handleNativeSearch = useNativeSearch({
141-
isEnabled: filteringType === 'none',
141+
isEnabled: filteringType === 'none' && !readOnly,
142142
options: filteredOptions,
143143
highlightOption: !isOpen ? selectOption : highlightOption,
144144
highlightedOption: !isOpen ? selectedOption : highlightedOption?.option,

0 commit comments

Comments
 (0)