5
2 Comments

How to write a requireAuth Higher Order Component

A lot of React discussion these days focuses on hooks, but sometimes an HOC (or Higher Order Component) is the right tool for the job, particularly when you want to be able to avoiding rendering the passed in component in certain cases. Here's an example of how you might implement a requireAuth HOC.

function requireAuth(Component){
  return (props) => {
    // Let's assume we have a hook for getting auth state
    const auth = useAuth();

    useEffect(() => {
      // Redirect if not signed in
      if (auth.isAuthenticated === false) {
        // Use replace instead of push so you don't break back button
        router.replace("/signin");
      }
    }, [auth]);
    
    return auth.isAuthenticated === true
      // Render component passed into requireAuth
      ? <Component {...props} />
      // Show loading if not signed in (redirect is about to happen)
      // or while waiting on auth state (isAuthenticated is undefined)
      : <PageLoader />
  };
};

// Usage: Simply wrap any component when exporting
export default requireAuth(AccountPage);
posted to
React
on July 9, 2020
  1. 2

    From a react noob's perspective, please keep these insights coming!

    1. 2

      Glad you like it! Will keep sharing.

Trending on Indie Hackers
I've built a 2300$ a month SaaS out of a simple problem. 19 comments 🔥 Roast My Landing Page 12 comments Where can I buy newsletter ad promos? 9 comments Key takeaways growing MRR from $6.5k to $20k for my design studio 6 comments How would you monetize my project colorsandfonts? 5 comments YouTube? How to start 5 comments