-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Dark mode will be tied to system settings if not set - Dark mode will be stored in Application storage once set Signed-off-by: Benjamin Perez <[email protected]>
- Loading branch information
Benjamin Perez
committed
Nov 14, 2023
1 parent
99cf3b3
commit 78a0785
Showing
9 changed files
with
344 additions
and
253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
portal-ui/src/screens/Console/Common/DarkModeActivator/DarkModeActivator.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// This file is part of MinIO Console Server | ||
// Copyright (c) 2023 MinIO, Inc. | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU Affero General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU Affero General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Affero General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
import React from "react"; | ||
import { Button, DarkModeIcon } from "mds"; | ||
import TooltipWrapper from "../TooltipWrapper/TooltipWrapper"; | ||
import { useSelector } from "react-redux"; | ||
import { AppState, useAppDispatch } from "../../../../store"; | ||
import { setDarkMode } from "../../../../systemSlice"; | ||
import { storeDarkMode } from "../../../../utils/stylesUtils"; | ||
|
||
const DarkModeActivator = () => { | ||
const dispatch = useAppDispatch(); | ||
|
||
const darkMode = useSelector((state: AppState) => state.system.darkMode); | ||
|
||
const darkModeActivator = () => { | ||
const currentStatus = !!darkMode; | ||
|
||
dispatch(setDarkMode(!currentStatus)); | ||
storeDarkMode(!currentStatus ? "on" : "off"); | ||
}; | ||
|
||
return ( | ||
<TooltipWrapper tooltip={`${darkMode ? "Light" : "Dark"} Mode`}> | ||
<Button | ||
id={"dark-mode-activator"} | ||
icon={<DarkModeIcon />} | ||
onClick={darkModeActivator} | ||
/> | ||
</TooltipWrapper> | ||
); | ||
}; | ||
|
||
export default DarkModeActivator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.