/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the "Elastic License * 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side * Public License v 1"; you may not use this file except in compliance with, at * your election, the "Elastic License 2.0", the "GNU Affero General Public * License v3.0 only", or the "Server Side Public License, v 1". */ import React from 'react'; import { EuiFieldText, EuiFieldTextProps } from '@elastic/eui'; import { useDebouncedValue } from '@kbn/visualization-utils'; type Props = { value: string; onChange: (value: string) => void; defaultValue?: string; allowFalsyValue?: boolean; } & Omit; const DebouncedInputHelper = ({ onChange, value, defaultValue, allowFalsyValue, ...rest }: Props) => { const { inputValue, handleInputChange, initialValue } = useDebouncedValue( { onChange, value, defaultValue, }, { allowFalsyValue } ); return ( { handleInputChange(e.target.value); }} placeholder={initialValue} /> ); }; /** * When testing this component, mock the "debounce" function in lodash (see this module test for an example) */ export const DebouncedInput = (props: Props) => ( // need this extra layer to force a rerender whenever the default value changes. // this is because we need a new initialValue to be computed from the debounce hook. );