-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefautLayout.tsx
233 lines (214 loc) · 8.64 KB
/
DefautLayout.tsx
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import React, { useState } from "react";
import Head from 'next/head';
import { Avatar, Button, ConfigProvider, Drawer, Layout, Menu, MenuProps } from "antd";
import { faBars, faSignOut, faSignIn, faHome, faCubes, faUser, faUsers, faFlaskVial } from '@fortawesome/free-solid-svg-icons'
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { useRouter } from "next/router";
import { useSession, signIn, signOut } from "next-auth/react";
import nProgress from "nprogress";
const { Content, Sider } = Layout;
const sidebarBackgroundColor = '#001529';
const sidebarMenuSelectedItemBackgroundColor = '#1677ff';
const DefaultLayout: React.FC<{
children: React.ReactNode
}> = ({ children }) => {
const [drawerOpen, setDrawerOpen] = useState(false);
const router = useRouter();
const { data: session, status } = useSession();
// menu.key must match the router.pathname, see example below: "/dashboard"
const [selected, setSelected] = useState([router.pathname]);
// key must also be unique, for obvious reason
function getMenu(): MenuProps['items'] {
const menu: MenuProps['items'] = [];
menu.push({
key: '/',
label: 'Home',
icon: <FontAwesomeIcon icon={faHome}></FontAwesomeIcon>,
onClick: () => router.push('/')
});
menu.push(
{
key: '#menu-1',
label: 'Menu 1',
icon: <FontAwesomeIcon icon={faCubes}></FontAwesomeIcon>,
children: [
{
key: '/dashboard',
label: 'Dashboard',
onClick: () => router.push('/dashboard')
},
{
key: '/sub-menu-b',
label: 'Sub Menu B',
onClick: () => router.push('/')
},
{
key: '/sub-menu-c',
label: 'Sub Menu C',
onClick: () => router.push('/')
}
]
},
{
key: '#menu-2',
label: 'Menu 2',
icon: <FontAwesomeIcon icon={faUsers}></FontAwesomeIcon>,
children: [
{
key: '/sub-menu-d',
label: 'Sub Menu D',
onClick: () => router.push('/')
},
{
key: '/sub-menu-e',
label: 'Sub Menu E',
onClick: () => router.push('/')
},
{
key: '/sub-menu-f',
label: 'Sub Menu F',
onClick: () => router.push('/')
}
]
},
{
key: '#menu-3',
label: 'Menu 3',
icon: <FontAwesomeIcon icon={faFlaskVial}></FontAwesomeIcon>,
children: [
{
key: '/sub-menu-g',
label: 'Sub Menu G',
onClick: () => router.push('/')
},
{
key: '/sub-menu-h',
label: 'Sub Menu H',
onClick: () => router.push('/')
},
{
key: '/sub-menu-i',
label: 'Sub Menu I',
onClick: () => router.push('/')
}
]
}
);
if (status === 'authenticated') {
menu.push({
key: '/sign-out',
label: 'Sign out',
icon: <FontAwesomeIcon icon={faSignOut}></FontAwesomeIcon>,
onClick: () => {
nProgress.start();
signOut();
// HINT: use this method call if need to end SSO server authentication session:
// signOut({
// callbackUrl: '/api/end-session'
// });
}
});
} else {
menu.push({
key: '/sign-in',
label: 'Sign in',
icon: <FontAwesomeIcon icon={faSignIn}></FontAwesomeIcon>,
onClick: () => {
nProgress.start();
signIn('oidc');
}
});
}
menu.push({
key: '/log-out',
label: 'Log out',
icon: <FontAwesomeIcon icon={faSignOut}></FontAwesomeIcon>,
onClick: () => {
window.location.href = '/';
}
});
return menu;
}
const displayUserName = session?.user?.name;
function renderAvatar() {
if (status === 'authenticated') {
return (
<div className="flex flex-col items-center mt-6">
<div>
<Avatar size={64} icon={<FontAwesomeIcon icon={faUser}></FontAwesomeIcon>} />
</div>
<div className="my-4 text-white">
Hello, {displayUserName}
</div>
</div>
);
}
return null;
}
return (
<ConfigProvider theme={{
components: {
Layout: {
// Sidebar background color:
// https://github.com/ant-design/ant-design/blob/5.0.0/components/layout/style/index.tsx#L101
colorBgHeader: sidebarBackgroundColor
}
}
}}>
<Layout className="min-h-screen">
<Head>
<meta key="meta-charset" charSet="utf-8" />
<meta key="meta-viewport" name="viewport" content="width=device-width, initial-scale=1" />
<link key="favicon" rel="icon" href="/favicon.ico" />
</Head>
<Sider width={240} className="pb-24 hidden lg:block">
<div className="h-12 p-2 m-4 text-white bg-slate-600">Logo</div>
{renderAvatar()}
<ConfigProvider theme={{
components: {
Menu: {
// https://github.com/ant-design/ant-design/blob/5.0.0/components/menu/style/theme.tsx#L48
colorItemBg: sidebarBackgroundColor,
// https://github.com/ant-design/ant-design/blob/5.0.0/components/menu/style/theme.tsx#L133
colorItemBgSelected: sidebarMenuSelectedItemBackgroundColor
}
}
}}>
<Menu theme="dark" mode="vertical" items={getMenu()}
selectedKeys={selected} onSelect={e => setSelected(e.selectedKeys)} />
</ConfigProvider>
</Sider>
<Drawer placement="left" open={drawerOpen} onClose={() => setDrawerOpen(false)}>
<ConfigProvider theme={{
components: {
Menu: {
// https://github.com/ant-design/ant-design/blob/5.0.0/components/menu/style/theme.tsx#L194
colorActiveBarBorderSize: 0
}
}
}}>
<Menu mode="inline" items={getMenu()}
selectedKeys={selected} onSelect={e => setSelected(e.selectedKeys)} />
</ConfigProvider>
</Drawer>
<Layout>
<div className='bg-topbar grid grid-cols-3 lg:hidden px-8 py-4 items-center'>
<div>
<Button onClick={() => setDrawerOpen(true)} type="primary">
<FontAwesomeIcon icon={faBars}></FontAwesomeIcon>
</Button>
</div>
<div className="h-12 p-2 text-white bg-slate-600">
Logo
</div>
<div></div>
</div>
<Content className="m-5 p-8 bg-white">
{children}
</Content>
</Layout>
</Layout>
</ConfigProvider>
);
}
export const WithDefaultLayout = (page: React.ReactElement) => <DefaultLayout>{page}</DefaultLayout>;