@@ -24,7 +24,6 @@ import DashboardIcon from '@material-ui/icons/Dashboard';
24
24
import NotificationsIcon from '@material-ui/icons/Notifications' ;
25
25
import PersonIcon from '@material-ui/icons/Person' ;
26
26
import UpdateIcon from '@material-ui/icons/Update' ;
27
-
28
27
// MODALS
29
28
import AddModal from '../modals/AddModal' ;
30
29
import ServicesModal from '../modals/ServicesModal' ;
@@ -33,6 +32,7 @@ import ServicesModal from '../modals/ServicesModal';
33
32
// import '../stylesheets/Occupied.scss';
34
33
import '../stylesheets/Occupied.scss' ;
35
34
35
+
36
36
// DASHBOARD CONTEXT
37
37
import { DashboardContext } from '../context/DashboardContext' ;
38
38
@@ -46,15 +46,17 @@ type ClickEvent = React.MouseEvent<HTMLElement>;
46
46
47
47
const Occupied = React . memo ( ( ) => {
48
48
const { setServicesData } = useContext ( ApplicationContext ) ;
49
- const { applications, getApplications, deleteApp } = useContext ( DashboardContext ) ;
49
+ const { applications, getApplications, deleteApp, mode , changeMode } = useContext ( DashboardContext ) ;
50
50
const [ open , setOpen ] = useState < boolean > ( false ) ;
51
51
const [ addOpen , setAddOpen ] = useState < boolean > ( false ) ;
52
52
const [ index , setIndex ] = useState < number > ( 0 ) ;
53
53
const [ app , setApp ] = useState < string > ( '' ) ;
54
54
const [ searchTerm , setSearchTerm ] = useState < string > ( 'Search...' ) ;
55
55
// Dynamic refs
56
56
const delRef = useRef < any > ( [ ] ) ;
57
-
57
+ //check context from dashboard
58
+ console . log ( mode ) ;
59
+
58
60
useEffect ( ( ) => {
59
61
setServicesData ( [ ] ) ;
60
62
getApplications ( ) ;
@@ -75,8 +77,61 @@ const Occupied = React.memo(() => {
75
77
setOpen ( true ) ;
76
78
}
77
79
} ;
78
-
79
- const useStyles = makeStyles < Theme , StyleProps > ( theme => ( {
80
+ //Conditional Rendering of UI Modals for Light and Dark Mode
81
+ const useStylesDark = makeStyles < Theme , StyleProps > ( theme => ( {
82
+ // ALL CARDS
83
+ paper : {
84
+ display : 'flex' ,
85
+ flexDirection : 'column' ,
86
+ alignContent : 'center' ,
87
+ alignItems : 'center' ,
88
+ position : 'relative' ,
89
+ overflow : 'visible' ,
90
+ height : 280 ,
91
+ width : 280 ,
92
+ textAlign : 'center' ,
93
+ color : '#ffffff' , // dark mode
94
+ whiteSpace : 'nowrap' ,
95
+ backgroundColor : 'transparent' , // dark mode
96
+ borderRadius : 3 ,
97
+ border : '0' ,
98
+ boxShadow : '0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)' , // dark mode
99
+ '&:hover, &.Mui-focusVisible' : {
100
+ backgroundColor : 'rgba(255, 255, 255, 0.2)' , // dark mode
101
+ color : '#ffffff' ,
102
+ fontWeight : 600 ,
103
+ } ,
104
+ } ,
105
+ iconbutton : {
106
+ boxShadow : 'none' ,
107
+ color : 'none' ,
108
+ visibility : 'hidden' ,
109
+ } ,
110
+ btnStyle : {
111
+ position : 'absolute' ,
112
+ top : - 10 ,
113
+ left : - 72 ,
114
+ margin : '0' ,
115
+ color : '#eeeeee' ,
116
+ borderRadius : '0' ,
117
+ backgroundColor : 'none' ,
118
+ visibility : 'visible' ,
119
+ } ,
120
+ icon : {
121
+ width : '75px' ,
122
+ height : '75px' ,
123
+ boxShadow : 'none' ,
124
+ } ,
125
+ // ALL CARDS: CONTENT
126
+ fontStyles : {
127
+ fontSize : '18px' ,
128
+ fontFamily : 'Roboto' ,
129
+ fontWeight : 300 ,
130
+ // color: '#444d56',
131
+ color : '#ffffff' , // dark mode
132
+ }
133
+ } ) ) ;
134
+ const useStylesLight = makeStyles < Theme , StyleProps > ( theme => ( {
80
135
// ALL CARDS
81
136
paper : {
82
137
display : 'flex' ,
@@ -130,7 +185,7 @@ const Occupied = React.memo(() => {
130
185
}
131
186
} ) ) ;
132
187
133
- const classes = useStyles ( { } as StyleProps ) ;
188
+ let classes = ( mode === 'light mode' ) ? useStylesLight ( { } as StyleProps ) : useStylesDark ( { } as StyleProps ) ;
134
189
135
190
return (
136
191
< div className = "entireArea" >
0 commit comments