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 DocumentArrowUp from '$lib/components/icons/DocumentArrowUp.svelte';
  11. import Camera from '$lib/components/icons/Camera.svelte';
  12. import Note from '$lib/components/icons/Note.svelte';
  13. import Clip from '$lib/components/icons/Clip.svelte';
  14. import ChatBubbleOval from '$lib/components/icons/ChatBubbleOval.svelte';
  15. import Refresh from '$lib/components/icons/Refresh.svelte';
  16. import Agile from '$lib/components/icons/Agile.svelte';
  17. const i18n = getContext('i18n');
  18. export let selectedToolIds: string[] = [];
  19. export let selectedModels: string[] = [];
  20. export let fileUploadCapableModels: string[] = [];
  21. export let screenCaptureHandler: Function;
  22. export let uploadFilesHandler: Function;
  23. export let inputFilesHandler: Function;
  24. export let uploadGoogleDriveHandler: Function;
  25. export let uploadOneDriveHandler: Function;
  26. export let onClose: Function;
  27. let show = false;
  28. let fileUploadEnabled = true;
  29. $: fileUploadEnabled =
  30. fileUploadCapableModels.length === selectedModels.length &&
  31. ($user?.role === 'admin' || $user?.permissions?.chat?.file_upload);
  32. const detectMobile = () => {
  33. const userAgent = navigator.userAgent || navigator.vendor || window.opera;
  34. return /android|iphone|ipad|ipod|windows phone/i.test(userAgent);
  35. };
  36. function handleFileChange(event) {
  37. const inputFiles = Array.from(event.target?.files);
  38. if (inputFiles && inputFiles.length > 0) {
  39. console.log(inputFiles);
  40. inputFilesHandler(inputFiles);
  41. }
  42. }
  43. </script>
  44. <!-- Hidden file input used to open the camera on mobile -->
  45. <input
  46. id="camera-input"
  47. type="file"
  48. accept="image/*"
  49. capture="environment"
  50. on:change={handleFileChange}
  51. style="display: none;"
  52. />
  53. <Dropdown
  54. bind:show
  55. on:change={(e) => {
  56. if (e.detail === false) {
  57. onClose();
  58. }
  59. }}
  60. >
  61. <Tooltip content={$i18n.t('More')}>
  62. <slot />
  63. </Tooltip>
  64. <div slot="content">
  65. <DropdownMenu.Content
  66. class="w-full max-w-[200px] rounded-2xl px-1 py-1 border border-gray-100 dark:border-gray-850 z-50 bg-white dark:bg-gray-850 dark:text-white shadow-lg transition"
  67. sideOffset={4}
  68. alignOffset={-6}
  69. side="bottom"
  70. align="start"
  71. transition={flyAndScale}
  72. >
  73. <Tooltip
  74. content={fileUploadCapableModels.length !== selectedModels.length
  75. ? $i18n.t('Model(s) do not support file upload')
  76. : !fileUploadEnabled
  77. ? $i18n.t('You do not have permission to upload files.')
  78. : ''}
  79. className="w-full"
  80. >
  81. <DropdownMenu.Item
  82. class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl {!fileUploadEnabled
  83. ? 'opacity-50'
  84. : ''}"
  85. on:click={() => {
  86. if (fileUploadEnabled) {
  87. uploadFilesHandler();
  88. }
  89. }}
  90. >
  91. <Clip />
  92. <div class="line-clamp-1">{$i18n.t('Upload Files')}</div>
  93. </DropdownMenu.Item>
  94. </Tooltip>
  95. <Tooltip
  96. content={fileUploadCapableModels.length !== selectedModels.length
  97. ? $i18n.t('Model(s) do not support file upload')
  98. : !fileUploadEnabled
  99. ? $i18n.t('You do not have permission to upload files.')
  100. : ''}
  101. className="w-full"
  102. >
  103. <DropdownMenu.Item
  104. class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl {!fileUploadEnabled
  105. ? 'opacity-50'
  106. : ''}"
  107. on:click={() => {
  108. if (fileUploadEnabled) {
  109. if (!detectMobile()) {
  110. screenCaptureHandler();
  111. } else {
  112. const cameraInputElement = document.getElementById('camera-input');
  113. if (cameraInputElement) {
  114. cameraInputElement.click();
  115. }
  116. }
  117. }
  118. }}
  119. >
  120. <Camera />
  121. <div class=" line-clamp-1">{$i18n.t('Capture')}</div>
  122. </DropdownMenu.Item>
  123. </Tooltip>
  124. <Tooltip
  125. content={fileUploadCapableModels.length !== selectedModels.length
  126. ? $i18n.t('Model(s) do not support file upload')
  127. : !fileUploadEnabled
  128. ? $i18n.t('You do not have permission to upload files.')
  129. : ''}
  130. className="w-full"
  131. >
  132. <DropdownMenu.Item
  133. class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl {!fileUploadEnabled
  134. ? 'opacity-50'
  135. : ''}"
  136. on:click={() => {
  137. if (fileUploadEnabled) {
  138. if (!detectMobile()) {
  139. screenCaptureHandler();
  140. } else {
  141. const cameraInputElement = document.getElementById('camera-input');
  142. if (cameraInputElement) {
  143. cameraInputElement.click();
  144. }
  145. }
  146. }
  147. }}
  148. >
  149. <Agile />
  150. <div class=" line-clamp-1">{$i18n.t('Reference Chats')}</div>
  151. </DropdownMenu.Item>
  152. </Tooltip>
  153. {#if $config?.features?.enable_notes ?? false}
  154. <Tooltip
  155. content={fileUploadCapableModels.length !== selectedModels.length
  156. ? $i18n.t('Model(s) do not support file upload')
  157. : !fileUploadEnabled
  158. ? $i18n.t('You do not have permission to upload files.')
  159. : ''}
  160. className="w-full"
  161. >
  162. <DropdownMenu.Item
  163. class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl {!fileUploadEnabled
  164. ? 'opacity-50'
  165. : ''}"
  166. on:click={() => {
  167. if (fileUploadEnabled) {
  168. if (!detectMobile()) {
  169. screenCaptureHandler();
  170. } else {
  171. const cameraInputElement = document.getElementById('camera-input');
  172. if (cameraInputElement) {
  173. cameraInputElement.click();
  174. }
  175. }
  176. }
  177. }}
  178. >
  179. <Note />
  180. <div class=" line-clamp-1">{$i18n.t('Attach Notes')}</div>
  181. </DropdownMenu.Item>
  182. </Tooltip>
  183. {/if}
  184. <Tooltip
  185. content={fileUploadCapableModels.length !== selectedModels.length
  186. ? $i18n.t('Model(s) do not support file upload')
  187. : !fileUploadEnabled
  188. ? $i18n.t('You do not have permission to upload files.')
  189. : ''}
  190. className="w-full"
  191. >
  192. <DropdownMenu.Item
  193. class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl {!fileUploadEnabled
  194. ? 'opacity-50'
  195. : ''}"
  196. on:click={() => {
  197. if (fileUploadEnabled) {
  198. if (!detectMobile()) {
  199. screenCaptureHandler();
  200. } else {
  201. const cameraInputElement = document.getElementById('camera-input');
  202. if (cameraInputElement) {
  203. cameraInputElement.click();
  204. }
  205. }
  206. }
  207. }}
  208. >
  209. <DocumentArrowUp />
  210. <div class=" line-clamp-1">{$i18n.t('Attach Knowledge')}</div>
  211. </DropdownMenu.Item>
  212. </Tooltip>
  213. {#if fileUploadEnabled}
  214. {#if $config?.features?.enable_google_drive_integration}
  215. <DropdownMenu.Item
  216. class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl"
  217. on:click={() => {
  218. uploadGoogleDriveHandler();
  219. }}
  220. >
  221. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 87.3 78" class="w-5 h-5">
  222. <path
  223. 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"
  224. fill="#0066da"
  225. />
  226. <path
  227. 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"
  228. fill="#00ac47"
  229. />
  230. <path
  231. 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"
  232. fill="#ea4335"
  233. />
  234. <path
  235. 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"
  236. fill="#00832d"
  237. />
  238. <path
  239. 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"
  240. fill="#2684fc"
  241. />
  242. <path
  243. 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"
  244. fill="#ffba00"
  245. />
  246. </svg>
  247. <div class="line-clamp-1">{$i18n.t('Google Drive')}</div>
  248. </DropdownMenu.Item>
  249. {/if}
  250. {#if $config?.features?.enable_onedrive_integration}
  251. <DropdownMenu.Sub>
  252. <DropdownMenu.SubTrigger
  253. class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl w-full"
  254. >
  255. <svg
  256. xmlns="http://www.w3.org/2000/svg"
  257. viewBox="0 0 32 32"
  258. class="w-5 h-5"
  259. fill="none"
  260. >
  261. <mask
  262. id="mask0_87_7796"
  263. style="mask-type:alpha"
  264. maskUnits="userSpaceOnUse"
  265. x="0"
  266. y="6"
  267. width="32"
  268. height="20"
  269. >
  270. <path
  271. 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"
  272. fill="#C4C4C4"
  273. />
  274. </mask>
  275. <g mask="url(#mask0_87_7796)">
  276. <path
  277. 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"
  278. fill="url(#paint0_linear_87_7796)"
  279. />
  280. <path
  281. 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"
  282. fill="url(#paint1_linear_87_7796)"
  283. />
  284. <path
  285. 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"
  286. fill="url(#paint2_linear_87_7796)"
  287. />
  288. <path
  289. 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"
  290. fill="url(#paint3_linear_87_7796)"
  291. />
  292. </g>
  293. <defs>
  294. <linearGradient
  295. id="paint0_linear_87_7796"
  296. x1="4.42591"
  297. y1="24.6668"
  298. x2="27.2309"
  299. y2="23.2764"
  300. gradientUnits="userSpaceOnUse"
  301. >
  302. <stop stop-color="#2086B8" />
  303. <stop offset="1" stop-color="#46D3F6" />
  304. </linearGradient>
  305. <linearGradient
  306. id="paint1_linear_87_7796"
  307. x1="23.8302"
  308. y1="19.6668"
  309. x2="30.2108"
  310. y2="15.2082"
  311. gradientUnits="userSpaceOnUse"
  312. >
  313. <stop stop-color="#1694DB" />
  314. <stop offset="1" stop-color="#62C3FE" />
  315. </linearGradient>
  316. <linearGradient
  317. id="paint2_linear_87_7796"
  318. x1="8.51037"
  319. y1="7.33333"
  320. x2="23.3335"
  321. y2="15.9348"
  322. gradientUnits="userSpaceOnUse"
  323. >
  324. <stop stop-color="#0D3D78" />
  325. <stop offset="1" stop-color="#063B83" />
  326. </linearGradient>
  327. <linearGradient
  328. id="paint3_linear_87_7796"
  329. x1="-0.340429"
  330. y1="19.9998"
  331. x2="14.5634"
  332. y2="14.4649"
  333. gradientUnits="userSpaceOnUse"
  334. >
  335. <stop stop-color="#16589B" />
  336. <stop offset="1" stop-color="#1464B7" />
  337. </linearGradient>
  338. </defs>
  339. </svg>
  340. <div class="line-clamp-1">{$i18n.t('Microsoft OneDrive')}</div>
  341. </DropdownMenu.SubTrigger>
  342. <DropdownMenu.SubContent
  343. 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"
  344. side={$mobile ? 'bottom' : 'right'}
  345. sideOffset={$mobile ? 5 : 0}
  346. alignOffset={$mobile ? 0 : -8}
  347. >
  348. <DropdownMenu.Item
  349. class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl"
  350. on:click={() => {
  351. uploadOneDriveHandler('personal');
  352. }}
  353. >
  354. <div class="line-clamp-1">{$i18n.t('Microsoft OneDrive (personal)')}</div>
  355. </DropdownMenu.Item>
  356. <DropdownMenu.Item
  357. class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl"
  358. on:click={() => {
  359. uploadOneDriveHandler('organizations');
  360. }}
  361. >
  362. <div class="flex flex-col">
  363. <div class="line-clamp-1">{$i18n.t('Microsoft OneDrive (work/school)')}</div>
  364. <div class="text-xs text-gray-500">{$i18n.t('Includes SharePoint')}</div>
  365. </div>
  366. </DropdownMenu.Item>
  367. </DropdownMenu.SubContent>
  368. </DropdownMenu.Sub>
  369. {/if}
  370. {/if}
  371. </DropdownMenu.Content>
  372. </div>
  373. </Dropdown>