feat(theme-switcher): move to settings menu

This commit is contained in:
ItzCrazyKns 2024-06-02 12:19:53 +05:30
parent 32cc430b1b
commit 7c676479d4
No known key found for this signature in database
GPG Key ID: 8162927C7CCE3065
3 changed files with 23 additions and 32 deletions

View File

@ -8,6 +8,7 @@ import React, {
useState,
type SelectHTMLAttributes,
} from 'react';
import ThemeSwitcher from './theme/Switcher';
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {}
@ -27,7 +28,7 @@ interface SelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
options: { value: string; label: string; disabled?: boolean }[];
}
const Select = ({ className, options, ...restProps }: SelectProps) => {
export const Select = ({ className, options, ...restProps }: SelectProps) => {
return (
<select
{...restProps}
@ -209,6 +210,12 @@ const SettingsDialog = ({
</Dialog.Title>
{config && !isLoading && (
<div className="flex flex-col space-y-4 mt-6">
<div className="flex flex-col space-y-1">
<p className="text-black/70 dark:text-white/70 text-sm">
Theme
</p>
<ThemeSwitcher />
</div>
{config.chatModelProviders && (
<div className="flex flex-col space-y-1">
<p className="text-black/70 dark:text-white/70 text-sm">

View File

@ -68,14 +68,10 @@ const Sidebar = ({ children }: { children: React.ReactNode }) => {
))}
</VerticalIconContainer>
<VerticalIconContainer>
<ThemeSwitcher />
<Settings
onClick={() => setIsSettingsOpen(!isSettingsOpen)}
className="cursor-pointer"
/>
</VerticalIconContainer>
<Settings
onClick={() => setIsSettingsOpen(!isSettingsOpen)}
className="cursor-pointer"
/>
<SettingsDialog
isOpen={isSettingsOpen}

View File

@ -3,15 +3,11 @@ import { useTheme } from 'next-themes';
import { SunIcon, MoonIcon, MonitorIcon } from 'lucide-react';
import { useCallback, useEffect, useState } from 'react';
import { cn } from '@/lib/utils';
import { Select } from '../SettingsDialog';
type Theme = 'dark' | 'light' | 'system';
interface ThemeSwitcherProps {
size?: number | string;
className?: string;
}
const ThemeSwitcher = ({ size, className }: ThemeSwitcherProps) => {
const ThemeSwitcher = ({ className }: { className?: string }) => {
const [mounted, setMounted] = useState(false);
const { theme, setTheme } = useTheme();
@ -50,23 +46,15 @@ const ThemeSwitcher = ({ size, className }: ThemeSwitcherProps) => {
return null;
}
return isTheme('dark') ? (
<SunIcon
className={cn('cursor-pointer', className)}
size={size}
onClick={() => handleThemeSwitch('light')}
/>
) : isTheme('light') ? (
<MoonIcon
className={cn('cursor-pointer', className)}
size={size}
onClick={() => handleThemeSwitch('dark')}
/>
) : (
<MonitorIcon
className={cn('cursor-pointer', className)}
size={size}
onClick={() => handleThemeSwitch('system')}
return (
<Select
className={className}
value={theme}
onChange={(e) => handleThemeSwitch(e.target.value as Theme)}
options={[
{ value: 'light', label: 'Light' },
{ value: 'dark', label: 'Dark' }
]}
/>
);
};