forked from shadowwalker/next-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
54 lines (48 loc) · 1.17 KB
/
index.js
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import Head from 'next/head'
import { useRouter } from 'next/router'
import Cookies from 'js-cookie'
import nextCookies from 'next-cookies'
const Index = ({ user }) => {
const router = useRouter()
const handleLogoutClick = () => {
Cookies.remove('user')
router.replace('/login')
}
const handleLoginClick = () => {
router.replace('/login')
}
return (
<>
<Head>
<title>next-pwa example</title>
</Head>
<h1>Next.js + PWA = AWESOME!</h1>
{user ? (
<>
<h2>User ID: {user}</h2>
<button onClick={handleLogoutClick}>Click to logout</button>
</>
) : (
<button onClick={handleLoginClick}>Click to login</button>
)}
</>
)
}
export const getServerSideProps = context => {
const { user } = nextCookies(context)
if (!user) {
console.log('❌ User Not Login, Redirect To Login Page')
context.res.setHeader('location', '/login')
context.res.statusCode = 302
context.res.end()
return { props: {} }
} else {
console.log(`✅ User (id=${user}) Already Login, Show Home Page.`)
return {
props: {
user
}
}
}
}
export default Index