-
Notifications
You must be signed in to change notification settings - Fork 29
Darkmode toggler #260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Ecell23
merged 7 commits into
Ecell-NITS:vite_newdev
from
Sristi2004-developer:Darkmode-toggler
Oct 13, 2024
Merged
Darkmode toggler #260
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
beae00a
Implemented Dark Mode Toggler
Sristi2004-developer 44ecd98
First Commit
Sristi2004-developer e8b00f8
Icon added
Sristi2004-developer 6cee488
Dark theme after reload as well
Sristi2004-developer ea01274
Merge branch 'vite_newdev' into Darkmode-toggler
Ecell23 072ea41
Made a ThemeToggleButton component and rendered within navbar
Sristi2004-developer 2bd38a4
Merge branch 'Darkmode-toggler' of https://github.com/Sristi2004-deve…
Sristi2004-developer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
|
||
|
||
.blogCard { | ||
* { | ||
overflow: auto; | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
46 changes: 46 additions & 0 deletions
46
src/components/shared/ThemeToggleButton/ThemeToggleButton.jsx
This file contains hidden or 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,46 @@ | ||
import React, { useContext } from "react"; | ||
import { FaMoon } from "react-icons/fa"; | ||
import { IoSunny } from "react-icons/io5"; | ||
import { ThemeContext } from "../../../context/ThemeContext"; | ||
|
||
const ThemeToggleButton = () => { | ||
const { isDarkMode, toggleTheme } = useContext(ThemeContext); | ||
|
||
return ( | ||
// <button onClick={toggleTheme} style={{ border: 'none', backgroundColor: 'transparent' }}> | ||
// <div style={{ display: 'flex', justifyContent: 'center', alignItems: 'center' }}> | ||
// {isDarkMode ? ( | ||
// <IoSunny size={isDarkMode ? 20 : 18} style={{ color: 'white' }} /> | ||
// ) : ( | ||
// <FaMoon size={isDarkMode ? 18 : 20} style={{ color: 'black' }} /> | ||
// )} | ||
// </div> | ||
// </button> | ||
<button | ||
onClick={toggleTheme} | ||
style={{ | ||
border: "none", | ||
backgroundColor: "transparent", | ||
marginBottom: "15px", | ||
}} | ||
> | ||
<div | ||
style={{ | ||
width: "30px", | ||
height: "30px", | ||
display: "flex", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
}} | ||
> | ||
{isDarkMode ? ( | ||
<IoSunny size={isDarkMode ? 20 : 18} style={{ color: "white" }} /> | ||
) : ( | ||
<FaMoon size={isDarkMode ? 18 : 20} style={{ color: "black" }} /> | ||
)} | ||
</div> | ||
</button> | ||
); | ||
}; | ||
|
||
export default ThemeToggleButton; |
This file contains hidden or 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,87 @@ | ||
import { useRef } from "react"; | ||
import { createContext, useState, useEffect } from "react"; | ||
|
||
const ThemeContext = createContext({ | ||
isDarkMode: false, | ||
toggleTheme: () => {}, | ||
}); | ||
|
||
function ThemeContextProvider({ children }) { | ||
let currentMode = localStorage.getItem("isDarkMode"); | ||
|
||
console.log(typeof currentMode); | ||
|
||
// useEffect(() => { | ||
|
||
// currentMode = localStorage.getItem("isDarkMode"); | ||
|
||
// if (currentMode == null) { | ||
// currentMode = "false"; | ||
// localStorage.setItem("isDarkMode", "false"); | ||
// } else { | ||
// if (currentMode == "false") { | ||
// document.body.classList.remove("dark-theme"); | ||
// localStorage.setItem("isDarkMode", "false"); | ||
// } else { | ||
// document.body.classList.add("dark-theme"); | ||
// localStorage.setItem("isDarkMode", "true"); | ||
// } | ||
// } | ||
|
||
// },[]) | ||
// } | ||
// if (currentMode == null) { | ||
// currentMode = "false"; | ||
// localStorage.setItem("isDarkMode", "false"); | ||
// } else { | ||
// if (currentMode == "false") { | ||
// document.body.classList.remove("dark-theme"); | ||
// localStorage.setItem("isDarkMode", "false"); | ||
// } else { | ||
// document.body.classList.add("dark-theme"); | ||
// localStorage.setItem("isDarkMode", "true"); | ||
// } | ||
// } | ||
|
||
const [isDarkMode, setIsDarkMode] = useState(currentMode != "false"); | ||
if (isDarkMode) { | ||
localStorage.setItem("isDarkMode", "true"); | ||
} else { | ||
localStorage.setItem("isDarkMode", "false"); | ||
} | ||
|
||
useEffect(() => { | ||
const currentMode = localStorage.getItem("isDarkMode"); | ||
|
||
if (currentMode !== null) { | ||
setIsDarkMode(currentMode === "true"); | ||
} | ||
|
||
if (isDarkMode) { | ||
document.body.classList.add("dark-theme"); | ||
} else { | ||
document.body.classList.remove("dark-theme"); | ||
} | ||
}, [isDarkMode]); | ||
// const [isDarkMode, setIsDarkMode] = useState(currentMode != "false"); | ||
// if (isDarkMode) { | ||
// localStorage.setItem("isDarkMode", "true"); | ||
// } else { | ||
// localStorage.setItem("isDarkMode", "false"); | ||
// } | ||
const toggleTheme = () => { | ||
setIsDarkMode(!isDarkMode); | ||
if (currentMode == "false") { | ||
document.body.classList.remove("dark-theme"); | ||
} else { | ||
document.body.classList.add("dark-theme"); | ||
} | ||
}; | ||
return ( | ||
<ThemeContext.Provider value={{ isDarkMode, toggleTheme, setIsDarkMode }}> | ||
{children} | ||
</ThemeContext.Provider> | ||
); | ||
} | ||
|
||
export { ThemeContext, ThemeContextProvider }; |
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use UseEffect to update the document.body class and localStorage whenever isDarkMode changes.