summaryrefslogtreecommitdiff
path: root/client/src/components/Rsvp.tsx
blob: 602f1590a281afd3cfa08290aa15c3c41b019abc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React from 'react';
import { useMemo } from 'react';
import { useLocation, Navigate, Outlet } from 'react-router-dom';
import { useSelector } from 'react-redux';
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 ? (
    <Outlet context={auth?.guest} />
  ) : (
    <Navigate to="/guests/login" state={{ from: location }} replace />
  );
}

export default Rsvp;