mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
114 lines
3.4 KiB
TypeScript
114 lines
3.4 KiB
TypeScript
import React from "react";
|
|
|
|
import { ISoftwareTitleVersion } from "interfaces/software";
|
|
import PATHS from "router/paths";
|
|
import { getPathWithQueryParams } from "utilities/url";
|
|
|
|
import {
|
|
INumberCellProps,
|
|
IStringCellProps,
|
|
} from "interfaces/datatable_config";
|
|
import { CellProps } from "react-table";
|
|
|
|
import TextCell from "components/TableContainer/DataTable/TextCell";
|
|
import ViewAllHostsLink from "components/ViewAllHostsLink";
|
|
import LinkCell from "components/TableContainer/DataTable/LinkCell";
|
|
|
|
import VulnerabilitiesCell from "../../../components/tables/VulnerabilitiesCell";
|
|
|
|
interface ISoftwareTitleVersionsTableConfigProps {
|
|
teamId?: number;
|
|
isIPadOSOrIOSApp: boolean;
|
|
}
|
|
|
|
type IVersionCellProps = IStringCellProps<ISoftwareTitleVersion>;
|
|
type IVulnCellProps = CellProps<ISoftwareTitleVersion, string[] | null>;
|
|
type IHostCountCellProps = INumberCellProps<ISoftwareTitleVersion>;
|
|
type IViewAllHostsLinkProps = CellProps<ISoftwareTitleVersion>;
|
|
|
|
const generateSoftwareTitleVersionsTableConfig = ({
|
|
teamId,
|
|
isIPadOSOrIOSApp,
|
|
}: ISoftwareTitleVersionsTableConfigProps) => {
|
|
const tableHeaders = [
|
|
{
|
|
title: "Version",
|
|
Header: "Version",
|
|
disableSortBy: true,
|
|
accessor: "version",
|
|
Cell: (cellProps: IVersionCellProps): JSX.Element => {
|
|
if (!cellProps.cell.value) {
|
|
// renders desired empty state
|
|
return <TextCell />;
|
|
}
|
|
const { id } = cellProps.row.original;
|
|
const softwareVersionDetailsPath = getPathWithQueryParams(
|
|
PATHS.SOFTWARE_VERSION_DETAILS(id.toString()),
|
|
{ team_id: teamId }
|
|
);
|
|
|
|
return (
|
|
<LinkCell
|
|
className="name-link"
|
|
path={softwareVersionDetailsPath}
|
|
value={cellProps.cell.value}
|
|
/>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: "Vulnerabilities",
|
|
Header: "Vulnerabilities",
|
|
disableSortBy: true,
|
|
// the "vulnerabilities" accessor is used but the data is actually coming
|
|
// from the version attribute. We do this as we already have a "versions"
|
|
// attribute used for the "Version" column and we cannot reuse. This is a
|
|
// limitation of react-table.
|
|
// With the versions data, we can sum up the vulnerabilities to get the
|
|
// total number of vulnerabilities for the software title
|
|
accessor: "vulnerabilities",
|
|
Cell: (cellProps: IVulnCellProps): JSX.Element => {
|
|
if (isIPadOSOrIOSApp) {
|
|
return <TextCell value="Not supported" grey />;
|
|
}
|
|
return <VulnerabilitiesCell vulnerabilities={cellProps.cell.value} />;
|
|
// TODO: tooltip
|
|
},
|
|
},
|
|
{
|
|
title: "Hosts",
|
|
Header: "Hosts",
|
|
disableSortBy: true,
|
|
accessor: "hosts_count",
|
|
Cell: (cellProps: IHostCountCellProps): JSX.Element => (
|
|
<TextCell value={cellProps.cell.value} />
|
|
),
|
|
},
|
|
{
|
|
title: "",
|
|
Header: "",
|
|
accessor: "linkToFilteredHosts",
|
|
disableSortBy: true,
|
|
Cell: (cellProps: IViewAllHostsLinkProps) => {
|
|
return (
|
|
<>
|
|
{cellProps.row.original && (
|
|
<ViewAllHostsLink
|
|
queryParams={{
|
|
software_version_id: cellProps.row.original.id,
|
|
team_id: teamId,
|
|
}}
|
|
className="software-link"
|
|
rowHover
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
},
|
|
},
|
|
];
|
|
|
|
return tableHeaders;
|
|
};
|
|
|
|
export default generateSoftwareTitleVersionsTableConfig;
|