pomerium/ui/src/components/ErrorPage.tsx
2022-10-25 14:00:47 +00:00

103 lines
3.2 KiB
TypeScript

import { ListItemProps, TableCell } from "@mui/material";
import Alert from "@mui/material/Alert";
import AlertTitle from "@mui/material/AlertTitle";
import Box from "@mui/material/Box";
import Container from "@mui/material/Container";
import Paper from "@mui/material/Paper";
import Stack from "@mui/material/Stack";
import Table from "@mui/material/Table";
import TableHead from "@mui/material/TableHead";
import TableRow from "@mui/material/TableRow";
import Typography from "@mui/material/Typography";
import Markdown from "markdown-to-jsx";
import React, { FC } from "react";
import { CheckCircle, MinusCircle, XCircle } from "react-feather";
import { ErrorPageData, PolicyEvaluationTrace } from "../types";
import SectionFooter from "./SectionFooter";
type PolicyEvaluationTraceDetailsProps = {
trace: PolicyEvaluationTrace;
} & ListItemProps;
const PolicyEvaluationTraceDetails: FC<PolicyEvaluationTraceDetailsProps> = ({
trace,
...props
}) => {
return (
<TableRow>
<TableCell align={"center"}>
{trace.deny ? (
<XCircle color="red" />
) : trace.allow ? (
<CheckCircle color="green" />
) : (
<MinusCircle color="gray" />
)}
</TableCell>
<TableCell>
<Markdown>{trace.explanation || trace.id}</Markdown>
</TableCell>
<TableCell>
<Markdown>
{trace.deny || !trace.allow ? trace.remediation : ""}
</Markdown>
</TableCell>
</TableRow>
);
};
export type ErrorPageProps = {
data: ErrorPageData;
};
export const ErrorPage: FC<ErrorPageProps> = ({ data }) => {
const traces =
data?.policyEvaluationTraces?.filter((trace) => !!trace.id) || [];
return (
<Container maxWidth={false}>
<Paper sx={{ overflow: "hidden" }}>
<Stack>
<Box sx={{ padding: "16px" }}>
<Alert severity="error">
<AlertTitle>
{data?.status || 500}{" "}
{data?.statusText || "Internal Server Error"}
</AlertTitle>
</Alert>
</Box>
{!!data?.errorMessageFirstParagraph && (
<Box sx={{ p: 4 }}>
<Markdown>{data.errorMessageFirstParagraph}</Markdown>
</Box>
)}
{traces?.length > 0 && (
<Container>
<Table>
<TableHead>
<TableRow>
<TableCell>Outcome</TableCell>
<TableCell>Explanation</TableCell>
<TableCell>Remediation</TableCell>
</TableRow>
</TableHead>
{traces.map((trace) => (
<PolicyEvaluationTraceDetails trace={trace} key={trace.id} />
))}
</Table>
</Container>
)}
{data?.requestId ? (
<SectionFooter>
<Typography variant="caption">
If you should have access, contact your administrator with your
request id {data?.requestId}.
</Typography>
</SectionFooter>
) : (
<></>
)}
</Stack>
</Paper>
</Container>
);
};
export default ErrorPage;