Skip to content
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

Update theme.tsx #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 40 additions & 11 deletions components/theme.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,47 @@
import React from 'react';
import { useTheme } from 'next-themes';
import { useEffect, useState } from 'react';

import Moon from './icons/moon';
import Sun from './icons/sun';

import { useTheme } from 'next-themes';
/**
* A simple theme toggle that switches between 'light' and 'dark' mode.
* If process.env.theme isn't 'both', the toggle remains hidden.
*/
export default function ThemeToggle() {
const { theme, setTheme, systemTheme } = useTheme();
const [mounted, setMounted] = useState(false);

const Theme = () => {
const { theme, setTheme } = useTheme();
// Prevents hydration errors by ensuring the component
// doesn't render icons until the client is mounted.
useEffect(() => {
setMounted(true);
}, []);

if (process.env.theme !== 'both') return <></>;
// Return null if environment is not configured for theme toggling
if (process.env.theme !== 'both') return null;

return (
theme === 'light'
? <Moon width="2em" height="2em" onClick={() => setTheme('dark')}/>
: <Sun width="2em" height="2em" onClick={() => setTheme('light')}/>
);
};
// If we haven't mounted yet, do not render icons to avoid SSR mismatches
if (!mounted) return null;

// If you want "system" theme to behave as 'light' or 'dark',
// use a condition like (theme === 'system' && systemTheme === 'light').
const isLight = theme === 'light' || (theme === 'system' && systemTheme === 'light');

export default Theme;
return isLight ? (
<Moon
width="2em"
height="2em"
style={{ cursor: 'pointer' }}
onClick={() => setTheme('dark')}
/>
) : (
<Sun
width="2em"
height="2em"
style={{ cursor: 'pointer' }}
onClick={() => setTheme('light')}
/>
);
}