mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
cookie's now only used under /admin
This commit is contained in:
25
helpers/withAuth.tsx
Normal file
25
helpers/withAuth.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import { SessionProvider } from 'next-auth/react'
|
||||
import Auth from '../components/auth'
|
||||
import User from '../components/user'
|
||||
|
||||
// This is the HOC
|
||||
function withAuth(WrappedComponent) {
|
||||
// Return a new component
|
||||
function withAuth({ session, ...pageProps }) {
|
||||
// Render the WrappedComponent with additional props
|
||||
return (
|
||||
<SessionProvider session={session}>
|
||||
<Auth>
|
||||
<User />
|
||||
<WrappedComponent {...pageProps} />
|
||||
</Auth>
|
||||
</SessionProvider>
|
||||
)
|
||||
}
|
||||
|
||||
withAuth.displayName = `withAuth(${WrappedComponent.displayName}`
|
||||
|
||||
return withAuth
|
||||
}
|
||||
|
||||
export default withAuth
|
||||
Reference in New Issue
Block a user