/* * 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. * * Any 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, useCallback, useState, useEffect } from 'react'; import { htmlIdGenerator, EuiButtonIcon, EuiFieldNumber, EuiFlexItem, EuiFlexGroup, EuiFormErrorText, EuiIcon, EuiSpacer, EuiButtonEmpty, EuiFormRow, EuiToolTip, EuiText, } from '@elastic/eui'; import { FormattedMessage } from '@osd/i18n/react'; import { i18n } from '@osd/i18n'; import { isEqual, omit } from 'lodash'; const FROM_PLACEHOLDER = '\u2212\u221E'; const TO_PLACEHOLDER = '+\u221E'; const generateId = htmlIdGenerator(); const isEmpty = (value: any) => value === undefined || value === null; export interface RangeValues { type?: 'range'; from?: number; to?: number; } interface RangeValuesModel extends RangeValues { id: string; } interface RangesParamEditorProps { 'data-test-subj'?: string; error?: React.ReactNode; value?: RangeValues[]; hidePlaceholders?: boolean; setValue(value: RangeValues[]): void; setValidity?(isValid: boolean): void; setTouched?(isTouched: boolean): void; addRangeValues?(): RangeValues; validateRange?(range: RangeValues, index: number): boolean[]; } function RangesParamEditor({ 'data-test-subj': dataTestSubj = 'range', addRangeValues, error, value = [], hidePlaceholders, setValue, setTouched, setValidity, validateRange, }: RangesParamEditorProps) { const [ranges, setRanges] = useState(() => value.map((range) => ({ ...range, id: generateId() })) ); const updateRanges = useCallback( (rangeValues: RangeValuesModel[]) => { // do not set internal id parameter into saved object setValue(rangeValues.map((range) => omit(range, 'id'))); setRanges(rangeValues); if (setTouched) { setTouched(true); } }, [setTouched, setValue] ); const onAddRange = useCallback( () => addRangeValues ? updateRanges([...ranges, { ...addRangeValues(), id: generateId() }]) : updateRanges([...ranges, { id: generateId() }]), [addRangeValues, ranges, updateRanges] ); const onRemoveRange = (id: string) => updateRanges(ranges.filter((range) => range.id !== id)); const onChangeRange = (id: string, key: string, newValue: string) => updateRanges( ranges.map((range) => range.id === id ? { ...range, [key]: newValue === '' ? undefined : parseFloat(newValue), } : range ) ); // set up an initial range when there is no default range useEffect(() => { if (!value.length) { onAddRange(); } }, [onAddRange, value.length]); useEffect(() => { // responsible for discarding changes if ( value.length !== ranges.length || value.some((range, index) => !isEqual(range, omit(ranges[index], 'id'))) ) { setRanges(value.map((range) => ({ ...range, id: generateId() }))); } }, [ranges, value]); const hasInvalidRange = validateRange && ranges.some(({ from, to, id }, index) => { const [isFromValid, isToValid] = validateRange({ from, to }, index); return !isFromValid || !isToValid; }); useEffect(() => { if (setValidity) { setValidity(!hasInvalidRange); } }, [hasInvalidRange, setValidity]); return ( <> {ranges.map(({ from, to, id }, index) => { const deleteBtnTitle = i18n.translate( 'visDefaultEditor.controls.ranges.removeRangeButtonAriaLabel', { defaultMessage: 'Remove the range of {from} to {to}', values: { from: isEmpty(from) ? FROM_PLACEHOLDER : from, to: isEmpty(to) ? TO_PLACEHOLDER : to, }, } ); let isFromValid = true; let isToValid = true; if (validateRange) { [isFromValid, isToValid] = validateRange({ from, to }, index); } const gtePrependLabel = i18n.translate( 'visDefaultEditor.controls.ranges.greaterThanOrEqualPrepend', { defaultMessage: '\u2265', } ); const gteTooltipContent = i18n.translate( 'visDefaultEditor.controls.ranges.greaterThanOrEqualTooltip', { defaultMessage: 'Greater than or equal to', } ); const ltPrependLabel = i18n.translate( 'visDefaultEditor.controls.ranges.lessThanPrepend', { defaultMessage: '\u003c', } ); const ltTooltipContent = i18n.translate( 'visDefaultEditor.controls.ranges.lessThanTooltip', { defaultMessage: 'Less than', } ); return ( onChangeRange(id, 'from', ev.target.value)} fullWidth={true} compressed={true} isInvalid={!isFromValid} prepend={ {gtePrependLabel} } /> onChangeRange(id, 'to', ev.target.value)} fullWidth={true} compressed={true} isInvalid={!isToValid} prepend={ {ltPrependLabel} } /> onRemoveRange(id)} /> ); })} {hasInvalidRange && error && {error}} ); } export { RangesParamEditor };