/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. * * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ /* * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import React, { Fragment, FunctionComponent, ButtonHTMLAttributes, ReactNode, } from 'react'; import classNames from 'classnames'; import { CommonProps } from '../../common'; import { OuiScreenReaderOnly } from '../../accessibility'; import { htmlIdGenerator } from '../../../services/accessibility'; import { OuiFormControlLayout, OuiFormControlLayoutProps, } from '../form_control_layout'; import { OuiI18n } from '../../i18n'; export interface OuiSuperSelectOption { value: T; inputDisplay?: ReactNode; dropdownDisplay?: ReactNode; disabled?: boolean; 'data-test-subj'?: string; } export interface OuiSuperSelectControlProps extends CommonProps, Omit, 'value'> { compressed?: boolean; fullWidth?: boolean; isInvalid?: boolean; isLoading?: boolean; readOnly?: boolean; name?: string; value?: T; options?: Array>; /** * Creates an input group with element(s) coming before input. * `string` | `ReactElement` or an array of these */ prepend?: OuiFormControlLayoutProps['prepend']; /** * Creates an input group with element(s) coming after input. * `string` | `ReactElement` or an array of these */ append?: OuiFormControlLayoutProps['append']; } export const OuiSuperSelectControl: ( props: OuiSuperSelectControlProps ) => ReturnType>> = ({ className, options = [], id, name, fullWidth = false, isLoading = false, isInvalid = false, defaultValue, compressed = false, value, prepend, append, ...rest }) => { const classes = classNames( 'ouiSuperSelectControl', { 'ouiSuperSelectControl--fullWidth': fullWidth, 'ouiSuperSelectControl--compressed': compressed, 'ouiSuperSelectControl--inGroup': prepend || append, 'ouiSuperSelectControl-isLoading': isLoading, 'ouiSuperSelectControl-isInvalid': isInvalid, }, className ); // React HTML input can not have both value and defaultValue properties. // https://reactjs.org/docs/uncontrolled-components.html#default-values let selectDefaultValue; if (value == null) { selectDefaultValue = defaultValue || ''; } let selectedValue; if (value) { const selectedOption = options.find((option) => option.value === value); selectedValue = selectedOption ? selectedOption.inputDisplay : selectedValue; } const icon: OuiFormControlLayoutProps['icon'] = { type: 'arrowDown', side: 'right', }; const screenReaderId = htmlIdGenerator()(); return ( {/* This is read when the user tabs in. The comma is important, otherwise the screen reader often combines the text. */} ); };