Update route to pass monitor ID to details component

This commit is contained in:
Alex Holliday
2024-07-10 09:59:48 -07:00
parent 1ba37a7ec9
commit 342d426da0
2 changed files with 14 additions and 6 deletions

View File

@@ -21,7 +21,6 @@ import ProtectedRoute from "./Components/ProtectedRoute";
import Details from "./Pages/Details";
import Maintenance from "./Pages/Maintenance";
function App() {
return (
<>
@@ -40,14 +39,15 @@ function App() {
path="/monitors/create"
element={<ProtectedRoute Component={CreateNewMonitor} />}
/>
<Route
path="/monitors/:monitorId/"
element={<ProtectedRoute Component={Details} />}
/>
<Route
path="incidents"
element={<ProtectedRoute Component={Incidents} />}
/>
<Route
path="details"
element={<ProtectedRoute Component={Details} />}
/>
<Route
path="status"
element={<ProtectedRoute Component={Status} />}

View File

@@ -17,6 +17,7 @@ import ArrowDownwardRoundedIcon from "@mui/icons-material/ArrowDownwardRounded";
import OpenInNewPage from "../../assets/icons/open-in-new-page.svg?react";
import ArrowBackRoundedIcon from "@mui/icons-material/ArrowBackRounded";
import ArrowForwardRoundedIcon from "@mui/icons-material/ArrowForwardRounded";
import { useNavigate } from "react-router-dom";
/**
* Host component.
@@ -94,6 +95,7 @@ const Status = ({ params }) => {
* @returns {React.Component} Returns a table with the monitor data.
*/
const MonitorTable = ({ monitors = [] }) => {
const navigate = useNavigate();
const [page, setPage] = useState(0);
const rowsPerPage = 5;
@@ -124,7 +126,13 @@ const MonitorTable = ({ monitors = [] }) => {
};
return (
<TableRow key={monitor._id}>
<TableRow
sx={{ cursor: "pointer" }}
key={monitor._id}
onClick={() => {
navigate(`/monitors/${monitor._id}`);
}}
>
<TableCell>
<Host params={params} />
</TableCell>