-
Notifications
You must be signed in to change notification settings - Fork 26
feat: Add color mode toggle with system preference support #133
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
Open
naveenkumar29052006
wants to merge
6
commits into
gethopp:main
Choose a base branch
from
naveenkumar29052006:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
cb6022c
added dark mode button
naveenkumar29052006 3856b05
Merge branch 'gethopp:main' into main
naveenkumar29052006 bd1c645
fixed ports and removed unwanted packages
naveenkumar29052006 df80dce
cleaned up code
naveenkumar29052006 d73ad91
fix: align dependencies, add missing peer deps, update yarn.lock
naveenkumar29052006 c7c1350
chore: revert unrelated dependency changes, keep only web-app relevan…
naveenkumar29052006 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ LIVEKIT_API_SECRET=secret | |
LIVEKIT_SERVER_URL=ws://localhost:7880 | ||
SESSION_SECRET=renkey-hash-key | ||
REDIS_URI=redis://localhost:6379/0?protocol=3 | ||
DATABASE_DSN=postgres://hopp:password@localhost:5432/hopp?sslmode=disable | ||
DATABASE_DSN=postgres://hopp:password@localhost:5433/hopp?sslmode=disable | ||
|
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
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,18 @@ | ||
import { Button } from "@/components/ui/button" | ||
import { useColorMode } from "./color-mode" | ||
import { LuMoon, LuSun } from "react-icons/lu" | ||
|
||
export const ColorModeButton = () => { | ||
const { toggleColorMode, colorMode } = useColorMode() | ||
return ( | ||
<Button | ||
onClick={toggleColorMode} | ||
variant="outline" | ||
size="icon" | ||
className="size-9" | ||
aria-label="Toggle color mode" | ||
> | ||
{colorMode === "light" ? <LuSun className="h-[1.2rem] w-[1.2rem]" /> : <LuMoon className="h-[1.2rem] w-[1.2rem]" />} | ||
</Button> | ||
) | ||
} |
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,43 @@ | ||
import { createContext, useContext, useEffect, useState } from 'react' | ||
|
||
type ColorMode = 'light' | 'dark' | ||
type ColorModeContextType = { | ||
colorMode: ColorMode | ||
toggleColorMode: () => void | ||
} | ||
|
||
const ColorModeContext = createContext<ColorModeContextType | undefined>(undefined) | ||
|
||
export function ColorModeProvider({ children }: { children: React.ReactNode }) { | ||
const [colorMode, setColorMode] = useState<ColorMode>(() => { | ||
// Check localStorage and system preference | ||
const savedMode = localStorage.getItem('color-mode') as ColorMode | ||
if (savedMode) return savedMode | ||
return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light' | ||
}) | ||
|
||
useEffect(() => { | ||
const root = window.document.documentElement | ||
root.classList.remove('light', 'dark') | ||
root.classList.add(colorMode) | ||
localStorage.setItem('color-mode', colorMode) | ||
}, [colorMode]) | ||
|
||
const toggleColorMode = () => { | ||
setColorMode(prev => prev === 'light' ? 'dark' : 'light') | ||
} | ||
|
||
return ( | ||
<ColorModeContext.Provider value={{ colorMode, toggleColorMode }}> | ||
{children} | ||
</ColorModeContext.Provider> | ||
) | ||
} | ||
|
||
export function useColorMode() { | ||
const context = useContext(ColorModeContext) | ||
if (context === undefined) { | ||
throw new Error('useColorMode must be used within a ColorModeProvider') | ||
} | ||
return context | ||
} |
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 |
---|---|---|
|
@@ -7,4 +7,4 @@ createRoot(document.getElementById('root')!).render( | |
<StrictMode> | ||
<App /> | ||
</StrictMode>, | ||
) | ||
) |
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.
This PR should not change dev setup