summaryrefslogtreecommitdiff
path: root/src/core/utils/auth.js
blob: 62eba2c05befb84ebb6c86fc188b5cfc7467b016 (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
import { deleteCookie, getCookie, setCookie } from 'cookies-next';
import { useEffect, useState } from 'react';

const getAuth = () => {
  let auth = getCookie('auth');
  if (auth) {
    return JSON.parse(auth);
  }
  return false;
}

const setAuth = (user) => {
  setCookie('auth', JSON.stringify(user));
  return true;
}

const deleteAuth = () => {
  deleteCookie('auth');
  return true;
}

const useAuth = () => {
  const [auth, setAuth] = useState(null);

  useEffect(() => {
    const handleIsAuthenticated = () => setAuth(getAuth());
    handleIsAuthenticated();
  }, []);

  return [auth, setAuth];
}

export {
  getAuth,
  setAuth,
  deleteAuth,
  useAuth
};