You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
import React, { useRef } from 'react';
|
|
import { MonacoQueryFieldLazy } from './MonacoQueryFieldLazy';
|
|
import { Props as MonacoProps } from './MonacoQueryFieldProps';
|
|
|
|
type Props = Omit<MonacoProps, 'onRunQuery' | 'onBlur'> & {
|
|
onChange: (query: string) => void;
|
|
onRunQuery: () => void;
|
|
runQueryOnBlur: boolean;
|
|
};
|
|
|
|
export const MonacoQueryFieldWrapper = (props: Props) => {
|
|
const lastRunValueRef = useRef<string | null>(null);
|
|
const { runQueryOnBlur, onRunQuery, onChange, ...rest } = props;
|
|
|
|
const handleRunQuery = (value: string) => {
|
|
lastRunValueRef.current = value;
|
|
onChange(value);
|
|
onRunQuery();
|
|
};
|
|
|
|
const handleBlur = (value: string) => {
|
|
if (runQueryOnBlur) {
|
|
// run handleRunQuery only if the current value is different from the last-time-executed value
|
|
if (value !== lastRunValueRef.current) {
|
|
handleRunQuery(value);
|
|
}
|
|
} else {
|
|
onChange(value);
|
|
}
|
|
};
|
|
|
|
return <MonacoQueryFieldLazy onRunQuery={handleRunQuery} onBlur={handleBlur} {...rest} />;
|
|
};
|
|
|