2024-01-21 16:01:48 -05:00
|
|
|
import React from 'react';
|
2024-01-30 09:13:17 -05:00
|
|
|
import { NavLink, Route, Switch, useRouteMatch } from 'react-router-dom';
|
|
|
|
import TransitionRouter from '@/TransitionRouter';
|
|
|
|
import PermissionRoute from '@/components/elements/PermissionRoute';
|
|
|
|
import Can from '@/components/elements/Can';
|
|
|
|
import Spinner from '@/components/elements/Spinner';
|
|
|
|
import { NotFound } from '@/components/elements/ScreenBlock';
|
|
|
|
import { useLocation } from 'react-router';
|
2024-02-24 15:52:53 -05:00
|
|
|
import { useStoreState } from 'easy-peasy';
|
2024-03-09 12:36:16 -05:00
|
|
|
import { ServerContext } from '@/state/server';
|
2024-01-30 09:13:17 -05:00
|
|
|
|
|
|
|
import routes from '@/routers/routes';
|
|
|
|
import blueprintRoutes from './routes';
|
|
|
|
|
|
|
|
export const NavigationLinks = () => {
|
2024-02-24 15:52:53 -05:00
|
|
|
const rootAdmin = useStoreState((state) => state.user.data!.rootAdmin);
|
2024-03-09 12:36:16 -05:00
|
|
|
const serverNest = ServerContext.useStoreState((state) => state.server.data?.nestId);
|
2024-01-30 09:13:17 -05:00
|
|
|
const match = useRouteMatch<{ id: string }>();
|
|
|
|
const to = (value: string, url = false) => {
|
|
|
|
if (value === '/') {
|
|
|
|
return url ? match.url : match.path;
|
|
|
|
}
|
|
|
|
return `${(url ? match.url : match.path).replace(/\/*$/, '')}/${value.replace(/^\/+/, '')}`;
|
|
|
|
};
|
2024-01-21 16:01:48 -05:00
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
2024-01-30 09:13:17 -05:00
|
|
|
|
|
|
|
{/* Pterodactyl routes */}
|
|
|
|
{routes.server
|
|
|
|
.filter((route) => !!route.name)
|
|
|
|
.map((route) =>
|
|
|
|
route.permission ? (
|
|
|
|
<Can key={route.path} action={route.permission} matchAny>
|
|
|
|
<NavLink to={to(route.path, true)} exact={route.exact}>
|
|
|
|
{route.name}
|
|
|
|
</NavLink>
|
|
|
|
</Can>
|
|
|
|
) : (
|
|
|
|
<NavLink key={route.path} to={to(route.path, true)} exact={route.exact}>
|
|
|
|
{route.name}
|
|
|
|
</NavLink>
|
|
|
|
)
|
2024-02-24 14:46:59 -05:00
|
|
|
)
|
|
|
|
}
|
2024-01-30 09:13:17 -05:00
|
|
|
|
|
|
|
{/* Blueprint routes */}
|
2024-02-17 16:00:00 -05:00
|
|
|
{blueprintRoutes.server.length > 0 && blueprintRoutes.server
|
2024-01-30 09:13:17 -05:00
|
|
|
.filter((route) => !!route.name)
|
2024-02-24 15:52:53 -05:00
|
|
|
.filter((route) => route.adminOnly ? rootAdmin : true)
|
2024-03-09 12:36:16 -05:00
|
|
|
.filter((route) => route.nests && serverNest ? route.nests.includes(serverNest) : true )
|
2024-01-30 09:13:17 -05:00
|
|
|
.map((route) =>
|
|
|
|
route.permission ? (
|
|
|
|
<Can key={route.path} action={route.permission} matchAny>
|
|
|
|
<NavLink to={to(route.path, true)} exact={route.exact}>
|
|
|
|
{route.name}
|
|
|
|
</NavLink>
|
|
|
|
</Can>
|
|
|
|
) : (
|
|
|
|
<NavLink key={route.path} to={to(route.path, true)} exact={route.exact}>
|
|
|
|
{route.name}
|
|
|
|
</NavLink>
|
|
|
|
)
|
2024-02-24 14:46:59 -05:00
|
|
|
)
|
|
|
|
}
|
2024-01-30 09:13:17 -05:00
|
|
|
|
2024-01-21 16:01:48 -05:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
2024-01-30 09:13:17 -05:00
|
|
|
|
|
|
|
export const NavigationRouter = () => {
|
2024-02-24 15:52:53 -05:00
|
|
|
const rootAdmin = useStoreState((state) => state.user.data!.rootAdmin);
|
2024-01-30 09:13:17 -05:00
|
|
|
const match = useRouteMatch<{ id: string }>();
|
|
|
|
const to = (value: string, url = false) => {
|
|
|
|
if (value === '/') {
|
|
|
|
return url ? match.url : match.path;
|
|
|
|
}
|
|
|
|
return `${(url ? match.url : match.path).replace(/\/*$/, '')}/${value.replace(/^\/+/, '')}`;
|
|
|
|
};
|
|
|
|
|
|
|
|
const location = useLocation();
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<TransitionRouter>
|
|
|
|
<Switch location={location}>
|
|
|
|
|
2024-02-13 09:04:23 -05:00
|
|
|
{/* Pterodactyl routes */}
|
2024-01-30 09:13:17 -05:00
|
|
|
{routes.server.map(({ path, permission, component: Component }) => (
|
|
|
|
<PermissionRoute key={path} permission={permission} path={to(path)} exact>
|
|
|
|
<Spinner.Suspense>
|
|
|
|
<Component />
|
|
|
|
</Spinner.Suspense>
|
|
|
|
</PermissionRoute>
|
|
|
|
))}
|
|
|
|
|
2024-02-13 09:04:23 -05:00
|
|
|
{/* Blueprint routes */}
|
2024-02-24 15:52:53 -05:00
|
|
|
{blueprintRoutes.server.length > 0 && blueprintRoutes.server
|
|
|
|
.filter((route) => route.adminOnly ? rootAdmin : true)
|
|
|
|
.map(({ path, permission, component: Component }) => (
|
|
|
|
<PermissionRoute key={path} permission={permission} path={to(path)} exact>
|
|
|
|
<Spinner.Suspense>
|
|
|
|
<Component />
|
|
|
|
</Spinner.Suspense>
|
|
|
|
</PermissionRoute>
|
|
|
|
))
|
|
|
|
}
|
2024-01-30 09:13:17 -05:00
|
|
|
|
|
|
|
<Route path={'*'} component={NotFound} />
|
|
|
|
</Switch>
|
|
|
|
</TransitionRouter>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|