File size: 5,519 Bytes
f5ed9bf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import {
  BadgePercent,
  ChevronDown,
  CopyPlus,
  Globe,
  Pencil,
  ScanEye,
  SwatchBook,
} from 'lucide-react';
import { cn } from '@/lib/utils';
import { Popover, Switch, Transition } from '@headlessui/react';
import { SiReddit, SiYoutube } from '@icons-pack/react-simple-icons';
import { Fragment } from 'react';

export const Attach = () => {
  return (
    <button

      type="button"

      className="p-2 text-white/50 rounded-xl hover:bg-[#1c1c1c] transition duration-200 hover:text-white"

    >

      <CopyPlus />

    </button>
  );
};

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',
    icon: <Pencil size={16} />,
  },
  {
    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}

      />
    ),
  },
];

export const Focus = ({

  focusMode,

  setFocusMode,

}: {

  focusMode: string;

  setFocusMode: (mode: string) => void;

}) => {
  return (
    <Popover className="fixed w-full max-w-[15rem] md:max-w-md lg:max-w-lg">

      <Popover.Button

        type="button"

        className="p-2 text-white/50 rounded-xl hover:bg-[#1c1c1c] active:scale-95 transition duration-200 hover:text-white"

      >

        {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 />

        )}

      </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">

          <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-1 bg-[#0A0A0A] border rounded-lg border-[#1c1c1c] w-full p-2 max-h-[200px] md:max-h-none overflow-y-auto">

            {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

                    ? 'bg-[#111111]'

                    : 'hover:bg-[#111111]',

                )}

              >

                <div

                  className={cn(

                    'flex flex-row items-center space-x-1',

                    focusMode === mode.key ? 'text-[#24A0ED]' : 'text-white',

                  )}

                >

                  {mode.icon}

                  <p className="text-sm font-medium">{mode.title}</p>

                </div>

                <p className="text-white/70 text-xs">{mode.description}</p>

              </Popover.Button>

            ))}

          </div>

        </Popover.Panel>

      </Transition>

    </Popover>
  );
};

export const CopilotToggle = ({

  copilotEnabled,

  setCopilotEnabled,

}: {

  copilotEnabled: boolean;

  setCopilotEnabled: (enabled: boolean) => void;

}) => {
  return (
    <div className="group flex flex-row items-center space-x-1 active:scale-95 duration-200 transition cursor-pointer">

      <Switch

        checked={copilotEnabled}

        onChange={setCopilotEnabled}

        className="bg-[#111111] border border-[#1C1C1C] relative inline-flex h-5 w-10 sm:h-6 sm:w-11 items-center rounded-full"

      >

        <span className="sr-only">Copilot</span>

        <span

          className={cn(

            copilotEnabled

              ? 'translate-x-6 bg-[#24A0ED]'

              : 'translate-x-1 bg-white/50',

            'inline-block h-3 w-3 sm:h-4 sm:w-4 transform rounded-full transition-all duration-200',

          )}

        />

      </Switch>

      <p

        onClick={() => setCopilotEnabled(!copilotEnabled)}

        className={cn(

          'text-xs font-medium transition-colors duration-150 ease-in-out',

          copilotEnabled

            ? 'text-[#24A0ED]'

            : 'text-white/50 group-hover:text-white',

        )}

      >

        Copilot

      </p>

    </div>
  );
};