Files
Ashley Harrison 06d3c27bc1 Select: Portal menu by default (#48176)
* Remove menuShouldPortal from all <Select /> components

* fix unit tests

* leave menuShouldPortal as an escape hatch

* Fix import order
2022-05-04 15:12:59 +01:00

85 lines
1.9 KiB
TypeScript

import React, { FC, useEffect, useMemo, useState } from 'react';
import { SelectableValue } from '@grafana/data';
import { Input, Select } from '@grafana/ui';
interface Props {
onChange: (value: string) => void;
options: Array<SelectableValue<string>>;
value?: string;
addLabel?: string;
className?: string;
placeholder?: string;
custom?: boolean;
onCustomChange?: (custom: boolean) => void;
width?: number;
disabled?: boolean;
'aria-label'?: string;
}
export const SelectWithAdd: FC<Props> = ({
value,
onChange,
options,
className,
placeholder,
width,
custom,
onCustomChange,
disabled = false,
addLabel = '+ Add new',
'aria-label': ariaLabel,
}) => {
const [isCustom, setIsCustom] = useState(custom);
useEffect(() => {
if (custom) {
setIsCustom(custom);
}
}, [custom]);
const _options = useMemo(
(): Array<SelectableValue<string>> => [...options, { value: '__add__', label: addLabel }],
[options, addLabel]
);
if (isCustom) {
return (
<Input
aria-label={ariaLabel}
width={width}
autoFocus={!custom}
value={value || ''}
placeholder={placeholder}
className={className}
disabled={disabled}
onChange={(e) => onChange((e.target as HTMLInputElement).value)}
/>
);
} else {
return (
<Select
aria-label={ariaLabel}
width={width}
options={_options}
value={value}
className={className}
placeholder={placeholder}
disabled={disabled}
onChange={(val: SelectableValue) => {
const value = val?.value;
if (value === '__add__') {
setIsCustom(true);
if (onCustomChange) {
onCustomChange(true);
}
onChange('');
} else {
onChange(value);
}
}}
/>
);
}
};