aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/admin/Admin.tsx
blob: 9393a61ff39f1d6adafd2e3d03ed81fb979322f8 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import React, { Fragment } from "react";
import { Redirect, Route, Switch, useRouteMatch, match } from "react-router";
import { useTranslation } from "react-i18next";

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

import AdminNav from "./AdminNav";
import UserAdmin from "./UserAdmin";
import MoreAdmin from "./MoreAdmin";

import "./index.css";

interface AdminProps {
  user: AuthUser;
}

const Admin: React.FC<AdminProps> = ({ user }) => {
  useTranslation("admin");

  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"];
            return (
              <div className="container">
                <AdminNav />
                {(() => {
                  if (name === "users") {
                    return <UserAdmin user={user} />;
                  } else if (name === "more") {
                    return <MoreAdmin user={user} />;
                  }
                })()}
              </div>
            );
          }}
        </Route>
      </Switch>
    </Fragment>
  );
};

export default Admin;