mirror of
https://github.com/fleetdm/fleet
synced 2026-05-10 02:30:56 +00:00
91 lines
2.2 KiB
TypeScript
91 lines
2.2 KiB
TypeScript
import React from "react";
|
|
|
|
import { IOperatingSystemVersion } from "interfaces/operating_system";
|
|
|
|
import HeaderCell from "components/TableContainer/DataTable/HeaderCell";
|
|
import ViewAllHostsLink from "components/ViewAllHostsLink";
|
|
import TextCell from "components/TableContainer/DataTable/TextCell";
|
|
|
|
import OSTypeCell from "../OSTypeCell";
|
|
import { IFilteredOperatingSystemVersion } from "../CurrentVersionSection/CurrentVersionSection";
|
|
|
|
interface IOSTypeCellProps {
|
|
row: {
|
|
original: IFilteredOperatingSystemVersion;
|
|
};
|
|
}
|
|
|
|
interface IHostCellProps {
|
|
row: {
|
|
original: IOperatingSystemVersion;
|
|
};
|
|
}
|
|
|
|
interface IHeaderProps {
|
|
column: {
|
|
title: string;
|
|
isSortedDesc: boolean;
|
|
};
|
|
}
|
|
|
|
// eslint-disable-next-line import/prefer-default-export
|
|
export const generateTableHeaders = (teamId: number) => {
|
|
return [
|
|
{
|
|
title: "OS type",
|
|
Header: "OS type",
|
|
disableSortBy: true,
|
|
accessor: "platform",
|
|
Cell: ({ row }: IOSTypeCellProps) => (
|
|
<OSTypeCell
|
|
platform={row.original.platform}
|
|
versionName={row.original.name_only}
|
|
/>
|
|
),
|
|
},
|
|
{
|
|
title: "Version",
|
|
Header: "Version",
|
|
disableSortBy: true,
|
|
accessor: "version",
|
|
},
|
|
{
|
|
title: "Hosts",
|
|
accessor: "hosts_count",
|
|
disableSortBy: false,
|
|
Header: (cellProps: IHeaderProps) => (
|
|
<HeaderCell
|
|
value={cellProps.column.title}
|
|
isSortedDesc={cellProps.column.isSortedDesc}
|
|
/>
|
|
),
|
|
Cell: ({ row }: IHostCellProps): JSX.Element => {
|
|
const { hosts_count } = row.original;
|
|
return <TextCell value={hosts_count} />;
|
|
},
|
|
},
|
|
{
|
|
title: "",
|
|
Header: "",
|
|
accessor: "linkToFilteredHosts",
|
|
disableSortBy: true,
|
|
Cell: (cellProps: IOSTypeCellProps) => {
|
|
return (
|
|
<>
|
|
{cellProps.row.original && (
|
|
<ViewAllHostsLink
|
|
queryParams={{
|
|
os_name: cellProps.row.original.name_only,
|
|
os_version: cellProps.row.original.version,
|
|
team_id: teamId,
|
|
}}
|
|
className="os-hosts-link"
|
|
rowHover
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
},
|
|
},
|
|
];
|
|
};
|