fleet/frontend/pages/labels/components/ManualLabelForm/ManualLabelForm.tsx

158 lines
4.3 KiB
TypeScript
Raw Normal View History

import React, { useEffect, useState } from "react";
import { useQuery } from "react-query";
import { Row } from "react-table";
import { useDebouncedCallback } from "use-debounce";
import { IHost } from "interfaces/host";
import targetsAPI, { ITargetsSearchResponse } from "services/entities/targets";
2025-06-30 17:05:03 +00:00
import TargetsInput from "components/TargetsInput";
import LabelForm from "../LabelForm";
import { ILabelFormData } from "../LabelForm/LabelForm";
import { generateTableHeaders } from "./LabelHostTargetTableConfig";
const baseClass = "ManualLabelForm";
export const LABEL_TARGET_HOSTS_INPUT_LABEL = "Select hosts";
const LABEL_TARGET_HOSTS_INPUT_PLACEHOLDER =
"Search name, hostname, or serial number";
const DEBOUNCE_DELAY = 500;
export interface IManualLabelFormData {
name: string;
description: string;
targetedHosts: IHost[];
}
interface ITargetsQueryKey {
scope: string;
query?: string | null;
excludedHostIds?: number[];
}
interface IManualLabelFormProps {
defaultName?: string;
defaultDescription?: string;
defaultTargetedHosts?: IHost[];
teamName: string | null;
onSave: (formData: IManualLabelFormData) => void;
onCancel: () => void;
}
const ManualLabelForm = ({
defaultName = "",
defaultDescription = "",
defaultTargetedHosts = [],
teamName,
onSave,
onCancel,
}: IManualLabelFormProps) => {
const [searchQuery, setSearchQuery] = useState("");
const [debouncedSearchQuery, setDebouncedSearchQuery] = useState("");
const [isDebouncing, setIsDebouncing] = useState(false);
const [targetedHosts, setTargetedHosts] = useState<IHost[]>(
defaultTargetedHosts
);
const targetdHostsIds = targetedHosts.map((host) => host.id);
const debounceSearch = useDebouncedCallback(
(search: string) => {
setDebouncedSearchQuery(search);
setIsDebouncing(false);
},
DEBOUNCE_DELAY,
{ trailing: true }
);
// TODO: find a better way to debounce search requests
useEffect(() => {
setIsDebouncing(true);
debounceSearch(searchQuery);
}, [debounceSearch, searchQuery]);
const {
data: searchResults,
isLoading: isLoadingSearchResults,
isError: isErrorSearchResults,
} = useQuery<ITargetsSearchResponse, Error, IHost[], ITargetsQueryKey[]>(
[
{
scope: "labels-targets-search",
query: debouncedSearchQuery,
excludedHostIds: targetdHostsIds,
},
],
({ queryKey }) => {
const { query, excludedHostIds } = queryKey[0];
return targetsAPI.search({
query: query ?? "",
excluded_host_ids: excludedHostIds ?? null,
});
},
{
select: (data) => data.hosts,
enabled: searchQuery !== "",
}
);
const onHostSelect = (row: Row<IHost>) => {
setTargetedHosts((prevHosts) => prevHosts.concat(row.original));
setSearchQuery("");
};
const onHostRemove = (row: Row<IHost>) => {
setTargetedHosts((prevHosts) =>
prevHosts.filter((h) => h.id !== row.original.id)
);
};
const onSaveNewLabel = (
labelFormData: ILabelFormData,
labelFormDataValid: boolean
) => {
if (labelFormDataValid) {
// values from LabelForm component must be valid too
onSave({ ...labelFormData, targetedHosts });
}
};
const onChangeSearchQuery = (value: string) => {
setSearchQuery(value);
};
const resultsTableConfig = generateTableHeaders();
const selectedHostsTableConfig = generateTableHeaders(onHostRemove);
return (
<div className={baseClass}>
<LabelForm
defaultName={defaultName}
defaultDescription={defaultDescription}
teamName={teamName}
onCancel={onCancel}
onSave={onSaveNewLabel}
immutableFields={teamName ? ["teams"] : []}
additionalFields={
<TargetsInput
label={LABEL_TARGET_HOSTS_INPUT_LABEL}
placeholder={LABEL_TARGET_HOSTS_INPUT_PLACEHOLDER}
searchText={searchQuery}
searchResultsTableConfig={resultsTableConfig}
selectedHostsTableConifg={selectedHostsTableConfig}
isTargetsLoading={isLoadingSearchResults || isDebouncing}
hasFetchError={isErrorSearchResults}
searchResults={searchResults ?? []}
targetedHosts={targetedHosts}
setSearchText={onChangeSearchQuery}
handleRowSelect={onHostSelect}
/>
}
/>
</div>
);
};
export default ManualLabelForm;