/* * 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, { cloneElement, Component, Children, HTMLAttributes, ReactElement, ReactNode, } from 'react'; import classNames from 'classnames'; import { ExclusiveUnion, CommonProps, keysOf } from '../../common'; import { get } from '../../../services/objects'; import { OuiFormHelpText } from '../form_help_text'; import { OuiFormErrorText } from '../form_error_text'; import { OuiFormLabel } from '../form_label'; import { htmlIdGenerator } from '../../../services/accessibility'; const displayToClassNameMap = { row: null, rowCompressed: 'ouiFormRow--compressed', columnCompressed: 'ouiFormRow--compressed ouiFormRow--horizontal', center: null, centerCompressed: 'ouiFormRow--compressed', columnCompressedSwitch: 'ouiFormRow--compressed ouiFormRow--horizontal ouiFormRow--hasSwitch', }; export const DISPLAYS = keysOf(displayToClassNameMap); export type OuiFormRowDisplayKeys = keyof typeof displayToClassNameMap; interface OuiFormRowState { isFocused: boolean; id: string; } type OuiFormRowCommonProps = CommonProps & { /** * When `rowCompressed`, just tightens up the spacing; * Set to `columnCompressed` if compressed * and horizontal layout is needed. * Set to `center` or `centerCompressed` to align non-input * content better with inline rows. * Set to `columnCompressedSwitch` if the form control being passed * as the child is a switch. */ display?: OuiFormRowDisplayKeys; hasEmptyLabelSpace?: boolean; fullWidth?: boolean; /** * IDs of additional elements that should be part of children's `aria-describedby` */ describedByIds?: string[]; /** * Escape hatch to not render duplicate labels if the child also renders a label */ hasChildLabel?: boolean; /** * ReactElement to render as this component's content */ children: ReactElement; label?: ReactNode; /** * Adds an extra node to the right of the form label without * being contained inside the form label. Good for things * like documentation links. */ labelAppend?: any; id?: string; isInvalid?: boolean; error?: ReactNode | ReactNode[]; /** * Adds a single node/string or an array of nodes/strings below the input */ helpText?: ReactNode | ReactNode[]; }; type LabelProps = { labelType?: 'label'; } & OuiFormRowCommonProps & HTMLAttributes; type LegendProps = { /** * Defaults to rendering a `