mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 17:28:54 +00:00
349a88e25b
* Allow sort by more than one key * forcing 404 page where entity ids do not exist * refactored error boundary; handling 404s now * added 403 overlay; refactored auth wrappers * fixed test for maintainer * more efficient fetches; test fixes * clarify comment * clean up Co-authored-by: Tomas Touceda <chiiph@gmail.com>
31 lines
714 B
TypeScript
31 lines
714 B
TypeScript
import React, { useContext } from "react";
|
|
import { useErrorHandler } from "react-error-boundary";
|
|
import { AppContext } from "context/app";
|
|
|
|
interface IAuthAnyAdminRoutesProps {
|
|
children: JSX.Element;
|
|
}
|
|
|
|
/**
|
|
* Checks if a user is any maintainer or any admin when routing
|
|
*/
|
|
const AuthAnyAdminRoutes = ({
|
|
children,
|
|
}: IAuthAnyAdminRoutesProps): JSX.Element | null => {
|
|
const handlePageError = useErrorHandler();
|
|
const { currentUser, isGlobalAdmin, isAnyTeamAdmin } = useContext(AppContext);
|
|
|
|
if (!currentUser) {
|
|
return null;
|
|
}
|
|
|
|
if (!isGlobalAdmin && !isAnyTeamAdmin) {
|
|
handlePageError({ status: 403 });
|
|
return null;
|
|
}
|
|
|
|
return <>{children}</>;
|
|
};
|
|
|
|
export default AuthAnyAdminRoutes;
|