mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-05-24 11:59:39 -05:00
263 lines
5.8 KiB
React
263 lines
5.8 KiB
React
import { Navigate, Route, Routes as LibRoutes } from "react-router";
|
|
import HomeLayout from "../Components/Layouts/HomeLayout";
|
|
import NotFound from "../Pages/NotFound";
|
|
|
|
// Auth
|
|
import AuthLogin from "../Pages/Auth/Login";
|
|
import AuthRegister from "../Pages/Auth/Register/";
|
|
import AuthForgotPassword from "../Pages/Auth/ForgotPassword";
|
|
import AuthCheckEmail from "../Pages/Auth/CheckEmail";
|
|
import AuthSetNewPassword from "../Pages/Auth/SetNewPassword";
|
|
import AuthNewPasswordConfirmed from "../Pages/Auth/NewPasswordConfirmed";
|
|
|
|
// Uptime
|
|
import Uptime from "../Pages/Uptime/Monitors";
|
|
import UptimeDetails from "../Pages/Uptime/Details";
|
|
import UptimeCreate from "../Pages/Uptime/Create";
|
|
|
|
// PageSpeed
|
|
import PageSpeed from "../Pages/PageSpeed/Monitors";
|
|
import PageSpeedDetails from "../Pages/PageSpeed/Details";
|
|
import PageSpeedCreate from "../Pages/PageSpeed/Create";
|
|
|
|
// Infrastructure
|
|
import Infrastructure from "../Pages/Infrastructure/Monitors";
|
|
import InfrastructureCreate from "../Pages/Infrastructure/Create";
|
|
import InfrastructureDetails from "../Pages/Infrastructure/Details";
|
|
|
|
// Server Status
|
|
import ServerUnreachable from "../Pages/ServerUnreachable";
|
|
|
|
// Incidents
|
|
import Incidents from "../Pages/Incidents";
|
|
|
|
// Status pages
|
|
import CreateStatus from "../Pages/StatusPage/Create";
|
|
import StatusPages from "../Pages/StatusPage/StatusPages";
|
|
import Status from "../Pages/StatusPage/Status";
|
|
|
|
import Notifications from "../Pages/Notifications";
|
|
import CreateNotifications from "../Pages/Notifications/create";
|
|
|
|
// Settings
|
|
import Account from "../Pages/Account";
|
|
import EditUser from "../Pages/Account/EditUser";
|
|
import Settings from "../Pages/Settings";
|
|
|
|
import Maintenance from "../Pages/Maintenance";
|
|
|
|
import ProtectedRoute from "../Components/ProtectedRoute";
|
|
import RoleProtectedRoute from "../Components/RoleProtectedRoute";
|
|
import CreateNewMaintenanceWindow from "../Pages/Maintenance/CreateMaintenance";
|
|
import withAdminCheck from "../Components/HOC/withAdminCheck";
|
|
import BulkImport from "../Pages/Uptime/BulkImport";
|
|
import Logs from "../Pages/Logs";
|
|
|
|
const Routes = () => {
|
|
const AdminCheckedRegister = withAdminCheck(AuthRegister);
|
|
return (
|
|
<LibRoutes>
|
|
<Route
|
|
path="/"
|
|
element={
|
|
<ProtectedRoute>
|
|
<HomeLayout />
|
|
</ProtectedRoute>
|
|
}
|
|
>
|
|
<Route
|
|
path="/"
|
|
element={<Navigate to="/uptime" />}
|
|
/>
|
|
<Route
|
|
path="/uptime"
|
|
element={<Uptime />}
|
|
/>
|
|
|
|
<Route
|
|
path="/uptime/bulk-import"
|
|
element={<BulkImport />}
|
|
/>
|
|
|
|
<Route
|
|
path="/uptime/create"
|
|
element={<UptimeCreate />}
|
|
/>
|
|
<Route
|
|
path="/uptime/create/:monitorId"
|
|
element={<UptimeCreate isClone={true} />}
|
|
/>
|
|
<Route
|
|
path="/uptime/:monitorId/"
|
|
element={<UptimeDetails />}
|
|
/>
|
|
<Route
|
|
path="/uptime/configure/:monitorId/"
|
|
element={<UptimeCreate />}
|
|
/>
|
|
|
|
<Route
|
|
path="pagespeed"
|
|
element={<PageSpeed />}
|
|
/>
|
|
<Route
|
|
path="pagespeed/create"
|
|
element={<PageSpeedCreate />}
|
|
/>
|
|
<Route
|
|
path="pagespeed/:monitorId"
|
|
element={<PageSpeedDetails />}
|
|
/>
|
|
<Route
|
|
path="pagespeed/configure/:monitorId"
|
|
element={<PageSpeedCreate />}
|
|
/>
|
|
<Route
|
|
path="infrastructure"
|
|
element={<Infrastructure />}
|
|
/>
|
|
<Route
|
|
path="infrastructure/create"
|
|
element={<InfrastructureCreate />}
|
|
/>
|
|
<Route
|
|
path="/infrastructure/configure/:monitorId"
|
|
element={<InfrastructureCreate />}
|
|
/>
|
|
<Route
|
|
path="infrastructure/:monitorId"
|
|
element={<InfrastructureDetails />}
|
|
/>
|
|
<Route
|
|
path="incidents/:monitorId?"
|
|
element={<Incidents />}
|
|
/>
|
|
|
|
<Route
|
|
path="status"
|
|
element={<StatusPages />}
|
|
/>
|
|
|
|
<Route
|
|
path="status/uptime/:url"
|
|
element={<Status />}
|
|
/>
|
|
|
|
<Route
|
|
path="status/uptime/create"
|
|
element={<CreateStatus />}
|
|
/>
|
|
|
|
<Route
|
|
path="status/uptime/configure/:url"
|
|
element={<CreateStatus />}
|
|
/>
|
|
|
|
<Route
|
|
path="notifications"
|
|
element={<Notifications />}
|
|
/>
|
|
<Route
|
|
path="notifications/create"
|
|
element={<CreateNotifications />}
|
|
/>
|
|
|
|
<Route
|
|
path="notifications/:notificationId"
|
|
element={<CreateNotifications />}
|
|
/>
|
|
|
|
<Route
|
|
path="maintenance"
|
|
element={<Maintenance />}
|
|
/>
|
|
<Route
|
|
path="/maintenance/create/:maintenanceWindowId?"
|
|
element={<CreateNewMaintenanceWindow />}
|
|
/>
|
|
<Route
|
|
path="settings"
|
|
element={<Settings />}
|
|
/>
|
|
<Route
|
|
path="account/profile"
|
|
element={<Account open={"profile"} />}
|
|
/>
|
|
<Route
|
|
path="account/password"
|
|
element={<Account open={"password"} />}
|
|
/>
|
|
<Route
|
|
path="account/team"
|
|
element={<Account open={"team"} />}
|
|
/>
|
|
<Route
|
|
path="account/team/:userId"
|
|
element={
|
|
<RoleProtectedRoute roles={["superadmin"]}>
|
|
<EditUser />
|
|
</RoleProtectedRoute>
|
|
}
|
|
/>
|
|
|
|
<Route
|
|
path="logs"
|
|
element={
|
|
<RoleProtectedRoute roles={["admin", "superadmin"]}>
|
|
<Logs />
|
|
</RoleProtectedRoute>
|
|
}
|
|
/>
|
|
</Route>
|
|
|
|
<Route
|
|
path="/login"
|
|
element={<AuthLogin />}
|
|
/>
|
|
|
|
<Route
|
|
path="/register"
|
|
element={<AdminCheckedRegister />}
|
|
/>
|
|
|
|
<Route
|
|
exact
|
|
path="/register/:token"
|
|
element={<AuthRegister />}
|
|
/>
|
|
|
|
<Route
|
|
path="/forgot-password"
|
|
element={<AuthForgotPassword />}
|
|
/>
|
|
<Route
|
|
path="/check-email"
|
|
element={<AuthCheckEmail />}
|
|
/>
|
|
<Route
|
|
path="/set-new-password/:token"
|
|
element={<AuthSetNewPassword />}
|
|
/>
|
|
<Route
|
|
path="/new-password-confirmed"
|
|
element={<AuthNewPasswordConfirmed />}
|
|
/>
|
|
<Route
|
|
path="/status/uptime/public/:url"
|
|
element={<Status />}
|
|
/>
|
|
|
|
<Route
|
|
path="/server-unreachable"
|
|
element={<ServerUnreachable />}
|
|
/>
|
|
<Route
|
|
path="*"
|
|
element={<NotFound />}
|
|
/>
|
|
</LibRoutes>
|
|
);
|
|
};
|
|
|
|
export { Routes };
|