add: some util to dashboard
This commit is contained in:
@@ -1,5 +1,22 @@
|
||||
import { Card } from "@mui/material";
|
||||
import { Typography } from "@mui/material";
|
||||
import { ReactNode } from "react";
|
||||
|
||||
const DashboardCard = Card;
|
||||
interface DashboardCardProps {
|
||||
title: string;
|
||||
children?: ReactNode;
|
||||
}
|
||||
const DashboardCard = (props: DashboardCardProps) => {
|
||||
const { children, title } = props;
|
||||
return (
|
||||
<div className="h-full w-full bg-slate-50 shadow-sm shadow-slate-500">
|
||||
<div className="h-full w-full px-3 py-2">
|
||||
<Typography variant="h6" color={"secondary"}>
|
||||
{title}
|
||||
</Typography>
|
||||
{children}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export { DashboardCard };
|
||||
|
||||
74
pkgs/ui/src/components/dashboard/NetworkOverview/index.tsx
Normal file
74
pkgs/ui/src/components/dashboard/NetworkOverview/index.tsx
Normal file
@@ -0,0 +1,74 @@
|
||||
import { DashboardCard } from "@/components/card";
|
||||
import { NoDataOverlay } from "@/components/noDataOverlay";
|
||||
import { status, Status, clanStatus } from "@/data/dashboardData";
|
||||
import {
|
||||
Chip,
|
||||
Divider,
|
||||
List,
|
||||
ListItem,
|
||||
ListItemIcon,
|
||||
ListItemText,
|
||||
Typography,
|
||||
} from "@mui/material";
|
||||
import Link from "next/link";
|
||||
import React from "react";
|
||||
|
||||
const statusColorMap: Record<
|
||||
Status,
|
||||
"default" | "primary" | "secondary" | "error" | "info" | "success" | "warning"
|
||||
> = {
|
||||
online: "info",
|
||||
offline: "error",
|
||||
pending: "default",
|
||||
};
|
||||
|
||||
const MAX_OTHERS = 5;
|
||||
|
||||
export const NetworkOverview = () => {
|
||||
const { self, other } = clanStatus;
|
||||
|
||||
const firstOthers = other.slice(0, MAX_OTHERS);
|
||||
return (
|
||||
<DashboardCard title="Clan Overview">
|
||||
<List>
|
||||
<ListItem>
|
||||
<ListItemText primary={self.name} secondary={self.status} />
|
||||
<ListItemIcon>
|
||||
<Chip
|
||||
label={status[self.status]}
|
||||
color={statusColorMap[self.status]}
|
||||
/>
|
||||
</ListItemIcon>
|
||||
</ListItem>
|
||||
<Divider flexItem />
|
||||
{!other.length && (
|
||||
<div className="my-3 flex h-full w-full justify-center align-middle">
|
||||
<NoDataOverlay
|
||||
label={
|
||||
<ListItemText
|
||||
primary="No other nodes"
|
||||
secondary={<Link href="/nodes">Add devices</Link>}
|
||||
/>
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
{firstOthers.map((o) => (
|
||||
<ListItem key={o.id}>
|
||||
<ListItemText primary={o.name} secondary={o.status} />
|
||||
<ListItemIcon>
|
||||
<Chip label={status[o.status]} color={statusColorMap[o.status]} />
|
||||
</ListItemIcon>
|
||||
</ListItem>
|
||||
))}
|
||||
{other.length > MAX_OTHERS && (
|
||||
<ListItem>
|
||||
<ListItemText
|
||||
secondary={` ${other.length - MAX_OTHERS} more ...`}
|
||||
/>
|
||||
</ListItem>
|
||||
)}
|
||||
</List>
|
||||
</DashboardCard>
|
||||
);
|
||||
};
|
||||
12
pkgs/ui/src/components/dashboard/activity/index.tsx
Normal file
12
pkgs/ui/src/components/dashboard/activity/index.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { DashboardCard } from "@/components/card";
|
||||
import { NoDataOverlay } from "@/components/noDataOverlay";
|
||||
|
||||
export const RecentActivity = () => {
|
||||
return (
|
||||
<DashboardCard title="Recent Activity">
|
||||
<div className="flex h-full w-full justify-center align-middle">
|
||||
<NoDataOverlay label="No Activity yet" />
|
||||
</div>
|
||||
</DashboardCard>
|
||||
);
|
||||
};
|
||||
73
pkgs/ui/src/components/dashboard/notifications/index.tsx
Normal file
73
pkgs/ui/src/components/dashboard/notifications/index.tsx
Normal file
@@ -0,0 +1,73 @@
|
||||
import { DashboardCard } from "@/components/card";
|
||||
import { notificationData } from "@/data/dashboardData";
|
||||
import { tw } from "@/utils/tailwind";
|
||||
import {
|
||||
Avatar,
|
||||
Chip,
|
||||
List,
|
||||
ListItem,
|
||||
ListItemAvatar,
|
||||
ListItemButton,
|
||||
ListItemIcon,
|
||||
ListItemText,
|
||||
} from "@mui/material";
|
||||
import { Label } from "recharts";
|
||||
|
||||
import CheckIcon from "@mui/icons-material/Check";
|
||||
import InfoIcon from "@mui/icons-material/Info";
|
||||
import PriorityHighIcon from "@mui/icons-material/PriorityHigh";
|
||||
import CloseIcon from "@mui/icons-material/Close";
|
||||
|
||||
const severityMap = {
|
||||
info: {
|
||||
icon: <InfoIcon />,
|
||||
color: "info",
|
||||
},
|
||||
success: {
|
||||
icon: <CheckIcon />,
|
||||
color: "success",
|
||||
},
|
||||
warning: {
|
||||
icon: <PriorityHighIcon />,
|
||||
color: "warning",
|
||||
},
|
||||
error: {
|
||||
icon: <CloseIcon />,
|
||||
color: "error",
|
||||
},
|
||||
};
|
||||
|
||||
export const Notifications = () => {
|
||||
return (
|
||||
<DashboardCard title="Notifications">
|
||||
<List>
|
||||
{notificationData.map((n, idx) => (
|
||||
<ListItem key={idx}>
|
||||
<ListItemAvatar>
|
||||
<Avatar
|
||||
sx={{
|
||||
bgcolor: `${n.severity}.main`,
|
||||
}}
|
||||
>
|
||||
{severityMap[n.severity].icon}
|
||||
</Avatar>
|
||||
</ListItemAvatar>
|
||||
<ListItemText
|
||||
primary={n.msg}
|
||||
secondary={n.date}
|
||||
sx={{
|
||||
width: "100px",
|
||||
}}
|
||||
/>
|
||||
<ListItemText
|
||||
primary={n.source}
|
||||
sx={{
|
||||
width: "100px",
|
||||
}}
|
||||
/>
|
||||
</ListItem>
|
||||
))}
|
||||
</List>
|
||||
</DashboardCard>
|
||||
);
|
||||
};
|
||||
80
pkgs/ui/src/components/noDataOverlay/index.tsx
Normal file
80
pkgs/ui/src/components/noDataOverlay/index.tsx
Normal file
@@ -0,0 +1,80 @@
|
||||
"use client";
|
||||
|
||||
import * as React from "react";
|
||||
import Box from "@mui/material/Box";
|
||||
import { styled } from "@mui/material/styles";
|
||||
|
||||
const StyledGridOverlay = styled("div")(({ theme }) => ({
|
||||
display: "flex",
|
||||
flexDirection: "column",
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
height: "100%",
|
||||
"& .ant-empty-img-1": {
|
||||
fill: theme.palette.mode === "light" ? "#aeb8c2" : "#262626",
|
||||
},
|
||||
"& .ant-empty-img-2": {
|
||||
fill: theme.palette.mode === "light" ? "#f5f5f7" : "#595959",
|
||||
},
|
||||
"& .ant-empty-img-3": {
|
||||
fill: theme.palette.mode === "light" ? "#dce0e6" : "#434343",
|
||||
},
|
||||
"& .ant-empty-img-4": {
|
||||
fill: theme.palette.mode === "light" ? "#fff" : "#1c1c1c",
|
||||
},
|
||||
"& .ant-empty-img-5": {
|
||||
fillOpacity: theme.palette.mode === "light" ? "0.8" : "0.08",
|
||||
fill: theme.palette.mode === "light" ? "#f5f5f5" : "#fff",
|
||||
},
|
||||
}));
|
||||
|
||||
interface NoDataOverlayProps {
|
||||
label: React.ReactNode;
|
||||
}
|
||||
export function NoDataOverlay(props: NoDataOverlayProps) {
|
||||
const { label } = props;
|
||||
return (
|
||||
<StyledGridOverlay>
|
||||
<svg
|
||||
width="120"
|
||||
height="100"
|
||||
viewBox="0 0 184 152"
|
||||
aria-hidden
|
||||
focusable="false"
|
||||
>
|
||||
<g fill="none" fillRule="evenodd">
|
||||
<g transform="translate(24 31.67)">
|
||||
<ellipse
|
||||
className="ant-empty-img-5"
|
||||
cx="67.797"
|
||||
cy="106.89"
|
||||
rx="67.797"
|
||||
ry="12.668"
|
||||
/>
|
||||
<path
|
||||
className="ant-empty-img-1"
|
||||
d="M122.034 69.674L98.109 40.229c-1.148-1.386-2.826-2.225-4.593-2.225h-51.44c-1.766 0-3.444.839-4.592 2.225L13.56 69.674v15.383h108.475V69.674z"
|
||||
/>
|
||||
<path
|
||||
className="ant-empty-img-2"
|
||||
d="M33.83 0h67.933a4 4 0 0 1 4 4v93.344a4 4 0 0 1-4 4H33.83a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4z"
|
||||
/>
|
||||
<path
|
||||
className="ant-empty-img-3"
|
||||
d="M42.678 9.953h50.237a2 2 0 0 1 2 2V36.91a2 2 0 0 1-2 2H42.678a2 2 0 0 1-2-2V11.953a2 2 0 0 1 2-2zM42.94 49.767h49.713a2.262 2.262 0 1 1 0 4.524H42.94a2.262 2.262 0 0 1 0-4.524zM42.94 61.53h49.713a2.262 2.262 0 1 1 0 4.525H42.94a2.262 2.262 0 0 1 0-4.525zM121.813 105.032c-.775 3.071-3.497 5.36-6.735 5.36H20.515c-3.238 0-5.96-2.29-6.734-5.36a7.309 7.309 0 0 1-.222-1.79V69.675h26.318c2.907 0 5.25 2.448 5.25 5.42v.04c0 2.971 2.37 5.37 5.277 5.37h34.785c2.907 0 5.277-2.421 5.277-5.393V75.1c0-2.972 2.343-5.426 5.25-5.426h26.318v33.569c0 .617-.077 1.216-.221 1.789z"
|
||||
/>
|
||||
</g>
|
||||
<path
|
||||
className="ant-empty-img-3"
|
||||
d="M149.121 33.292l-6.83 2.65a1 1 0 0 1-1.317-1.23l1.937-6.207c-2.589-2.944-4.109-6.534-4.109-10.408C138.802 8.102 148.92 0 161.402 0 173.881 0 184 8.102 184 18.097c0 9.995-10.118 18.097-22.599 18.097-4.528 0-8.744-1.066-12.28-2.902z"
|
||||
/>
|
||||
<g className="ant-empty-img-4" transform="translate(149.65 15.383)">
|
||||
<ellipse cx="20.654" cy="3.167" rx="2.849" ry="2.815" />
|
||||
<path d="M5.698 5.63H0L2.898.704zM9.259.704h4.985V5.63H9.259z" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<Box sx={{ mt: 1 }}>{label}</Box>
|
||||
</StyledGridOverlay>
|
||||
);
|
||||
}
|
||||
11
pkgs/ui/src/components/quickActions/index.tsx
Normal file
11
pkgs/ui/src/components/quickActions/index.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Button } from "@mui/material";
|
||||
|
||||
export const QuickActions = () => {
|
||||
return (
|
||||
<div className="grid-cols-auto gris">
|
||||
<Button>Action 1</Button>
|
||||
<Button>Action 2</Button>
|
||||
<Button>Action 3</Button>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
@@ -76,7 +76,7 @@ export function Sidebar(props: SidebarProps) {
|
||||
<aside
|
||||
className={tw`${
|
||||
show ? showSidebar : hideSidebar
|
||||
} z-9999 dark:bg-boxdark static left-0 top-0 flex h-screen w-14 flex-col overflow-x-hidden overflow-y-hidden bg-zinc-950 transition duration-150 ease-in-out lg:w-64`}
|
||||
} z-9999 dark:bg-boxdark static left-0 top-0 flex h-screen w-14 flex-col overflow-x-hidden overflow-y-hidden bg-zinc-950 transition duration-150 ease-in-out lg:w-64`}
|
||||
>
|
||||
<div className="py-5.5 lg:py-6.5 flex items-center justify-between gap-2 overflow-hidden px-0 lg:px-6">
|
||||
<div className="mt-8 hidden w-full text-center font-semibold text-white lg:block">
|
||||
|
||||
Reference in New Issue
Block a user