summaryrefslogtreecommitdiff
path: root/client/src/components/Rsvp.tsx
blob: ab83cd7886c1ff40c2f225e39fcbb053eda06660 (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
import React from 'react';
import { useMemo } from 'react';
import { useLocation, Navigate, Outlet } from 'react-router-dom';
import { useSelector } from 'react-redux';
import CssBaseline from '@mui/material/CssBaseline';
import NavBar from './NavBar';
import { selectGuest } from '../slices/auth/guestSlice';

const authenticate = () => {
  const guest = useSelector(selectGuest);
  return useMemo(() => ({ guest }), [guest]);
};

function Rsvp() {
  const auth = authenticate();
  const location = useLocation();

  return auth?.guest ? (
    <>
      <CssBaseline />
      <NavBar />
      <Outlet context={auth?.guest} />
    </>
  ) : (
    <Navigate to="/guest/login" state={{ from: location }} replace />
  );
}

export default Rsvp;