Switch block previews from hover + toggle to toggle only

pull/12835/head
Thibaud Colas 2025-01-31 01:41:40 +00:00 zatwierdzone przez Sage Abdullah
rodzic 0193cad5ea
commit b365206d05
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: EB1A33CC51CC0217
2 zmienionych plików z 19 dodań i 13 usunięć

Wyświetl plik

@ -137,6 +137,15 @@ $width: clamp(300px, 75vw, 1000px);
&:hover {
color: theme('colors.icon-secondary-hover');
}
&[aria-expanded='true'] {
color: theme('colors.text-link-default');
@media (forced-colors: active) {
background: Highlight;
color: HighlightText;
}
}
}
.w-combobox__option-row--col1 {

Wyświetl plik

@ -68,6 +68,7 @@ export default function ComboBox<ComboBoxOption extends ComboBoxItem>({
(category) => category.items || [],
);
const [inputItems, setInputItems] = useState<ComboBoxOption[]>(flatItems);
const [previewedIndex, setPreviewedIndex] = useState<number>(-1);
// Re-create the categories so the two-column layout flows as expected.
const categories = items.reduce<ComboBoxCategory<ComboBoxOption>[]>(
(cats, cat, index) => {
@ -88,7 +89,6 @@ export default function ComboBox<ComboBoxOption extends ComboBoxItem>({
getMenuProps,
getInputProps,
getItemProps,
highlightedIndex,
setHighlightedIndex,
setInputValue,
openMenu,
@ -153,12 +153,11 @@ export default function ComboBox<ComboBoxOption extends ComboBoxItem>({
setInputItems(filtered);
// Always reset the first item to highlighted on filtering, to speed up selection.
setHighlightedIndex(0);
// Hide any preview when the user starts typing.
setPreviewedIndex(-1);
},
});
const [lastHighlightedIndex, setLastHighlightedIndex] =
useState(highlightedIndex);
useEffect(() => {
if (inputValue) {
openMenu();
@ -178,15 +177,8 @@ export default function ComboBox<ComboBoxOption extends ComboBoxItem>({
}
}, [inputValue]);
if (
inputItems[highlightedIndex] &&
highlightedIndex !== lastHighlightedIndex
) {
setLastHighlightedIndex(highlightedIndex);
}
const previewedBlock =
inputItems[highlightedIndex] || inputItems[lastHighlightedIndex];
previewedIndex >= 0 ? inputItems[previewedIndex] : null;
return (
<div className="w-combobox-container">
@ -283,8 +275,13 @@ export default function ComboBox<ComboBoxOption extends ComboBoxItem>({
<button
className="w-combobox__option-preview"
aria-label={comboBoxPreviewLabel}
aria-expanded={previewedIndex === itemIndex}
type="button"
onClick={() => setHighlightedIndex(itemIndex)}
onClick={() =>
setPreviewedIndex(
previewedIndex === itemIndex ? -1 : itemIndex,
)
}
>
<Icon name="view" />
</button>