1
1
import React , { useState , useContext , useEffect } from "react" ;
2
2
import clsx from "clsx" ;
3
-
4
3
import {
5
4
makeStyles ,
6
5
Drawer ,
@@ -12,18 +11,20 @@ import {
12
11
MenuItem ,
13
12
IconButton ,
14
13
Menu ,
14
+ Switch ,
15
15
} from "@material-ui/core" ;
16
-
17
16
import MenuIcon from "@material-ui/icons/Menu" ;
18
17
import ChevronLeftIcon from "@material-ui/icons/ChevronLeft" ;
19
18
import AccountCircle from "@material-ui/icons/AccountCircle" ;
19
+ import Brightness4Icon from "@material-ui/icons/Brightness4" ;
20
20
21
21
import MainListItems from "./MainListItems" ;
22
22
import NotificationsPopOver from "../components/NotificationsPopOver" ;
23
23
import UserModal from "../components/UserModal" ;
24
24
import { AuthContext } from "../context/Auth/AuthContext" ;
25
25
import BackdropLoading from "../components/BackdropLoading" ;
26
26
import { i18n } from "../translate/i18n" ;
27
+ import { useThemeContext } from "../context/DarkMode" ;
27
28
28
29
const drawerWidth = 240 ;
29
30
@@ -35,7 +36,6 @@ const useStyles = makeStyles((theme) => ({
35
36
height : "calc(100vh - 56px)" ,
36
37
} ,
37
38
} ,
38
-
39
39
toolbar : {
40
40
paddingRight : 24 , // keep right padding when drawer closed
41
41
} ,
@@ -52,6 +52,7 @@ const useStyles = makeStyles((theme) => ({
52
52
easing : theme . transitions . easing . sharp ,
53
53
duration : theme . transitions . duration . leavingScreen ,
54
54
} ) ,
55
+ backgroundColor : theme . palette . background . default ,
55
56
} ,
56
57
appBarShift : {
57
58
marginLeft : drawerWidth ,
@@ -63,12 +64,14 @@ const useStyles = makeStyles((theme) => ({
63
64
} ,
64
65
menuButton : {
65
66
marginRight : 36 ,
67
+ color : theme . palette . text . primary ,
66
68
} ,
67
69
menuButtonHidden : {
68
70
display : "none" ,
69
71
} ,
70
72
title : {
71
73
flexGrow : 1 ,
74
+ color : theme . palette . text . primary ,
72
75
} ,
73
76
drawerPaper : {
74
77
position : "relative" ,
@@ -78,6 +81,7 @@ const useStyles = makeStyles((theme) => ({
78
81
easing : theme . transitions . easing . sharp ,
79
82
duration : theme . transitions . duration . enteringScreen ,
80
83
} ) ,
84
+ backgroundColor : theme . palette . background . paper ,
81
85
} ,
82
86
drawerPaperClose : {
83
87
overflowX : "hidden" ,
@@ -107,6 +111,19 @@ const useStyles = makeStyles((theme) => ({
107
111
overflow : "auto" ,
108
112
flexDirection : "column" ,
109
113
} ,
114
+ switch : {
115
+ transform : "scale(0.8)" ,
116
+ } ,
117
+ iconButton : {
118
+ color : theme . palette . text . primary ,
119
+ } ,
120
+ themeSwitchContainer : {
121
+ display : "flex" ,
122
+ alignItems : "center" ,
123
+ } ,
124
+ themeIcon : {
125
+ color : theme . palette . text . primary ,
126
+ } ,
110
127
} ) ) ;
111
128
112
129
const LoggedInLayout = ( { children } ) => {
@@ -118,6 +135,7 @@ const LoggedInLayout = ({ children }) => {
118
135
const [ drawerOpen , setDrawerOpen ] = useState ( false ) ;
119
136
const [ drawerVariant , setDrawerVariant ] = useState ( "permanent" ) ;
120
137
const { user } = useContext ( AuthContext ) ;
138
+ const { darkMode, toggleTheme } = useThemeContext ( ) ;
121
139
122
140
useEffect ( ( ) => {
123
141
if ( document . body . offsetWidth > 600 ) {
@@ -195,12 +213,10 @@ const LoggedInLayout = ({ children }) => {
195
213
< AppBar
196
214
position = "absolute"
197
215
className = { clsx ( classes . appBar , drawerOpen && classes . appBarShift ) }
198
- color = { process . env . NODE_ENV === "development" ? "inherit" : "primary" }
199
216
>
200
217
< Toolbar variant = "dense" className = { classes . toolbar } >
201
218
< IconButton
202
219
edge = "start"
203
- color = "inherit"
204
220
aria-label = "open drawer"
205
221
onClick = { ( ) => setDrawerOpen ( ! drawerOpen ) }
206
222
className = { clsx (
@@ -213,21 +229,33 @@ const LoggedInLayout = ({ children }) => {
213
229
< Typography
214
230
component = "h1"
215
231
variant = "h6"
216
- color = "inherit"
217
232
noWrap
218
233
className = { classes . title }
219
234
>
220
235
WhaTicket
221
236
</ Typography >
222
- { user . id && < NotificationsPopOver /> }
237
+
238
+ < div className = { classes . themeSwitchContainer } >
239
+ < Brightness4Icon className = { classes . themeIcon } />
240
+ < Switch
241
+ checked = { darkMode }
242
+ onChange = { toggleTheme }
243
+ color = "default"
244
+ className = { classes . switch }
245
+ />
246
+ </ div >
247
+
248
+ { user . id && (
249
+ < NotificationsPopOver className = { classes . iconButton } />
250
+ ) }
223
251
224
252
< div >
225
253
< IconButton
226
254
aria-label = "account of current user"
227
255
aria-controls = "menu-appbar"
228
256
aria-haspopup = "true"
229
257
onClick = { handleMenu }
230
- color = "inherit"
258
+ className = { classes . iconButton }
231
259
>
232
260
< AccountCircle />
233
261
</ IconButton >
@@ -258,7 +286,6 @@ const LoggedInLayout = ({ children }) => {
258
286
</ AppBar >
259
287
< main className = { classes . content } >
260
288
< div className = { classes . appBarSpacer } />
261
-
262
289
{ children ? children : null }
263
290
</ main >
264
291
</ div >
0 commit comments