mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-23 12:31:54 +00:00
feat(scans): add new component - alert bar
This commit is contained in:
@@ -40,6 +40,7 @@ export default async function Compliance({
|
||||
progress: scan.attributes.progress,
|
||||
})) || [];
|
||||
} catch (error) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.error("Error fetching scans data:", error);
|
||||
}
|
||||
|
||||
@@ -72,6 +73,7 @@ export default async function Compliance({
|
||||
)
|
||||
: [];
|
||||
} catch (error) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.error("Error fetching compliance data:", error);
|
||||
}
|
||||
|
||||
@@ -104,6 +106,7 @@ const SSRComplianceGrid = async ({
|
||||
region: regionFilter,
|
||||
});
|
||||
} catch (error) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.error("Error fetching compliances overview:", error);
|
||||
return (
|
||||
<div className="flex h-full items-center justify-center">
|
||||
|
||||
@@ -8,6 +8,7 @@ import {
|
||||
ButtonRefreshData,
|
||||
NoProvidersAdded,
|
||||
NoProvidersConnected,
|
||||
ScanWarningBar,
|
||||
} from "@/components/scans";
|
||||
import { LaunchScanWorkflow } from "@/components/scans/launch-workflow";
|
||||
import { SkeletonTableScans } from "@/components/scans/table";
|
||||
@@ -72,9 +73,10 @@ export default async function Scans({
|
||||
<Spacer y={8} />
|
||||
</>
|
||||
)}
|
||||
<Spacer y={8} />
|
||||
<div className="grid grid-cols-12 items-start gap-4">
|
||||
<div className="col-span-12">
|
||||
<ScanWarningBar />
|
||||
<Spacer y={4} />
|
||||
<div className="flex flex-row items-center justify-between">
|
||||
<DataTableFilterCustom filters={filterScans || []} />
|
||||
<ButtonRefreshData
|
||||
|
||||
@@ -38,7 +38,9 @@ export const CustomRegionSelection: React.FC = () => {
|
||||
className="w-full"
|
||||
size="sm"
|
||||
selectedKeys={selectedKeys}
|
||||
onSelectionChange={(keys) => applyRegionFilter(Array.from(keys))}
|
||||
onSelectionChange={(keys) =>
|
||||
applyRegionFilter(Array.from(keys) as string[])
|
||||
}
|
||||
>
|
||||
{regions.map((region) => (
|
||||
<SelectItem key={region.key}>{region.label}</SelectItem>
|
||||
|
||||
@@ -2,3 +2,4 @@ export * from "./button-refresh-data";
|
||||
export * from "./link-to-findings-from-scan";
|
||||
export * from "./no-providers-added";
|
||||
export * from "./no-providers-connected";
|
||||
export * from "./scan-warning-bar";
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
import { Alert, cn } from "@nextui-org/react";
|
||||
|
||||
export const ScanWarningBar = () => {
|
||||
return (
|
||||
<Alert
|
||||
color="warning"
|
||||
title="Waiting for Your Scan to Show Up?"
|
||||
description="Your scan is being processed and may take a few minutes to appear on the table. It will show up shortly."
|
||||
variant="faded"
|
||||
isClosable
|
||||
classNames={{
|
||||
base: cn([
|
||||
"border-1 border-default-200 dark:border-default-100",
|
||||
"gap-x-4",
|
||||
]),
|
||||
}}
|
||||
/>
|
||||
);
|
||||
};
|
||||
@@ -1,9 +1,9 @@
|
||||
import { UseRadioProps } from "@nextui-org/radio/dist/use-radio";
|
||||
import { cn, useRadio, VisuallyHidden } from "@nextui-org/react";
|
||||
import React from "react";
|
||||
|
||||
interface CustomRadioProps extends UseRadioProps {
|
||||
interface CustomRadioProps {
|
||||
description?: string;
|
||||
value?: string;
|
||||
children?: React.ReactNode;
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ export const CustomRadio: React.FC<CustomRadioProps> = (props) => {
|
||||
getLabelProps,
|
||||
getLabelWrapperProps,
|
||||
getControlProps,
|
||||
} = useRadio(props);
|
||||
} = useRadio({ ...props, value: props.value || "" });
|
||||
|
||||
return (
|
||||
<Component
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import { Textarea } from "@nextui-org/input";
|
||||
import { Textarea } from "@nextui-org/react";
|
||||
import React from "react";
|
||||
import { Control, FieldPath, FieldValues } from "react-hook-form";
|
||||
|
||||
|
||||
Generated
+3657
-2679
File diff suppressed because it is too large
Load Diff
+2
-2
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"dependencies": {
|
||||
"@hookform/resolvers": "^3.9.0",
|
||||
"@nextui-org/react": "^2.4.6",
|
||||
"@nextui-org/react": "^2.6.11",
|
||||
"@nextui-org/system": "2.2.1",
|
||||
"@nextui-org/theme": "2.2.5",
|
||||
"@radix-ui/react-alert-dialog": "^1.1.1",
|
||||
@@ -22,7 +22,7 @@
|
||||
"clsx": "^2.1.1",
|
||||
"cmdk": "^1.0.0",
|
||||
"date-fns": "^3.6.0",
|
||||
"framer-motion": "~11.1.1",
|
||||
"framer-motion": "^11.16.0",
|
||||
"intl-messageformat": "^10.5.0",
|
||||
"jose": "^5.9.3",
|
||||
"jwt-decode": "^4.0.0",
|
||||
|
||||
Reference in New Issue
Block a user