mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-04 19:21:51 +00:00
229 lines
7.2 KiB
TypeScript
229 lines
7.2 KiB
TypeScript
"use client";
|
|
|
|
import { AlertTriangle } from "lucide-react";
|
|
import { useSearchParams } from "next/navigation";
|
|
import { useEffect, useRef, useState } from "react";
|
|
|
|
import { getFindings } from "@/actions/findings/findings";
|
|
import {
|
|
getStandaloneFindingColumns,
|
|
SkeletonTableFindings,
|
|
} from "@/components/findings/table";
|
|
import { Alert, AlertDescription } from "@/components/shadcn";
|
|
import { Accordion } from "@/components/ui/accordion/Accordion";
|
|
import { DataTable } from "@/components/ui/table";
|
|
import { createDict, FINDINGS_DEFAULT_SORT, MUTED_FILTER } from "@/lib";
|
|
import { INVALID_CONFIG_NOTE } from "@/lib/compliance/commons";
|
|
import { getComplianceMapper } from "@/lib/compliance/compliance-mapper";
|
|
import { Requirement } from "@/types/compliance";
|
|
import { FindingProps, FindingsResponse } from "@/types/components";
|
|
|
|
interface ClientAccordionContentProps {
|
|
requirement: Requirement;
|
|
scanId: string;
|
|
framework: string;
|
|
disableFindings?: boolean;
|
|
}
|
|
|
|
export const ClientAccordionContent = ({
|
|
requirement,
|
|
framework,
|
|
scanId,
|
|
disableFindings = false,
|
|
}: ClientAccordionContentProps) => {
|
|
const [findings, setFindings] = useState<FindingsResponse | null>(null);
|
|
const [expandedFindings, setExpandedFindings] = useState<FindingProps[]>([]);
|
|
const searchParams = useSearchParams();
|
|
const pageNumber = searchParams.get("page") || "1";
|
|
const pageSize = searchParams.get("pageSize") || "10";
|
|
const complianceId = searchParams.get("complianceId");
|
|
const openFindingId = searchParams.get("id");
|
|
const sort = searchParams.get("sort") || FINDINGS_DEFAULT_SORT;
|
|
const loadedPageRef = useRef<string | null>(null);
|
|
const loadedPageSizeRef = useRef<string | null>(null);
|
|
const loadedSortRef = useRef<string | null>(null);
|
|
const loadedMutedRef = useRef<string | null>(null);
|
|
const isExpandedRef = useRef(false);
|
|
const region = searchParams.get("filter[region__in]") || "";
|
|
// Respect the user's muted preference from the URL; default to EXCLUDE
|
|
// so the requirement view stays consistent with every other findings
|
|
// surface in the app (findings page, resource drawer, overview widgets).
|
|
const mutedFilter = searchParams.get("filter[muted]") || MUTED_FILTER.EXCLUDE;
|
|
|
|
useEffect(() => {
|
|
async function loadFindings() {
|
|
if (
|
|
!disableFindings &&
|
|
requirement.check_ids?.length > 0 &&
|
|
requirement.status !== "No findings" &&
|
|
(loadedPageRef.current !== pageNumber ||
|
|
loadedPageSizeRef.current !== pageSize ||
|
|
loadedSortRef.current !== sort ||
|
|
loadedMutedRef.current !== mutedFilter ||
|
|
!isExpandedRef.current)
|
|
) {
|
|
loadedPageRef.current = pageNumber;
|
|
loadedPageSizeRef.current = pageSize;
|
|
loadedSortRef.current = sort;
|
|
loadedMutedRef.current = mutedFilter;
|
|
isExpandedRef.current = true;
|
|
|
|
try {
|
|
const checkIds = requirement.check_ids;
|
|
const encodedSort = sort.replace(/^\+/, "");
|
|
const findingsData = await getFindings({
|
|
filters: {
|
|
"filter[check_id__in]": checkIds.join(","),
|
|
"filter[scan]": scanId,
|
|
"filter[muted]": mutedFilter,
|
|
...(region && { "filter[region__in]": region }),
|
|
},
|
|
page: parseInt(pageNumber, 10),
|
|
pageSize: parseInt(pageSize, 10),
|
|
sort: encodedSort,
|
|
});
|
|
|
|
setFindings(findingsData);
|
|
|
|
if (findingsData?.data) {
|
|
// Create dictionaries for resources, scans, and providers
|
|
const resourceDict = createDict("resources", findingsData);
|
|
const scanDict = createDict("scans", findingsData);
|
|
const providerDict = createDict("providers", findingsData);
|
|
|
|
// Expand each finding with its corresponding resource, scan, and provider
|
|
const expandedData = findingsData.data.map(
|
|
(finding: FindingProps) => {
|
|
const scan = scanDict[finding.relationships?.scan?.data?.id];
|
|
const resource =
|
|
resourceDict[finding.relationships?.resources?.data?.[0]?.id];
|
|
const provider =
|
|
providerDict[scan?.relationships?.provider?.data?.id];
|
|
|
|
return {
|
|
...finding,
|
|
relationships: { scan, resource, provider },
|
|
};
|
|
},
|
|
);
|
|
setExpandedFindings(expandedData);
|
|
}
|
|
} catch (error) {
|
|
console.error("Error loading findings:", error);
|
|
}
|
|
}
|
|
}
|
|
|
|
loadFindings();
|
|
}, [
|
|
requirement,
|
|
scanId,
|
|
pageNumber,
|
|
pageSize,
|
|
sort,
|
|
region,
|
|
mutedFilter,
|
|
disableFindings,
|
|
]);
|
|
|
|
const renderDetails = () => {
|
|
if (!complianceId) {
|
|
return null;
|
|
}
|
|
|
|
const mapper = getComplianceMapper(framework);
|
|
const detailsComponent = mapper.getDetailsComponent(requirement);
|
|
|
|
return <div className="w-full">{detailsComponent}</div>;
|
|
};
|
|
|
|
if (disableFindings) {
|
|
return (
|
|
<div className="w-full">
|
|
{renderDetails()}
|
|
<p className="mt-3 mb-1 text-sm font-medium text-gray-800 dark:text-gray-200">
|
|
⚠️ This requirement has no checks; therefore, there are no findings.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const checks = requirement.check_ids || [];
|
|
const checksList = (
|
|
<div className="flex items-center px-2 text-sm">
|
|
<div className="w-full flex-col">
|
|
<div className="mt-[-8px] mb-1 h-1 w-full border-b border-gray-200 dark:border-gray-800" />
|
|
<span className="text-gray-600 dark:text-gray-200" aria-label="Checks">
|
|
{checks.join(", ")}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
const accordionChecksItems = [
|
|
{
|
|
key: "checks",
|
|
title: (
|
|
<div className="flex items-center gap-2">
|
|
<span className="text-primary">{checks.length}</span>
|
|
{checks.length > 1 ? <span>Checks</span> : <span>Check</span>}
|
|
</div>
|
|
),
|
|
content: checksList,
|
|
},
|
|
];
|
|
|
|
const renderFindingsTable = () => {
|
|
if (findings === null && requirement.status !== "MANUAL") {
|
|
return <SkeletonTableFindings />;
|
|
}
|
|
|
|
if (findings?.data?.length && findings.data.length > 0) {
|
|
return (
|
|
<>
|
|
<h4 className="mb-2 text-sm font-medium">Findings</h4>
|
|
|
|
<DataTable
|
|
columns={getStandaloneFindingColumns({ openFindingId })}
|
|
data={expandedFindings || []}
|
|
metadata={findings?.meta}
|
|
disableScroll={true}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="mt-3 mb-1 text-sm font-medium text-gray-800 dark:text-gray-200">
|
|
⚠️ There are no findings for these regions
|
|
</div>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div className="w-full">
|
|
{requirement.invalid_config && (
|
|
<Alert variant="warning" className="mb-3">
|
|
<AlertTriangle />
|
|
<AlertDescription>{INVALID_CONFIG_NOTE}</AlertDescription>
|
|
</Alert>
|
|
)}
|
|
|
|
{renderDetails()}
|
|
|
|
{checks.length > 0 && (
|
|
<div className="my-4">
|
|
<Accordion
|
|
items={accordionChecksItems}
|
|
variant="light"
|
|
defaultExpandedKeys={[""]}
|
|
className="dark:bg-prowler-blue-400 rounded-lg bg-gray-50"
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{renderFindingsTable()}
|
|
</div>
|
|
);
|
|
};
|