-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update theme toggler ui, and extract to a different component, that a…
…ccepts children
- Loading branch information
Showing
6 changed files
with
195 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,7 @@ | ||
"use client"; | ||
|
||
import { PageSkeleton } from "@/components/ui/page-skeleton"; | ||
import { Button } from "@/components/ui/button"; | ||
import { useTheme } from "@/contexts/theme-context"; | ||
|
||
export default function SkeletonDebugPage() { | ||
const { theme, setTheme } = useTheme(); | ||
|
||
return ( | ||
<div className="min-h-screen"> | ||
<div className="container mx-auto p-4"> | ||
<div className="flex justify-end mb-4 gap-2"> | ||
<Button | ||
variant="outline" | ||
onClick={() => setTheme("light")} | ||
className={theme === "light" ? "border-primary" : ""} | ||
> | ||
Light | ||
</Button> | ||
<Button | ||
variant="outline" | ||
onClick={() => setTheme("dark")} | ||
className={theme === "dark" ? "border-primary" : ""} | ||
> | ||
Dark | ||
</Button> | ||
<Button | ||
variant="outline" | ||
onClick={() => setTheme("system")} | ||
className={theme === "system" ? "border-primary" : ""} | ||
> | ||
System | ||
</Button> | ||
</div> | ||
</div> | ||
<PageSkeleton /> | ||
</div> | ||
); | ||
return <PageSkeleton />; | ||
} |
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,43 @@ | ||
"use client"; | ||
|
||
import { Switch } from "@/components/ui/switch"; | ||
import { Sun, Moon } from "lucide-react"; | ||
import { useTheme } from "@/contexts/theme-context"; | ||
import { ReactNode, useEffect, useState } from "react"; | ||
|
||
interface ThemeTogglerFrameProps { | ||
children: ReactNode; | ||
} | ||
|
||
export default function ThemeTogglerFrame({ children }: ThemeTogglerFrameProps) { | ||
const { theme, setTheme } = useTheme(); | ||
const [mounted, setMounted] = useState(false); | ||
|
||
useEffect(() => { | ||
setMounted(true); | ||
}, []); | ||
|
||
if (!mounted) { | ||
return <div className="min-h-screen">{children}</div>; | ||
} | ||
|
||
return ( | ||
<div className="min-h-screen"> | ||
<div className="container mx-auto p-4"> | ||
<div className="flex justify-end mb-4 items-center gap-2"> | ||
{theme === "dark" && ( | ||
<Sun className="h-4 w-4 text-muted-foreground hover:text-foreground transition-colors" /> | ||
)} | ||
<Switch | ||
checked={theme === "dark"} | ||
onCheckedChange={(checked) => setTheme(checked ? "dark" : "light")} | ||
/> | ||
{theme === "light" && ( | ||
<Moon className="h-4 w-4 text-muted-foreground hover:text-foreground transition-colors" /> | ||
)} | ||
</div> | ||
</div> | ||
{children} | ||
</div> | ||
); | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
"use client" | ||
|
||
import * as React from "react" | ||
import * as SwitchPrimitives from "@radix-ui/react-switch" | ||
|
||
import { cn } from "@/lib/utils" | ||
|
||
const Switch = React.forwardRef< | ||
React.ElementRef<typeof SwitchPrimitives.Root>, | ||
React.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root> | ||
>(({ className, ...props }, ref) => ( | ||
<SwitchPrimitives.Root | ||
className={cn( | ||
"peer inline-flex h-5 w-9 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent shadow-sm transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input", | ||
className | ||
)} | ||
{...props} | ||
ref={ref} | ||
> | ||
<SwitchPrimitives.Thumb | ||
className={cn( | ||
"pointer-events-none block h-4 w-4 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-4 data-[state=unchecked]:translate-x-0" | ||
)} | ||
/> | ||
</SwitchPrimitives.Root> | ||
)) | ||
Switch.displayName = SwitchPrimitives.Root.displayName | ||
|
||
export { Switch } |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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