mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 12:45:11 +08:00
Fix network dropdown missing checkbox & aria-checked (#28220)
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
2cff2b5a86
commit
0c19991e3c
@ -106,6 +106,10 @@ type IProps<T> = WithKeyFunction<T> & {
|
|||||||
AdditionalOptions?: FunctionComponent<AdditionalOptionsProps>;
|
AdditionalOptions?: FunctionComponent<AdditionalOptionsProps>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function calculateKey<T>(value: T, toKey: ((key: T) => Key) | undefined): Key {
|
||||||
|
return toKey ? toKey(value) : (value as Key);
|
||||||
|
}
|
||||||
|
|
||||||
export function GenericDropdownMenu<T>({
|
export function GenericDropdownMenu<T>({
|
||||||
value,
|
value,
|
||||||
onChange,
|
onChange,
|
||||||
@ -119,23 +123,24 @@ export function GenericDropdownMenu<T>({
|
|||||||
}: IProps<T>): JSX.Element {
|
}: IProps<T>): JSX.Element {
|
||||||
const [menuDisplayed, button, openMenu, closeMenu] = useContextMenu<HTMLElement>();
|
const [menuDisplayed, button, openMenu, closeMenu] = useContextMenu<HTMLElement>();
|
||||||
|
|
||||||
|
const valueKey = calculateKey(value, toKey);
|
||||||
const selected: GenericDropdownMenuItem<T> | undefined = options
|
const selected: GenericDropdownMenuItem<T> | undefined = options
|
||||||
.flatMap((it) => (isGenericDropdownMenuGroup(it) ? [it, ...it.options] : [it]))
|
.flatMap((it) => (isGenericDropdownMenuGroup(it) ? [it, ...it.options] : [it]))
|
||||||
.find((option) => (toKey ? toKey(option.key) === toKey(value) : option.key === value));
|
.find((option) => calculateKey(option.key, toKey) === valueKey);
|
||||||
let contextMenuOptions: JSX.Element;
|
let contextMenuOptions: JSX.Element;
|
||||||
if (options && isGenericDropdownMenuGroupArray(options)) {
|
if (options && isGenericDropdownMenuGroupArray(options)) {
|
||||||
contextMenuOptions = (
|
contextMenuOptions = (
|
||||||
<>
|
<>
|
||||||
{options.map((group) => (
|
{options.map((group) => (
|
||||||
<GenericDropdownMenuGroup
|
<GenericDropdownMenuGroup
|
||||||
key={toKey?.(group.key) ?? (group.key as Key)}
|
key={calculateKey(group.key, toKey)}
|
||||||
label={group.label}
|
label={group.label}
|
||||||
description={group.description}
|
description={group.description}
|
||||||
adornment={group.adornment}
|
adornment={group.adornment}
|
||||||
>
|
>
|
||||||
{group.options.map((option) => (
|
{group.options.map((option) => (
|
||||||
<GenericDropdownMenuOption
|
<GenericDropdownMenuOption
|
||||||
key={toKey?.(option.key) ?? (option.key as Key)}
|
key={calculateKey(option.key, toKey)}
|
||||||
label={option.label}
|
label={option.label}
|
||||||
description={option.description}
|
description={option.description}
|
||||||
onClick={(ev: ButtonEvent) => {
|
onClick={(ev: ButtonEvent) => {
|
||||||
@ -144,7 +149,7 @@ export function GenericDropdownMenu<T>({
|
|||||||
onClose?.(ev);
|
onClose?.(ev);
|
||||||
}}
|
}}
|
||||||
adornment={option.adornment}
|
adornment={option.adornment}
|
||||||
isSelected={option === selected}
|
isSelected={calculateKey(option.key, toKey) === valueKey}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</GenericDropdownMenuGroup>
|
</GenericDropdownMenuGroup>
|
||||||
@ -156,7 +161,7 @@ export function GenericDropdownMenu<T>({
|
|||||||
<>
|
<>
|
||||||
{options.map((option) => (
|
{options.map((option) => (
|
||||||
<GenericDropdownMenuOption
|
<GenericDropdownMenuOption
|
||||||
key={toKey?.(option.key) ?? (option.key as Key)}
|
key={calculateKey(option.key, toKey)}
|
||||||
label={option.label}
|
label={option.label}
|
||||||
description={option.description}
|
description={option.description}
|
||||||
onClick={(ev: ButtonEvent) => {
|
onClick={(ev: ButtonEvent) => {
|
||||||
@ -165,7 +170,7 @@ export function GenericDropdownMenu<T>({
|
|||||||
onClose?.(ev);
|
onClose?.(ev);
|
||||||
}}
|
}}
|
||||||
adornment={option.adornment}
|
adornment={option.adornment}
|
||||||
isSelected={option === selected}
|
isSelected={calculateKey(option.key, toKey) === valueKey}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</>
|
</>
|
||||||
|
Loading…
Reference in New Issue
Block a user