2024-04-13 06:41:47 +00:00
|
|
|
import {
|
|
|
|
BadgePercent,
|
2024-04-13 06:50:36 +00:00
|
|
|
ChevronDown,
|
2024-04-13 06:41:47 +00:00
|
|
|
Globe,
|
|
|
|
Pencil,
|
|
|
|
ScanEye,
|
|
|
|
SwatchBook,
|
|
|
|
} from 'lucide-react';
|
2024-04-09 10:51:05 +00:00
|
|
|
import { cn } from '@/lib/utils';
|
2024-05-31 05:32:37 +00:00
|
|
|
import { Popover, Transition } from '@headlessui/react';
|
2024-04-13 06:41:47 +00:00
|
|
|
import { SiReddit, SiYoutube } from '@icons-pack/react-simple-icons';
|
|
|
|
import { Fragment } from 'react';
|
2024-04-09 10:51:05 +00:00
|
|
|
|
2024-04-13 06:41:47 +00:00
|
|
|
const focusModes = [
|
|
|
|
{
|
|
|
|
key: 'webSearch',
|
|
|
|
title: 'All',
|
|
|
|
description: 'Searches across all of the internet',
|
|
|
|
icon: <Globe size={20} />,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'academicSearch',
|
|
|
|
title: 'Academic',
|
|
|
|
description: 'Search in published academic papers',
|
|
|
|
icon: <SwatchBook size={20} />,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'writingAssistant',
|
|
|
|
title: 'Writing',
|
|
|
|
description: 'Chat without searching the web',
|
2024-04-13 06:50:36 +00:00
|
|
|
icon: <Pencil size={16} />,
|
2024-04-13 06:41:47 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'wolframAlphaSearch',
|
|
|
|
title: 'Wolfram Alpha',
|
|
|
|
description: 'Computational knowledge engine',
|
|
|
|
icon: <BadgePercent size={20} />,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'youtubeSearch',
|
|
|
|
title: 'Youtube',
|
|
|
|
description: 'Search and watch videos',
|
|
|
|
icon: (
|
|
|
|
<SiYoutube
|
|
|
|
className="h-5 w-auto mr-0.5"
|
|
|
|
onPointerEnterCapture={undefined}
|
|
|
|
onPointerLeaveCapture={undefined}
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'redditSearch',
|
|
|
|
title: 'Reddit',
|
|
|
|
description: 'Search for discussions and opinions',
|
|
|
|
icon: (
|
|
|
|
<SiReddit
|
|
|
|
className="h-5 w-auto mr-0.5"
|
|
|
|
onPointerEnterCapture={undefined}
|
|
|
|
onPointerLeaveCapture={undefined}
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2024-05-31 05:32:37 +00:00
|
|
|
const Focus = ({
|
2024-04-13 06:41:47 +00:00
|
|
|
focusMode,
|
|
|
|
setFocusMode,
|
|
|
|
}: {
|
|
|
|
focusMode: string;
|
|
|
|
setFocusMode: (mode: string) => void;
|
|
|
|
}) => {
|
2024-04-09 10:51:05 +00:00
|
|
|
return (
|
2024-04-13 06:41:47 +00:00
|
|
|
<Popover className="fixed w-full max-w-[15rem] md:max-w-md lg:max-w-lg">
|
|
|
|
<Popover.Button
|
|
|
|
type="button"
|
2024-05-27 03:49:09 +00:00
|
|
|
className="p-2 text-black/50 dark:text-white/50 rounded-xl hover:bg-light-secondary dark:hover:bg-dark-secondary active:scale-95 transition duration-200 hover:text-black dark:hover:text-white"
|
2024-04-13 06:41:47 +00:00
|
|
|
>
|
2024-04-13 06:50:36 +00:00
|
|
|
{focusMode !== 'webSearch' ? (
|
|
|
|
<div className="flex flex-row items-center space-x-1">
|
|
|
|
{focusModes.find((mode) => mode.key === focusMode)?.icon}
|
|
|
|
<p className="text-xs font-medium">
|
|
|
|
{focusModes.find((mode) => mode.key === focusMode)?.title}
|
|
|
|
</p>
|
|
|
|
<ChevronDown size={20} />
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<ScanEye />
|
|
|
|
)}
|
2024-04-13 06:41:47 +00:00
|
|
|
</Popover.Button>
|
|
|
|
<Transition
|
|
|
|
as={Fragment}
|
|
|
|
enter="transition ease-out duration-150"
|
|
|
|
enterFrom="opacity-0 translate-y-1"
|
|
|
|
enterTo="opacity-100 translate-y-0"
|
|
|
|
leave="transition ease-in duration-150"
|
|
|
|
leaveFrom="opacity-100 translate-y-0"
|
|
|
|
leaveTo="opacity-0 translate-y-1"
|
|
|
|
>
|
|
|
|
<Popover.Panel className="absolute z-10 w-full">
|
2024-05-28 02:55:52 +00:00
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-1 bg-light-primary dark:bg-dark-primary border rounded-lg border-light-200 dark:border-dark-200 w-full p-2 max-h-[200px] md:max-h-none overflow-y-auto">
|
2024-04-13 06:41:47 +00:00
|
|
|
{focusModes.map((mode, i) => (
|
|
|
|
<Popover.Button
|
|
|
|
onClick={() => setFocusMode(mode.key)}
|
|
|
|
key={i}
|
|
|
|
className={cn(
|
|
|
|
'p-2 rounded-lg flex flex-col items-start justify-start text-start space-y-2 duration-200 cursor-pointer transition',
|
|
|
|
focusMode === mode.key
|
2024-05-27 23:36:20 +00:00
|
|
|
? 'bg-light-secondary dark:bg-dark-secondary'
|
|
|
|
: 'hover:bg-light-secondary dark:hover:bg-dark-secondary',
|
2024-04-13 06:41:47 +00:00
|
|
|
)}
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
className={cn(
|
|
|
|
'flex flex-row items-center space-x-1',
|
2024-05-24 12:29:49 +00:00
|
|
|
focusMode === mode.key
|
|
|
|
? 'text-[#24A0ED]'
|
|
|
|
: 'text-black dark:text-white',
|
2024-04-13 06:41:47 +00:00
|
|
|
)}
|
|
|
|
>
|
|
|
|
{mode.icon}
|
|
|
|
<p className="text-sm font-medium">{mode.title}</p>
|
|
|
|
</div>
|
2024-05-24 12:29:49 +00:00
|
|
|
<p className="text-black/70 dark:text-white/70 text-xs">
|
|
|
|
{mode.description}
|
|
|
|
</p>
|
2024-04-13 06:41:47 +00:00
|
|
|
</Popover.Button>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
</Popover.Panel>
|
|
|
|
</Transition>
|
|
|
|
</Popover>
|
2024-04-09 10:51:05 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2024-05-31 05:32:37 +00:00
|
|
|
export default Focus;
|