InputMenu.svelte 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. <script lang="ts">
  2. import { DropdownMenu } from 'bits-ui';
  3. import { flyAndScale } from '$lib/utils/transitions';
  4. import { getContext, onMount, tick } from 'svelte';
  5. import { config, user, tools as _tools, mobile } from '$lib/stores';
  6. import { createPicker } from '$lib/utils/google-drive-picker';
  7. import { getTools } from '$lib/apis/tools';
  8. import Dropdown from '$lib/components/common/Dropdown.svelte';
  9. import Tooltip from '$lib/components/common/Tooltip.svelte';
  10. import DocumentArrowUpSolid from '$lib/components/icons/DocumentArrowUpSolid.svelte';
  11. import Switch from '$lib/components/common/Switch.svelte';
  12. import GlobeAltSolid from '$lib/components/icons/GlobeAltSolid.svelte';
  13. import WrenchSolid from '$lib/components/icons/WrenchSolid.svelte';
  14. import CameraSolid from '$lib/components/icons/CameraSolid.svelte';
  15. import PhotoSolid from '$lib/components/icons/PhotoSolid.svelte';
  16. import CommandLineSolid from '$lib/components/icons/CommandLineSolid.svelte';
  17. import Spinner from '$lib/components/common/Spinner.svelte';
  18. const i18n = getContext('i18n');
  19. export let selectedToolIds: string[] = [];
  20. export let selectedModels: string[] = [];
  21. export let fileUploadCapableModels: string[] = [];
  22. export let screenCaptureHandler: Function;
  23. export let uploadFilesHandler: Function;
  24. export let inputFilesHandler: Function;
  25. export let uploadGoogleDriveHandler: Function;
  26. export let uploadOneDriveHandler: Function;
  27. export let onClose: Function;
  28. let tools = null;
  29. let show = false;
  30. let showAllTools = false;
  31. $: if (show) {
  32. init();
  33. }
  34. let fileUploadEnabled = true;
  35. $: fileUploadEnabled =
  36. fileUploadCapableModels.length === selectedModels.length &&
  37. ($user?.role === 'admin' || $user?.permissions?.chat?.file_upload);
  38. const init = async () => {
  39. await _tools.set(await getTools(localStorage.token));
  40. if ($_tools) {
  41. tools = $_tools.reduce((a, tool, i, arr) => {
  42. a[tool.id] = {
  43. name: tool.name,
  44. description: tool.meta.description,
  45. enabled: selectedToolIds.includes(tool.id)
  46. };
  47. return a;
  48. }, {});
  49. selectedToolIds = selectedToolIds.filter((id) => $_tools?.some((tool) => tool.id === id));
  50. }
  51. };
  52. const detectMobile = () => {
  53. const userAgent = navigator.userAgent || navigator.vendor || window.opera;
  54. return /android|iphone|ipad|ipod|windows phone/i.test(userAgent);
  55. };
  56. function handleFileChange(event) {
  57. const inputFiles = Array.from(event.target?.files);
  58. if (inputFiles && inputFiles.length > 0) {
  59. console.log(inputFiles);
  60. inputFilesHandler(inputFiles);
  61. }
  62. }
  63. </script>
  64. <!-- Hidden file input used to open the camera on mobile -->
  65. <input
  66. id="camera-input"
  67. type="file"
  68. accept="image/*"
  69. capture="environment"
  70. on:change={handleFileChange}
  71. style="display: none;"
  72. />
  73. <Dropdown
  74. bind:show
  75. on:change={(e) => {
  76. if (e.detail === false) {
  77. onClose();
  78. }
  79. }}
  80. >
  81. <Tooltip content={$i18n.t('More')}>
  82. <slot />
  83. </Tooltip>
  84. <div slot="content">
  85. <DropdownMenu.Content
  86. class="w-full max-w-[240px] rounded-xl px-1 py-1 border border-gray-300/30 dark:border-gray-700/50 z-50 bg-white dark:bg-gray-850 dark:text-white shadow-sm"
  87. sideOffset={10}
  88. alignOffset={-8}
  89. side="top"
  90. align="start"
  91. transition={flyAndScale}
  92. >
  93. {#if tools}
  94. {#if Object.keys(tools).length > 0}
  95. <div class="{showAllTools ? ' max-h-96' : 'max-h-28'} overflow-y-auto scrollbar-thin">
  96. {#each Object.keys(tools) as toolId}
  97. <button
  98. class="flex w-full justify-between gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer rounded-xl"
  99. on:click={() => {
  100. tools[toolId].enabled = !tools[toolId].enabled;
  101. }}
  102. >
  103. <div class="flex-1 truncate">
  104. <Tooltip
  105. content={tools[toolId]?.description ?? ''}
  106. placement="top-start"
  107. className="flex flex-1 gap-2 items-center"
  108. >
  109. <div class="shrink-0">
  110. <WrenchSolid />
  111. </div>
  112. <div class=" truncate">{tools[toolId].name}</div>
  113. </Tooltip>
  114. </div>
  115. <div class=" shrink-0">
  116. <Switch
  117. state={tools[toolId].enabled}
  118. on:change={async (e) => {
  119. const state = e.detail;
  120. await tick();
  121. if (state) {
  122. selectedToolIds = [...selectedToolIds, toolId];
  123. } else {
  124. selectedToolIds = selectedToolIds.filter((id) => id !== toolId);
  125. }
  126. }}
  127. />
  128. </div>
  129. </button>
  130. {/each}
  131. </div>
  132. {#if Object.keys(tools).length > 3}
  133. <button
  134. class="flex w-full justify-center items-center text-sm font-medium cursor-pointer rounded-lg hover:bg-gray-50 dark:hover:bg-gray-800"
  135. on:click={() => {
  136. showAllTools = !showAllTools;
  137. }}
  138. title={showAllTools ? $i18n.t('Show Less') : $i18n.t('Show All')}
  139. >
  140. <svg
  141. xmlns="http://www.w3.org/2000/svg"
  142. fill="none"
  143. viewBox="0 0 24 24"
  144. stroke-width="2.5"
  145. stroke="currentColor"
  146. class="size-3 transition-transform duration-200 {showAllTools
  147. ? 'rotate-180'
  148. : ''} text-gray-300 dark:text-gray-600"
  149. >
  150. <path stroke-linecap="round" stroke-linejoin="round" d="m19.5 8.25-7.5 7.5-7.5-7.5"
  151. ></path>
  152. </svg>
  153. </button>
  154. {/if}
  155. <hr class="border-black/5 dark:border-white/5 my-1" />
  156. {/if}
  157. {:else}
  158. <div class="py-4">
  159. <Spinner />
  160. </div>
  161. <hr class="border-black/5 dark:border-white/5 my-1" />
  162. {/if}
  163. <Tooltip
  164. content={fileUploadCapableModels.length !== selectedModels.length
  165. ? $i18n.t('Model(s) do not support file upload')
  166. : !fileUploadEnabled
  167. ? $i18n.t('You do not have permission to upload files.')
  168. : ''}
  169. className="w-full"
  170. >
  171. <DropdownMenu.Item
  172. class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl {!fileUploadEnabled
  173. ? 'opacity-50'
  174. : ''}"
  175. on:click={() => {
  176. if (fileUploadEnabled) {
  177. if (!detectMobile()) {
  178. screenCaptureHandler();
  179. } else {
  180. const cameraInputElement = document.getElementById('camera-input');
  181. if (cameraInputElement) {
  182. cameraInputElement.click();
  183. }
  184. }
  185. }
  186. }}
  187. >
  188. <CameraSolid />
  189. <div class=" line-clamp-1">{$i18n.t('Capture')}</div>
  190. </DropdownMenu.Item>
  191. </Tooltip>
  192. <Tooltip
  193. content={fileUploadCapableModels.length !== selectedModels.length
  194. ? $i18n.t('Model(s) do not support file upload')
  195. : !fileUploadEnabled
  196. ? $i18n.t('You do not have permission to upload files.')
  197. : ''}
  198. className="w-full"
  199. >
  200. <DropdownMenu.Item
  201. class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl {!fileUploadEnabled
  202. ? 'opacity-50'
  203. : ''}"
  204. on:click={() => {
  205. if (fileUploadEnabled) {
  206. uploadFilesHandler();
  207. }
  208. }}
  209. >
  210. <DocumentArrowUpSolid />
  211. <div class="line-clamp-1">{$i18n.t('Upload Files')}</div>
  212. </DropdownMenu.Item>
  213. </Tooltip>
  214. {#if fileUploadEnabled}
  215. {#if $config?.features?.enable_google_drive_integration}
  216. <DropdownMenu.Item
  217. class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl"
  218. on:click={() => {
  219. uploadGoogleDriveHandler();
  220. }}
  221. >
  222. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 87.3 78" class="w-5 h-5">
  223. <path
  224. d="m6.6 66.85 3.85 6.65c.8 1.4 1.95 2.5 3.3 3.3l13.75-23.8h-27.5c0 1.55.4 3.1 1.2 4.5z"
  225. fill="#0066da"
  226. />
  227. <path
  228. d="m43.65 25-13.75-23.8c-1.35.8-2.5 1.9-3.3 3.3l-25.4 44a9.06 9.06 0 0 0 -1.2 4.5h27.5z"
  229. fill="#00ac47"
  230. />
  231. <path
  232. d="m73.55 76.8c1.35-.8 2.5-1.9 3.3-3.3l1.6-2.75 7.65-13.25c.8-1.4 1.2-2.95 1.2-4.5h-27.502l5.852 11.5z"
  233. fill="#ea4335"
  234. />
  235. <path
  236. d="m43.65 25 13.75-23.8c-1.35-.8-2.9-1.2-4.5-1.2h-18.5c-1.6 0-3.15.45-4.5 1.2z"
  237. fill="#00832d"
  238. />
  239. <path
  240. d="m59.8 53h-32.3l-13.75 23.8c1.35.8 2.9 1.2 4.5 1.2h50.8c1.6 0 3.15-.45 4.5-1.2z"
  241. fill="#2684fc"
  242. />
  243. <path
  244. d="m73.4 26.5-12.7-22c-.8-1.4-1.95-2.5-3.3-3.3l-13.75 23.8 16.15 28h27.45c0-1.55-.4-3.1-1.2-4.5z"
  245. fill="#ffba00"
  246. />
  247. </svg>
  248. <div class="line-clamp-1">{$i18n.t('Google Drive')}</div>
  249. </DropdownMenu.Item>
  250. {/if}
  251. {#if $config?.features?.enable_onedrive_integration}
  252. <DropdownMenu.Sub>
  253. <DropdownMenu.SubTrigger
  254. class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl w-full"
  255. >
  256. <svg
  257. xmlns="http://www.w3.org/2000/svg"
  258. viewBox="0 0 32 32"
  259. class="w-5 h-5"
  260. fill="none"
  261. >
  262. <mask
  263. id="mask0_87_7796"
  264. style="mask-type:alpha"
  265. maskUnits="userSpaceOnUse"
  266. x="0"
  267. y="6"
  268. width="32"
  269. height="20"
  270. >
  271. <path
  272. d="M7.82979 26C3.50549 26 0 22.5675 0 18.3333C0 14.1921 3.35322 10.8179 7.54613 10.6716C9.27535 7.87166 12.4144 6 16 6C20.6308 6 24.5169 9.12183 25.5829 13.3335C29.1316 13.3603 32 16.1855 32 19.6667C32 23.0527 29 26 25.8723 25.9914L7.82979 26Z"
  273. fill="#C4C4C4"
  274. />
  275. </mask>
  276. <g mask="url(#mask0_87_7796)">
  277. <path
  278. d="M7.83017 26.0001C5.37824 26.0001 3.18957 24.8966 1.75391 23.1691L18.0429 16.3335L30.7089 23.4647C29.5926 24.9211 27.9066 26.0001 26.0004 25.9915C23.1254 26.0001 12.0629 26.0001 7.83017 26.0001Z"
  279. fill="url(#paint0_linear_87_7796)"
  280. />
  281. <path
  282. d="M25.5785 13.3149L18.043 16.3334L30.709 23.4647C31.5199 22.4065 32.0004 21.0916 32.0004 19.6669C32.0004 16.1857 29.1321 13.3605 25.5833 13.3337C25.5817 13.3274 25.5801 13.3212 25.5785 13.3149Z"
  283. fill="url(#paint1_linear_87_7796)"
  284. />
  285. <path
  286. d="M7.06445 10.7028L18.0423 16.3333L25.5779 13.3148C24.5051 9.11261 20.6237 6 15.9997 6C12.4141 6 9.27508 7.87166 7.54586 10.6716C7.3841 10.6773 7.22358 10.6877 7.06445 10.7028Z"
  287. fill="url(#paint2_linear_87_7796)"
  288. />
  289. <path
  290. d="M1.7535 23.1687L18.0425 16.3331L7.06471 10.7026C3.09947 11.0792 0 14.3517 0 18.3331C0 20.1665 0.657197 21.8495 1.7535 23.1687Z"
  291. fill="url(#paint3_linear_87_7796)"
  292. />
  293. </g>
  294. <defs>
  295. <linearGradient
  296. id="paint0_linear_87_7796"
  297. x1="4.42591"
  298. y1="24.6668"
  299. x2="27.2309"
  300. y2="23.2764"
  301. gradientUnits="userSpaceOnUse"
  302. >
  303. <stop stop-color="#2086B8" />
  304. <stop offset="1" stop-color="#46D3F6" />
  305. </linearGradient>
  306. <linearGradient
  307. id="paint1_linear_87_7796"
  308. x1="23.8302"
  309. y1="19.6668"
  310. x2="30.2108"
  311. y2="15.2082"
  312. gradientUnits="userSpaceOnUse"
  313. >
  314. <stop stop-color="#1694DB" />
  315. <stop offset="1" stop-color="#62C3FE" />
  316. </linearGradient>
  317. <linearGradient
  318. id="paint2_linear_87_7796"
  319. x1="8.51037"
  320. y1="7.33333"
  321. x2="23.3335"
  322. y2="15.9348"
  323. gradientUnits="userSpaceOnUse"
  324. >
  325. <stop stop-color="#0D3D78" />
  326. <stop offset="1" stop-color="#063B83" />
  327. </linearGradient>
  328. <linearGradient
  329. id="paint3_linear_87_7796"
  330. x1="-0.340429"
  331. y1="19.9998"
  332. x2="14.5634"
  333. y2="14.4649"
  334. gradientUnits="userSpaceOnUse"
  335. >
  336. <stop stop-color="#16589B" />
  337. <stop offset="1" stop-color="#1464B7" />
  338. </linearGradient>
  339. </defs>
  340. </svg>
  341. <div class="line-clamp-1">{$i18n.t('Microsoft OneDrive')}</div>
  342. </DropdownMenu.SubTrigger>
  343. <DropdownMenu.SubContent
  344. class="w-[calc(100vw-2rem)] max-w-[280px] rounded-xl px-1 py-1 border border-gray-300/30 dark:border-gray-700/50 z-50 bg-white dark:bg-gray-850 dark:text-white shadow-sm"
  345. side={$mobile ? 'bottom' : 'right'}
  346. sideOffset={$mobile ? 5 : 0}
  347. alignOffset={$mobile ? 0 : -8}
  348. >
  349. <DropdownMenu.Item
  350. class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl"
  351. on:click={() => {
  352. uploadOneDriveHandler('personal');
  353. }}
  354. >
  355. <div class="line-clamp-1">{$i18n.t('Microsoft OneDrive (personal)')}</div>
  356. </DropdownMenu.Item>
  357. <DropdownMenu.Item
  358. class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl"
  359. on:click={() => {
  360. uploadOneDriveHandler('organizations');
  361. }}
  362. >
  363. <div class="flex flex-col">
  364. <div class="line-clamp-1">{$i18n.t('Microsoft OneDrive (work/school)')}</div>
  365. <div class="text-xs text-gray-500">{$i18n.t('Includes SharePoint')}</div>
  366. </div>
  367. </DropdownMenu.Item>
  368. </DropdownMenu.SubContent>
  369. </DropdownMenu.Sub>
  370. {/if}
  371. {/if}
  372. </DropdownMenu.Content>
  373. </div>
  374. </Dropdown>