Skip to content

Commit aef1a87

Browse files
authored
Merge pull request #662 from AllanLimaAngelo/master
Feat: Darkmode
2 parents b19494c + e484c3a commit aef1a87

File tree

7 files changed

+112
-63
lines changed

7 files changed

+112
-63
lines changed

backend/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"license": "MIT",
1717
"dependencies": {
1818
"@sentry/node": "^5.29.2",
19+
"@types/lodash": "^4.17.5",
1920
"@types/pino": "^6.3.4",
2021
"bcryptjs": "^2.4.3",
2122
"cookie-parser": "^1.4.5",

frontend/src/components/NotificationsPopOver/index.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React, { useState, useRef, useEffect, useContext } from "react";
2-
32
import { useHistory } from "react-router-dom";
43
import { format } from "date-fns";
54
import openSocket from "../../services/socket-io";
@@ -38,6 +37,9 @@ const useStyles = makeStyles(theme => ({
3837
noShadow: {
3938
boxShadow: "none !important",
4039
},
40+
iconButton: {
41+
color: theme.palette.text.primary,
42+
},
4143
}));
4244

4345
const NotificationsPopOver = () => {
@@ -192,7 +194,7 @@ const NotificationsPopOver = () => {
192194
onClick={handleClick}
193195
ref={anchorEl}
194196
aria-label="Open Notifications"
195-
color="inherit"
197+
className={classes.iconButton}
196198
>
197199
<Badge badgeContent={notifications.length} color="secondary">
198200
<ChatIcon />
@@ -231,4 +233,4 @@ const NotificationsPopOver = () => {
231233
);
232234
};
233235

234-
export default NotificationsPopOver;
236+
export default NotificationsPopOver;

frontend/src/components/TicketsManager/index.js

+7-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React, { useContext, useEffect, useRef, useState } from "react";
2-
32
import { makeStyles } from "@material-ui/core/styles";
43
import Paper from "@material-ui/core/Paper";
54
import SearchIcon from "@material-ui/icons/Search";
@@ -9,14 +8,11 @@ import Tab from "@material-ui/core/Tab";
98
import Badge from "@material-ui/core/Badge";
109
import MoveToInboxIcon from "@material-ui/icons/MoveToInbox";
1110
import CheckBoxIcon from "@material-ui/icons/CheckBox";
12-
1311
import FormControlLabel from "@material-ui/core/FormControlLabel";
1412
import Switch from "@material-ui/core/Switch";
15-
1613
import NewTicketModal from "../NewTicketModal";
1714
import TicketsList from "../TicketsList";
1815
import TabPanel from "../TabPanel";
19-
2016
import { i18n } from "../../translate/i18n";
2117
import { AuthContext } from "../../context/Auth/AuthContext";
2218
import { Can } from "../Can";
@@ -32,54 +28,50 @@ const useStyles = makeStyles((theme) => ({
3228
overflow: "hidden",
3329
borderTopRightRadius: 0,
3430
borderBottomRightRadius: 0,
31+
backgroundColor: theme.palette.background.default,
32+
color: theme.palette.text.primary,
3533
},
36-
3734
tabsHeader: {
3835
flex: "none",
39-
backgroundColor: "#eee",
36+
backgroundColor: theme.palette.background.paper,
4037
},
41-
4238
settingsIcon: {
4339
alignSelf: "center",
4440
marginLeft: "auto",
4541
padding: 8,
4642
},
47-
4843
tab: {
4944
minWidth: 120,
5045
width: 120,
5146
},
52-
5347
ticketOptionsBox: {
5448
display: "flex",
5549
justifyContent: "space-between",
5650
alignItems: "center",
57-
background: "#fafafa",
51+
background: theme.palette.background.paper,
5852
padding: theme.spacing(1),
5953
},
60-
6154
serachInputWrapper: {
6255
flex: 1,
63-
background: "#fff",
56+
background: theme.palette.background.default,
6457
display: "flex",
6558
borderRadius: 40,
6659
padding: 4,
6760
marginRight: theme.spacing(1),
6861
},
69-
7062
searchIcon: {
7163
color: "grey",
7264
marginLeft: 6,
7365
marginRight: 6,
7466
alignSelf: "center",
7567
},
76-
7768
searchInput: {
7869
flex: 1,
7970
border: "none",
8071
borderRadius: 30,
72+
color: theme.palette.text.primary,
73+
backgroundColor: theme.palette.background.default,
8174
},
82-
8375
badge: {
8476
right: "-10px",
8577
},
@@ -93,18 +85,15 @@ const useStyles = makeStyles((theme) => ({
9385

9486
const TicketsManager = () => {
9587
const classes = useStyles();
96-
9788
const [searchParam, setSearchParam] = useState("");
9889
const [tab, setTab] = useState("open");
9990
const [tabOpen, setTabOpen] = useState("open");
10091
const [newTicketModalOpen, setNewTicketModalOpen] = useState(false);
10192
const [showAllTickets, setShowAllTickets] = useState(false);
10293
const searchInputRef = useRef();
10394
const { user } = useContext(AuthContext);
104-
10595
const [openCount, setOpenCount] = useState(0);
10696
const [pendingCount, setPendingCount] = useState(0);
107-
10897
const userQueueIds = user.queues.map((q) => q.id);
10998
const [selectedQueueIds, setSelectedQueueIds] = useState(userQueueIds || []);
11099

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
import React, { createContext, useState, useContext, useMemo } from "react";
2+
import PropTypes from "prop-types";
3+
import { createMuiTheme, ThemeProvider as MUIThemeProvider } from "@material-ui/core/styles";
4+
import { CssBaseline } from "@material-ui/core";
5+
6+
const ThemeContext = createContext();
7+
8+
export const ThemeProvider = ({ children }) => {
9+
const [darkMode, setDarkMode] = useState(false);
10+
11+
const toggleTheme = () => {
12+
setDarkMode((prevMode) => !prevMode);
13+
};
14+
15+
const theme = useMemo(
16+
() =>
17+
createMuiTheme({
18+
palette: {
19+
type: darkMode ? "dark" : "light",
20+
},
21+
}),
22+
[darkMode]
23+
);
24+
25+
const contextValue = useMemo(() => ({ darkMode, toggleTheme }), [darkMode]);
26+
27+
return (
28+
<ThemeContext.Provider value={contextValue}>
29+
<MUIThemeProvider theme={theme}>
30+
<CssBaseline />
31+
{children}
32+
</MUIThemeProvider>
33+
</ThemeContext.Provider>
34+
);
35+
};
36+
ThemeProvider.propTypes = {
37+
children: PropTypes.node.isRequired,
38+
};
39+
40+
export const useThemeContext = () => useContext(ThemeContext);

frontend/src/layout/index.js

+36-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React, { useState, useContext, useEffect } from "react";
22
import clsx from "clsx";
3-
43
import {
54
makeStyles,
65
Drawer,
@@ -12,18 +11,20 @@ import {
1211
MenuItem,
1312
IconButton,
1413
Menu,
14+
Switch,
1515
} from "@material-ui/core";
16-
1716
import MenuIcon from "@material-ui/icons/Menu";
1817
import ChevronLeftIcon from "@material-ui/icons/ChevronLeft";
1918
import AccountCircle from "@material-ui/icons/AccountCircle";
19+
import Brightness4Icon from "@material-ui/icons/Brightness4";
2020

2121
import MainListItems from "./MainListItems";
2222
import NotificationsPopOver from "../components/NotificationsPopOver";
2323
import UserModal from "../components/UserModal";
2424
import { AuthContext } from "../context/Auth/AuthContext";
2525
import BackdropLoading from "../components/BackdropLoading";
2626
import { i18n } from "../translate/i18n";
27+
import { useThemeContext } from "../context/DarkMode";
2728

2829
const drawerWidth = 240;
2930

@@ -35,7 +36,6 @@ const useStyles = makeStyles((theme) => ({
3536
height: "calc(100vh - 56px)",
3637
},
3738
},
38-
3939
toolbar: {
4040
paddingRight: 24, // keep right padding when drawer closed
4141
},
@@ -52,6 +52,7 @@ const useStyles = makeStyles((theme) => ({
5252
easing: theme.transitions.easing.sharp,
5353
duration: theme.transitions.duration.leavingScreen,
5454
}),
55+
backgroundColor: theme.palette.background.default,
5556
},
5657
appBarShift: {
5758
marginLeft: drawerWidth,
@@ -63,12 +64,14 @@ const useStyles = makeStyles((theme) => ({
6364
},
6465
menuButton: {
6566
marginRight: 36,
67+
color: theme.palette.text.primary,
6668
},
6769
menuButtonHidden: {
6870
display: "none",
6971
},
7072
title: {
7173
flexGrow: 1,
74+
color: theme.palette.text.primary,
7275
},
7376
drawerPaper: {
7477
position: "relative",
@@ -78,6 +81,7 @@ const useStyles = makeStyles((theme) => ({
7881
easing: theme.transitions.easing.sharp,
7982
duration: theme.transitions.duration.enteringScreen,
8083
}),
84+
backgroundColor: theme.palette.background.paper,
8185
},
8286
drawerPaperClose: {
8387
overflowX: "hidden",
@@ -107,6 +111,19 @@ const useStyles = makeStyles((theme) => ({
107111
overflow: "auto",
108112
flexDirection: "column",
109113
},
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+
},
110127
}));
111128

112129
const LoggedInLayout = ({ children }) => {
@@ -118,6 +135,7 @@ const LoggedInLayout = ({ children }) => {
118135
const [drawerOpen, setDrawerOpen] = useState(false);
119136
const [drawerVariant, setDrawerVariant] = useState("permanent");
120137
const { user } = useContext(AuthContext);
138+
const { darkMode, toggleTheme } = useThemeContext();
121139

122140
useEffect(() => {
123141
if (document.body.offsetWidth > 600) {
@@ -195,12 +213,10 @@ const LoggedInLayout = ({ children }) => {
195213
<AppBar
196214
position="absolute"
197215
className={clsx(classes.appBar, drawerOpen && classes.appBarShift)}
198-
color={process.env.NODE_ENV === "development" ? "inherit" : "primary"}
199216
>
200217
<Toolbar variant="dense" className={classes.toolbar}>
201218
<IconButton
202219
edge="start"
203-
color="inherit"
204220
aria-label="open drawer"
205221
onClick={() => setDrawerOpen(!drawerOpen)}
206222
className={clsx(
@@ -213,21 +229,33 @@ const LoggedInLayout = ({ children }) => {
213229
<Typography
214230
component="h1"
215231
variant="h6"
216-
color="inherit"
217232
noWrap
218233
className={classes.title}
219234
>
220235
WhaTicket
221236
</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+
)}
223251

224252
<div>
225253
<IconButton
226254
aria-label="account of current user"
227255
aria-controls="menu-appbar"
228256
aria-haspopup="true"
229257
onClick={handleMenu}
230-
color="inherit"
258+
className={classes.iconButton}
231259
>
232260
<AccountCircle />
233261
</IconButton>
@@ -258,7 +286,6 @@ const LoggedInLayout = ({ children }) => {
258286
</AppBar>
259287
<main className={classes.content}>
260288
<div className={classes.appBarSpacer} />
261-
262289
{children ? children : null}
263290
</main>
264291
</div>

frontend/src/pages/Tickets/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@ const useStyles = makeStyles((theme) => ({
1717
// padding: theme.spacing(4),
1818
height: `calc(100% - 48px)`,
1919
overflowY: "hidden",
20+
backgroundColor: theme.palette.background.default,
2021
},
2122

2223
chatPapper: {
2324
// backgroundColor: "red",
2425
display: "flex",
2526
height: "100%",
27+
backgroundColor: theme.palette.background.paper,
2628
},
2729

2830
contactsWrapper: {
@@ -46,7 +48,7 @@ const useStyles = makeStyles((theme) => ({
4648
flexDirection: "column",
4749
},
4850
welcomeMsg: {
49-
backgroundColor: "#eee",
51+
backgroundColor: theme.palette.background.paper,
5052
display: "flex",
5153
justifyContent: "space-evenly",
5254
alignItems: "center",

0 commit comments

Comments
 (0)