InputMenu.svelte 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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. const i18n = getContext('i18n');
  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 selectedToolIds: string[] = [];
  24. export let onClose: Function;
  25. let tools = {};
  26. let show = false;
  27. $: if (show) {
  28. init();
  29. }
  30. let fileUploadEnabled = true;
  31. $: fileUploadEnabled = $user.role === 'admin' || $user?.permissions?.chat?.file_upload;
  32. const init = async () => {
  33. if ($_tools === null) {
  34. await _tools.set(await getTools(localStorage.token));
  35. }
  36. tools = $_tools.reduce((a, tool, i, arr) => {
  37. a[tool.id] = {
  38. name: tool.name,
  39. description: tool.meta.description,
  40. enabled: selectedToolIds.includes(tool.id)
  41. };
  42. return a;
  43. }, {});
  44. };
  45. const detectMobile = () => {
  46. const userAgent = navigator.userAgent || navigator.vendor || window.opera;
  47. return /android|iphone|ipad|ipod|windows phone/i.test(userAgent);
  48. };
  49. function handleFileChange(event) {
  50. const inputFiles = Array.from(event.target?.files);
  51. if (inputFiles && inputFiles.length > 0) {
  52. console.log(inputFiles);
  53. inputFilesHandler(inputFiles);
  54. }
  55. }
  56. </script>
  57. <!-- Hidden file input used to open the camera on mobile -->
  58. <input
  59. id="camera-input"
  60. type="file"
  61. accept="image/*"
  62. capture="environment"
  63. on:change={handleFileChange}
  64. style="display: none;"
  65. />
  66. <Dropdown
  67. bind:show
  68. on:change={(e) => {
  69. if (e.detail === false) {
  70. onClose();
  71. }
  72. }}
  73. >
  74. <Tooltip content={$i18n.t('More')}>
  75. <slot />
  76. </Tooltip>
  77. <div slot="content">
  78. <DropdownMenu.Content
  79. class="w-full max-w-[200px] 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"
  80. sideOffset={10}
  81. alignOffset={-8}
  82. side="top"
  83. align="start"
  84. transition={flyAndScale}
  85. >
  86. {#if Object.keys(tools).length > 0}
  87. <div class=" max-h-28 overflow-y-auto scrollbar-hidden">
  88. {#each Object.keys(tools) as toolId}
  89. <button
  90. class="flex w-full justify-between gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer rounded-xl"
  91. on:click={() => {
  92. tools[toolId].enabled = !tools[toolId].enabled;
  93. }}
  94. >
  95. <div class="flex-1 truncate">
  96. <Tooltip
  97. content={tools[toolId]?.description ?? ''}
  98. placement="top-start"
  99. className="flex flex-1 gap-2 items-center"
  100. >
  101. <div class="shrink-0">
  102. <WrenchSolid />
  103. </div>
  104. <div class=" truncate">{tools[toolId].name}</div>
  105. </Tooltip>
  106. </div>
  107. <div class=" shrink-0">
  108. <Switch
  109. state={tools[toolId].enabled}
  110. on:change={async (e) => {
  111. const state = e.detail;
  112. await tick();
  113. if (state) {
  114. selectedToolIds = [...selectedToolIds, toolId];
  115. } else {
  116. selectedToolIds = selectedToolIds.filter((id) => id !== toolId);
  117. }
  118. }}
  119. />
  120. </div>
  121. </button>
  122. {/each}
  123. </div>
  124. <hr class="border-black/5 dark:border-white/5 my-1" />
  125. {/if}
  126. <Tooltip
  127. content={!fileUploadEnabled ? $i18n.t('You do not have permission to upload files') : ''}
  128. className="w-full"
  129. >
  130. <DropdownMenu.Item
  131. 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
  132. ? 'opacity-50'
  133. : ''}"
  134. on:click={() => {
  135. if (fileUploadEnabled) {
  136. if (!detectMobile()) {
  137. screenCaptureHandler();
  138. } else {
  139. const cameraInputElement = document.getElementById('camera-input');
  140. if (cameraInputElement) {
  141. cameraInputElement.click();
  142. }
  143. }
  144. }
  145. }}
  146. >
  147. <CameraSolid />
  148. <div class=" line-clamp-1">{$i18n.t('Capture')}</div>
  149. </DropdownMenu.Item>
  150. </Tooltip>
  151. <Tooltip
  152. content={!fileUploadEnabled ? $i18n.t('You do not have permission to upload files') : ''}
  153. className="w-full"
  154. >
  155. <DropdownMenu.Item
  156. 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
  157. ? 'opacity-50'
  158. : ''}"
  159. on:click={() => {
  160. if (fileUploadEnabled) {
  161. uploadFilesHandler();
  162. }
  163. }}
  164. >
  165. <DocumentArrowUpSolid />
  166. <div class="line-clamp-1">{$i18n.t('Upload Files')}</div>
  167. </DropdownMenu.Item>
  168. </Tooltip>
  169. {#if $config?.features?.enable_google_drive_integration}
  170. <DropdownMenu.Item
  171. 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"
  172. on:click={() => {
  173. uploadGoogleDriveHandler();
  174. }}
  175. >
  176. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 87.3 78" class="w-5 h-5">
  177. <path
  178. 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"
  179. fill="#0066da"
  180. />
  181. <path
  182. 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"
  183. fill="#00ac47"
  184. />
  185. <path
  186. 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"
  187. fill="#ea4335"
  188. />
  189. <path
  190. 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"
  191. fill="#00832d"
  192. />
  193. <path
  194. 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"
  195. fill="#2684fc"
  196. />
  197. <path
  198. 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"
  199. fill="#ffba00"
  200. />
  201. </svg>
  202. <div class="line-clamp-1">{$i18n.t('Google Drive')}</div>
  203. </DropdownMenu.Item>
  204. {/if}
  205. {#if $config?.features?.enable_onedrive_integration}
  206. <DropdownMenu.Item
  207. 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"
  208. on:click={() => {
  209. uploadOneDriveHandler();
  210. }}
  211. >
  212. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" class="w-5 h-5" fill="none">
  213. <mask
  214. id="mask0_87_7796"
  215. style="mask-type:alpha"
  216. maskUnits="userSpaceOnUse"
  217. x="0"
  218. y="6"
  219. width="32"
  220. height="20"
  221. >
  222. <path
  223. 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"
  224. fill="#C4C4C4"
  225. />
  226. </mask>
  227. <g mask="url(#mask0_87_7796)">
  228. <path
  229. 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"
  230. fill="url(#paint0_linear_87_7796)"
  231. />
  232. <path
  233. 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"
  234. fill="url(#paint1_linear_87_7796)"
  235. />
  236. <path
  237. 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"
  238. fill="url(#paint2_linear_87_7796)"
  239. />
  240. <path
  241. 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"
  242. fill="url(#paint3_linear_87_7796)"
  243. />
  244. </g>
  245. <defs>
  246. <linearGradient
  247. id="paint0_linear_87_7796"
  248. x1="4.42591"
  249. y1="24.6668"
  250. x2="27.2309"
  251. y2="23.2764"
  252. gradientUnits="userSpaceOnUse"
  253. >
  254. <stop stop-color="#2086B8" />
  255. <stop offset="1" stop-color="#46D3F6" />
  256. </linearGradient>
  257. <linearGradient
  258. id="paint1_linear_87_7796"
  259. x1="23.8302"
  260. y1="19.6668"
  261. x2="30.2108"
  262. y2="15.2082"
  263. gradientUnits="userSpaceOnUse"
  264. >
  265. <stop stop-color="#1694DB" />
  266. <stop offset="1" stop-color="#62C3FE" />
  267. </linearGradient>
  268. <linearGradient
  269. id="paint2_linear_87_7796"
  270. x1="8.51037"
  271. y1="7.33333"
  272. x2="23.3335"
  273. y2="15.9348"
  274. gradientUnits="userSpaceOnUse"
  275. >
  276. <stop stop-color="#0D3D78" />
  277. <stop offset="1" stop-color="#063B83" />
  278. </linearGradient>
  279. <linearGradient
  280. id="paint3_linear_87_7796"
  281. x1="-0.340429"
  282. y1="19.9998"
  283. x2="14.5634"
  284. y2="14.4649"
  285. gradientUnits="userSpaceOnUse"
  286. >
  287. <stop stop-color="#16589B" />
  288. <stop offset="1" stop-color="#1464B7" />
  289. </linearGradient>
  290. </defs>
  291. </svg>
  292. <div class="line-clamp-1">{$i18n.t('OneDrive')}</div>
  293. </DropdownMenu.Item>
  294. {/if}
  295. </DropdownMenu.Content>
  296. </div>
  297. </Dropdown>