InputMenu.svelte 12 KB

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