2024-01-25 18:03:44 +00:00
|
|
|
import React, { useContext, useMemo } from "react";
|
|
|
|
|
import classnames from "classnames";
|
|
|
|
|
|
|
|
|
|
import { AppContext } from "context/app";
|
|
|
|
|
import { ISoftwareVulnerability } from "interfaces/software";
|
|
|
|
|
import { GITHUB_NEW_ISSUE_LINK } from "utilities/constants";
|
|
|
|
|
|
|
|
|
|
import TableContainer from "components/TableContainer";
|
|
|
|
|
import EmptyTable from "components/EmptyTable";
|
|
|
|
|
import CustomLink from "components/CustomLink";
|
|
|
|
|
|
|
|
|
|
import generateTableConfig from "./SoftwareVulnerabilitiesTableConfig";
|
|
|
|
|
|
|
|
|
|
const baseClass = "software-vulnerabilities-table";
|
|
|
|
|
|
|
|
|
|
interface INoVulnsDetectedProps {
|
|
|
|
|
itemName: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const NoVulnsDetected = ({ itemName }: INoVulnsDetectedProps): JSX.Element => {
|
|
|
|
|
return (
|
|
|
|
|
<EmptyTable
|
|
|
|
|
header={`No vulnerabilities detected for this ${itemName}`}
|
|
|
|
|
info={
|
|
|
|
|
<>
|
|
|
|
|
Expecting to see vulnerabilities?{" "}
|
|
|
|
|
<CustomLink
|
|
|
|
|
url={GITHUB_NEW_ISSUE_LINK}
|
|
|
|
|
text="File an issue on GitHub"
|
|
|
|
|
newTab
|
|
|
|
|
/>
|
|
|
|
|
</>
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
interface ISoftwareVulnerabilitiesTableProps {
|
|
|
|
|
data: ISoftwareVulnerability[];
|
|
|
|
|
/** Name displayed on the empty state */
|
|
|
|
|
itemName: string;
|
|
|
|
|
isLoading: boolean;
|
|
|
|
|
className?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const SoftwareVulnerabilitiesTable = ({
|
|
|
|
|
data,
|
|
|
|
|
itemName,
|
|
|
|
|
isLoading,
|
|
|
|
|
className,
|
|
|
|
|
}: ISoftwareVulnerabilitiesTableProps) => {
|
|
|
|
|
const { isPremiumTier, isSandboxMode } = useContext(AppContext);
|
|
|
|
|
|
|
|
|
|
const classNames = classnames(baseClass, className);
|
|
|
|
|
|
|
|
|
|
const tableHeaders = useMemo(
|
|
|
|
|
() => generateTableConfig(Boolean(isPremiumTier), Boolean(isSandboxMode)),
|
|
|
|
|
[isPremiumTier, isSandboxMode]
|
|
|
|
|
);
|
|
|
|
|
return (
|
|
|
|
|
<div className={classNames}>
|
|
|
|
|
<TableContainer
|
|
|
|
|
columnConfigs={tableHeaders}
|
|
|
|
|
data={data}
|
2024-02-08 13:54:00 +00:00
|
|
|
defaultSortHeader={isPremiumTier ? "updated_at" : "cve"} // TODO: Change premium to created_at when added to API
|
2024-01-25 18:03:44 +00:00
|
|
|
defaultSortDirection={"desc"}
|
|
|
|
|
emptyComponent={() => <NoVulnsDetected itemName={itemName} />}
|
|
|
|
|
isAllPagesSelected={false}
|
|
|
|
|
isLoading={isLoading}
|
|
|
|
|
isClientSidePagination
|
|
|
|
|
pageSize={20}
|
|
|
|
|
resultsTitle={"vulnerabilities"}
|
|
|
|
|
showMarkAllPages={false}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default SoftwareVulnerabilitiesTable;
|