generated from Luis/nextjs-python-web-template
248 lines
6.7 KiB
TypeScript
248 lines
6.7 KiB
TypeScript
"use client";
|
|
import { useEffect, useMemo, useState } from "react";
|
|
import { ClientTableConfig, ServiceTableConfig } from "@/config/client_1";
|
|
import CustomTable from "@/components/table";
|
|
import {
|
|
Alert,
|
|
Button,
|
|
Snackbar,
|
|
CircularProgress,
|
|
IconButton,
|
|
} from "@mui/material";
|
|
import {
|
|
attachEntity,
|
|
detachEntity,
|
|
isAttached,
|
|
} from "@/api/entities/entities";
|
|
import { mutate } from "swr";
|
|
import { Skeleton } from "@mui/material";
|
|
import { Entity, Service } from "@/api/model";
|
|
import useGetEntityByNameOrDid from "@/components/hooks/useGetEntityByNameOrDid";
|
|
import { useGetAllServices } from "@/api/services/services";
|
|
import axios from "axios";
|
|
import CloseIcon from "@mui/icons-material/Close";
|
|
import { useSearchParams } from "next/navigation";
|
|
import SummaryDetails from "@/components/summary_card";
|
|
import { projectConfig } from "@/config/config";
|
|
import ConsumeDisplayComponent from "@/components/consume_content";
|
|
|
|
interface SnackMessage {
|
|
message: string;
|
|
severity: "success" | "error";
|
|
}
|
|
|
|
type AttachButtonProps = {
|
|
entity?: Entity;
|
|
setSnackbarMessage: (message: SnackMessage) => void;
|
|
setSnackbarOpen: (open: boolean) => void;
|
|
};
|
|
|
|
const AttachButton = ({
|
|
entity,
|
|
setSnackbarMessage,
|
|
setSnackbarOpen,
|
|
}: AttachButtonProps) => {
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleClick = async () => {
|
|
setLoading(true);
|
|
// Call the attach or detach function depending on the isAttached value
|
|
// and await for the result
|
|
try {
|
|
let response = await (entity?.attached
|
|
? detachEntity({ entity_did: entity?.did })
|
|
: attachEntity({ entity_did: entity?.did }));
|
|
|
|
if (!entity?.attached) {
|
|
console.log("calling isAttached");
|
|
response = await isAttached({ entity_did: entity?.did });
|
|
console.log("response: ", response);
|
|
}
|
|
const msg = {
|
|
message: response.data.message,
|
|
severity: "success",
|
|
} as SnackMessage;
|
|
setSnackbarMessage(msg);
|
|
setSnackbarOpen(true);
|
|
} catch (error) {
|
|
if (axios.isAxiosError(error)) {
|
|
// Extract the error message from the error object
|
|
const errorMessage = error.response?.data.detail[0].msg;
|
|
|
|
const msg = {
|
|
message: `${errorMessage}`,
|
|
severity: "error",
|
|
} as SnackMessage;
|
|
setSnackbarMessage(msg);
|
|
setSnackbarOpen(true);
|
|
} else {
|
|
console.error("error: ", error);
|
|
}
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Button
|
|
onClick={handleClick}
|
|
className="mr-6"
|
|
variant="contained"
|
|
// Disable the button while loading
|
|
disabled={loading}
|
|
>
|
|
{loading ? (
|
|
<CircularProgress size={24} />
|
|
) : entity?.attached ? (
|
|
"Detach"
|
|
) : (
|
|
"Attach"
|
|
)}
|
|
</Button>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default function Client() {
|
|
const searchParams = useSearchParams();
|
|
const name = searchParams.get("name") ?? "";
|
|
const [consumeContent, setConsumeContent] = useState(null);
|
|
const [snackbarOpen, setSnackbarOpen] = useState(false);
|
|
const [snackbarMessage, setSnackbarMessage] = useState<
|
|
SnackMessage | undefined
|
|
>(undefined);
|
|
|
|
const { entity: entity } = useGetEntityByNameOrDid(name);
|
|
const {
|
|
data: services,
|
|
isLoading: services_loading,
|
|
swrKey: entityKeyFunc,
|
|
} = useGetAllServices();
|
|
|
|
const clients: Service[] = useMemo(() => {
|
|
if (services?.data) {
|
|
return services.data.filter((service) => {
|
|
if (service.entity_did !== entity?.did) return true;
|
|
});
|
|
}
|
|
return [];
|
|
}, [services, entity?.did]);
|
|
|
|
const onRefresh = () => {
|
|
const entityKey =
|
|
typeof entityKeyFunc === "function" ? entityKeyFunc() : entityKeyFunc;
|
|
if (entityKey) mutate(entityKey);
|
|
};
|
|
|
|
useEffect(() => {
|
|
const interval = setInterval(() => {
|
|
onRefresh();
|
|
}, projectConfig.REFRESH_FREQUENCY);
|
|
|
|
return () => clearInterval(interval);
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
const closeSnackBar = () => {
|
|
setSnackbarMessage(undefined);
|
|
setSnackbarOpen(false);
|
|
};
|
|
|
|
// Consume
|
|
const handleConsumeContent = (content: any) => {
|
|
setConsumeContent(content);
|
|
};
|
|
|
|
if (services_loading) return <Skeleton height={500} />;
|
|
if (!services) return <Alert severity="error">Client not found</Alert>;
|
|
|
|
return (
|
|
<div className="m-10">
|
|
<div
|
|
style={{
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "space-between",
|
|
}}
|
|
>
|
|
<h2>Entity {entity?.name}</h2>
|
|
<div>
|
|
<AttachButton
|
|
entity={entity}
|
|
setSnackbarMessage={setSnackbarMessage}
|
|
setSnackbarOpen={setSnackbarOpen}
|
|
></AttachButton>
|
|
|
|
<Button onClick={onRefresh} variant="contained">
|
|
Refresh
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
<SummaryDetails
|
|
entity={{
|
|
name: "",
|
|
details: [
|
|
{ label: "DID", value: entity?.did },
|
|
{ label: "IP", value: entity?.ip },
|
|
{ label: "Network", value: entity?.network },
|
|
],
|
|
}}
|
|
/>
|
|
<div className="flex items-center flex-nowrap justify-between">
|
|
<div style={{ width: consumeContent ? "55%" : "100%" }}>
|
|
<h4>Service Consumer View</h4>
|
|
<CustomTable
|
|
loading={services_loading}
|
|
data={clients}
|
|
onConsumeAction={handleConsumeContent}
|
|
configuration={ClientTableConfig}
|
|
tkey="client-table"
|
|
/>
|
|
</div>
|
|
{consumeContent && (
|
|
<div style={{ width: "40%" }}>
|
|
<h4>Service Output</h4>
|
|
<ConsumeDisplayComponent htmlContent={consumeContent} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div>
|
|
<h4>Service Producer View</h4>
|
|
<CustomTable
|
|
loading={services_loading}
|
|
data={services?.data}
|
|
configuration={ServiceTableConfig}
|
|
tkey="service-table"
|
|
/>
|
|
</div>
|
|
<Snackbar
|
|
onClose={closeSnackBar}
|
|
anchorOrigin={{ vertical: "top", horizontal: "center" }}
|
|
open={snackbarOpen}
|
|
autoHideDuration={5000}
|
|
>
|
|
<Alert
|
|
severity={snackbarMessage?.severity}
|
|
// Add some margin or padding to the Alert component
|
|
sx={{ width: "100%", margin: 1, padding: 2 }}
|
|
// Add an IconButton component with a CloseIcon inside the Alert component
|
|
action={
|
|
<IconButton
|
|
size="small"
|
|
aria-label="close"
|
|
color="inherit"
|
|
onClick={closeSnackBar}
|
|
>
|
|
<CloseIcon fontSize="small" />
|
|
</IconButton>
|
|
}
|
|
>
|
|
{snackbarMessage?.message}
|
|
</Alert>
|
|
</Snackbar>
|
|
</div>
|
|
);
|
|
}
|