import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/Dropdown/dropdown'; import { css } from '@patternfly/react-styles'; import { PickOptional } from '../../../helpers/typeUtils'; import { getOUIAProps, OUIAProps, getDefaultOUIAId } from '../../../helpers'; import { Spinner } from '../../../components/Spinner'; export interface DropdownToggleCheckboxProps extends Omit, 'type' | 'onChange' | 'disabled' | 'checked'>, OUIAProps { /** Additional classes added to the DropdownToggleCheckbox */ className?: string; /** Flag to show if the checkbox selection is valid or invalid */ isValid?: boolean; /** Flag to show if the checkbox is disabled */ isDisabled?: boolean; /** Flag to show if the checkbox is checked */ isChecked?: boolean | null; /** Flag to show if the checkbox is in progress */ isInProgress?: boolean | null; /** Alternate Flag to show if the checkbox is checked */ checked?: boolean | null; /** A callback for when the checkbox selection changes */ onChange?: (event: React.FormEvent, checked: boolean) => void; /** Element to be rendered inside the */ children?: React.ReactNode; /** Id of the checkbox */ id: string; /** Aria-label of the checkbox */ 'aria-label': string; /** Text describing current loading status or progress */ defaultProgressAriaValueText?: string; /** Aria-label for the default progress icon to describe what is loading */ defaultProgressAriaLabel?: string; /** Value to overwrite the randomly generated data-ouia-component-id.*/ ouiaId?: number | string; /** Set the value of data-ouia-safe. Only set to true when the component is in a static state, i.e. no animations are occurring. At all other times, this value must be false. */ ouiaSafe?: boolean; } class DropdownToggleCheckbox extends React.Component { static displayName = 'DropdownToggleCheckbox'; static defaultProps: PickOptional = { className: '', isValid: true, isDisabled: false, onChange: () => undefined as any }; constructor(props: DropdownToggleCheckboxProps) { super(props); this.state = { ouiaStateId: getDefaultOUIAId(DropdownToggleCheckbox.displayName) }; } handleChange = (event: React.FormEvent) => { this.props.onChange?.(event, (event.target as HTMLInputElement).checked); }; calculateChecked = () => { const { isChecked, checked } = this.props; if (isChecked === null) { // return false here and the indeterminate state will be set to true through the ref return false; } else if (isChecked !== undefined) { return isChecked; } return checked; }; render() { const { className, isValid, isDisabled, isChecked, isInProgress = false, defaultProgressAriaLabel, defaultProgressAriaValueText = 'Loading...', children, ouiaId, ouiaSafe, /* eslint-disable @typescript-eslint/no-unused-vars */ onChange, checked, /* eslint-enable @typescript-eslint/no-unused-vars */ ...props } = this.props; const spinner = ( ); const text = children && ( ); return ( ); } } export { DropdownToggleCheckbox };