mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 16:52:54 +08:00

* i18n: removes useTranslate hook * chore: fix duplicate imports * chore: fix import sorting and hook dependencies
32 lines
904 B
TypeScript
32 lines
904 B
TypeScript
import { OrgRole } from '@grafana/data';
|
|
import { t } from '@grafana/i18n';
|
|
import { Select } from '@grafana/ui';
|
|
|
|
interface Props {
|
|
value: OrgRole;
|
|
disabled?: boolean;
|
|
'aria-label'?: string;
|
|
inputId?: string;
|
|
onChange: (role: OrgRole) => void;
|
|
autoFocus?: boolean;
|
|
width?: number | 'auto';
|
|
}
|
|
|
|
const basicRoles = Object.values(OrgRole).filter((r) => r !== OrgRole.None);
|
|
const options = basicRoles.map((r) => ({ label: r, value: r }));
|
|
|
|
export function OrgRolePicker({ value, onChange, 'aria-label': ariaLabel, inputId, autoFocus, ...restProps }: Props) {
|
|
return (
|
|
<Select
|
|
inputId={inputId}
|
|
value={value}
|
|
options={options}
|
|
onChange={(val) => onChange(val.value ?? OrgRole.None)}
|
|
placeholder={t('admin.org-role-picker.placeholder-choose-role', 'Choose role...')}
|
|
aria-label={ariaLabel}
|
|
autoFocus={autoFocus}
|
|
{...restProps}
|
|
/>
|
|
);
|
|
}
|