mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
113 lines
3.4 KiB
TypeScript
113 lines
3.4 KiB
TypeScript
import React from "react";
|
|
import { Row } from "react-table";
|
|
import { isEmpty, pullAllBy } from "lodash";
|
|
|
|
import { IHost } from "interfaces/host";
|
|
import { HOSTS_SEARCH_BOX_PLACEHOLDER } from "utilities/constants";
|
|
|
|
import DataError from "components/DataError";
|
|
// @ts-ignore
|
|
import Input from "components/forms/fields/InputFieldWithIcon";
|
|
import TableContainer from "components/TableContainer";
|
|
import { generateTableHeaders } from "./TargetsInputHostsTableConfig";
|
|
|
|
interface ITargetsInputProps {
|
|
tabIndex: number;
|
|
searchText: string;
|
|
searchResults: IHost[];
|
|
isTargetsLoading: boolean;
|
|
hasFetchError: boolean;
|
|
targetedHosts: IHost[];
|
|
setSearchText: (value: string) => void;
|
|
handleRowSelect: (value: Row) => void;
|
|
handleRowRemove: (value: Row) => void;
|
|
}
|
|
|
|
const baseClass = "targets-input";
|
|
|
|
const TargetsInput = ({
|
|
tabIndex,
|
|
searchText,
|
|
searchResults,
|
|
isTargetsLoading,
|
|
hasFetchError,
|
|
targetedHosts,
|
|
handleRowSelect,
|
|
handleRowRemove,
|
|
setSearchText,
|
|
}: ITargetsInputProps): JSX.Element => {
|
|
const resultsDropdownTableHeaders = generateTableHeaders();
|
|
const selectedTableHeaders = generateTableHeaders(handleRowRemove);
|
|
const dropdownHosts =
|
|
searchResults && pullAllBy(searchResults, targetedHosts, "display_name");
|
|
// const finalSelectedHostTargets =
|
|
// targetedHosts && filter(targetedHosts, "display_name");
|
|
const isActiveSearch =
|
|
!isEmpty(searchText) && (!hasFetchError || isTargetsLoading);
|
|
const isSearchError = !isEmpty(searchText) && hasFetchError;
|
|
|
|
return (
|
|
<div>
|
|
<div className={baseClass}>
|
|
<Input
|
|
autofocus
|
|
type="search"
|
|
iconName="search"
|
|
value={searchText}
|
|
tabIndex={tabIndex}
|
|
iconPosition="start"
|
|
label="Target specific hosts"
|
|
placeholder={HOSTS_SEARCH_BOX_PLACEHOLDER}
|
|
onChange={setSearchText}
|
|
/>
|
|
{isActiveSearch && (
|
|
<div className={`${baseClass}__hosts-search-dropdown`}>
|
|
<TableContainer
|
|
columns={resultsDropdownTableHeaders}
|
|
data={dropdownHosts}
|
|
isLoading={isTargetsLoading}
|
|
resultsTitle=""
|
|
emptyComponent={() => (
|
|
<div className="empty-search">
|
|
<div className="empty-search__inner">
|
|
<h4>No hosts match the current search criteria.</h4>
|
|
<p>
|
|
Expecting to see hosts? Try again in a few seconds as the
|
|
system catches up.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
)}
|
|
showMarkAllPages={false}
|
|
isAllPagesSelected={false}
|
|
disableCount
|
|
disablePagination
|
|
disableMultiRowSelect
|
|
onSelectSingleRow={handleRowSelect}
|
|
/>
|
|
</div>
|
|
)}
|
|
{isSearchError && (
|
|
<div className={`${baseClass}__hosts-search-dropdown`}>
|
|
<DataError />
|
|
</div>
|
|
)}
|
|
<div className={`${baseClass}__hosts-selected-table`}>
|
|
<TableContainer
|
|
columns={selectedTableHeaders}
|
|
data={targetedHosts}
|
|
isLoading={false}
|
|
resultsTitle=""
|
|
showMarkAllPages={false}
|
|
isAllPagesSelected={false}
|
|
disableCount
|
|
disablePagination
|
|
emptyComponent={() => <></>}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default TargetsInput;
|