mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
71 lines
1.7 KiB
TypeScript
71 lines
1.7 KiB
TypeScript
import React, { useState } from "react";
|
|
import { useDebouncedCallback } from "use-debounce";
|
|
|
|
import { IconNames } from "components/icons";
|
|
import TooltipWrapper from "components/TooltipWrapper";
|
|
|
|
// @ts-ignore
|
|
import InputFieldWithIcon from "../InputFieldWithIcon";
|
|
|
|
const baseClass = "search-field";
|
|
|
|
export interface ISearchFieldProps {
|
|
placeholder: string;
|
|
defaultValue?: string;
|
|
onChange: (value: string) => void;
|
|
onClick?: (e: React.MouseEvent) => void;
|
|
clearButton?: boolean;
|
|
icon?: IconNames;
|
|
tooltip?: React.ReactNode;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
const SearchField = ({
|
|
placeholder,
|
|
defaultValue = "",
|
|
onChange,
|
|
clearButton,
|
|
onClick,
|
|
icon = "search",
|
|
tooltip,
|
|
disabled,
|
|
}: ISearchFieldProps): JSX.Element => {
|
|
const [searchQueryInput, setSearchQueryInput] = useState(defaultValue);
|
|
|
|
const debouncedOnChange = useDebouncedCallback((newValue: string) => {
|
|
onChange(newValue);
|
|
}, 500);
|
|
|
|
const onInputChange = (newValue: string): void => {
|
|
setSearchQueryInput(newValue);
|
|
debouncedOnChange(newValue);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<TooltipWrapper
|
|
disableTooltip={!tooltip}
|
|
tipContent={tooltip}
|
|
position="top"
|
|
showArrow
|
|
underline={false}
|
|
tooltipClass={`${baseClass}__tooltip-text`}
|
|
className={`${baseClass}__tooltip-container`}
|
|
>
|
|
<InputFieldWithIcon
|
|
name={icon}
|
|
placeholder={placeholder}
|
|
value={searchQueryInput}
|
|
onChange={onInputChange}
|
|
onClick={onClick}
|
|
clearButton={clearButton}
|
|
iconPosition="start"
|
|
iconSvg={icon}
|
|
disabled={disabled}
|
|
/>
|
|
</TooltipWrapper>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default SearchField;
|