feat: support settings on mobile device
This commit is contained in:
parent
476303f52b
commit
99fc130061
3 changed files with 28 additions and 14 deletions
|
@ -1,5 +1,5 @@
|
||||||
import EmptyChatMessageInput from './EmptyChatMessageInput';
|
import EmptyChatMessageInput from './EmptyChatMessageInput';
|
||||||
import ThemeSwitcher from './theme/Switcher';
|
import SettingsEntry from './SettingsEntry';
|
||||||
|
|
||||||
const EmptyChat = ({
|
const EmptyChat = ({
|
||||||
sendMessage,
|
sendMessage,
|
||||||
|
@ -12,7 +12,7 @@ const EmptyChat = ({
|
||||||
}) => {
|
}) => {
|
||||||
return (
|
return (
|
||||||
<div className="relative">
|
<div className="relative">
|
||||||
<ThemeSwitcher size={17} className="absolute top-2 right-0 lg:hidden" />
|
<SettingsEntry className="absolute top-4 right-0 lg:hidden" />
|
||||||
|
|
||||||
<div className="flex flex-col items-center justify-center min-h-screen max-w-screen-sm mx-auto p-2 space-y-8">
|
<div className="flex flex-col items-center justify-center min-h-screen max-w-screen-sm mx-auto p-2 space-y-8">
|
||||||
<h2 className="text-black/70 dark:text-white/70 text-3xl font-medium -mt-8">
|
<h2 className="text-black/70 dark:text-white/70 text-3xl font-medium -mt-8">
|
||||||
|
|
23
ui/components/SettingsEntry.tsx
Normal file
23
ui/components/SettingsEntry.tsx
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
import { useState } from 'react';
|
||||||
|
import { Settings } from 'lucide-react';
|
||||||
|
import { cn } from '@/lib/utils';
|
||||||
|
import SettingsDialog from './SettingsDialog';
|
||||||
|
|
||||||
|
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {}
|
||||||
|
|
||||||
|
const SettingsEntry = ({ className }: InputProps) => {
|
||||||
|
const [isSettingsOpen, setIsSettingsOpen] = useState(false);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Settings
|
||||||
|
onClick={() => setIsSettingsOpen(!isSettingsOpen)}
|
||||||
|
className={cn('cursor-pointer', className)}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<SettingsDialog isOpen={isSettingsOpen} setIsOpen={setIsSettingsOpen} />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default SettingsEntry;
|
|
@ -1,13 +1,12 @@
|
||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import { cn } from '@/lib/utils';
|
import { cn } from '@/lib/utils';
|
||||||
import { BookOpenText, Home, Search, SquarePen, Settings } from 'lucide-react';
|
import { BookOpenText, Home, Search, SquarePen } from 'lucide-react';
|
||||||
import Link from 'next/link';
|
import Link from 'next/link';
|
||||||
import { useSelectedLayoutSegments } from 'next/navigation';
|
import { useSelectedLayoutSegments } from 'next/navigation';
|
||||||
import React, { useState, type ReactNode } from 'react';
|
import React, { useState, type ReactNode } from 'react';
|
||||||
import Layout from './Layout';
|
import Layout from './Layout';
|
||||||
import SettingsDialog from './SettingsDialog';
|
import SettingsEntry from './SettingsEntry';
|
||||||
import ThemeSwitcher from './theme/Switcher';
|
|
||||||
|
|
||||||
const VerticalIconContainer = ({ children }: { children: ReactNode }) => {
|
const VerticalIconContainer = ({ children }: { children: ReactNode }) => {
|
||||||
return (
|
return (
|
||||||
|
@ -68,15 +67,7 @@ const Sidebar = ({ children }: { children: React.ReactNode }) => {
|
||||||
))}
|
))}
|
||||||
</VerticalIconContainer>
|
</VerticalIconContainer>
|
||||||
|
|
||||||
<Settings
|
<SettingsEntry />
|
||||||
onClick={() => setIsSettingsOpen(!isSettingsOpen)}
|
|
||||||
className="cursor-pointer"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<SettingsDialog
|
|
||||||
isOpen={isSettingsOpen}
|
|
||||||
setIsOpen={setIsSettingsOpen}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue