aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/views/admin/Admin.tsx
blob: e17da5bc863d011c6c8059facf0ff29d0a9ef1ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import React, { Fragment } from "react";
import { Redirect, Route, Switch, useRouteMatch, match } from "react-router";

import { AuthUser } from "@/services/user";

import UserAdmin from "./UserAdmin";

interface AdminProps {
  user: AuthUser;
}

const Admin: React.FC<AdminProps> = ({ user }) => {
  const match = useRouteMatch();

  return (
    <Fragment>
      <Switch>
        <Redirect from={match.path} to={`${match.path}/users`} exact />
        <Route path={`${match.path}/:name`}>
          {(p) => {
            const match = p.match as match<{ name: string }>;
            const name = match.params["name"];
            if (name === "users") {
              return <UserAdmin user={user} />;
            }
          }}
        </Route>
      </Switch>
    </Fragment>
  );
};

export default Admin;