Menu.svelte 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <script lang="ts">
  2. import { DropdownMenu } from 'bits-ui';
  3. import fileSaver from 'file-saver';
  4. const { saveAs } = fileSaver;
  5. import { jsPDF } from 'jspdf';
  6. import { showSettings } from '$lib/stores';
  7. import { flyAndScale } from '$lib/utils/transitions';
  8. import Dropdown from '$lib/components/common/Dropdown.svelte';
  9. import Tags from '$lib/components/common/Tags.svelte';
  10. import { WEBUI_BASE_URL } from '$lib/constants';
  11. import { downloadChatAsPDF } from '$lib/apis/utils';
  12. export let shareEnabled: boolean = false;
  13. export let shareHandler: Function;
  14. export let downloadHandler: Function;
  15. // export let tagHandler: Function;
  16. export let chat;
  17. export let tags;
  18. export let deleteTag: Function;
  19. export let addTag: Function;
  20. export let onClose: Function = () => {};
  21. const downloadTxt = async () => {
  22. const _chat = chat.chat;
  23. console.log('download', chat);
  24. const chatText = _chat.messages.reduce((a, message, i, arr) => {
  25. return `${a}### ${message.role.toUpperCase()}\n${message.content}\n\n`;
  26. }, '');
  27. let blob = new Blob([chatText], {
  28. type: 'text/plain'
  29. });
  30. saveAs(blob, `chat-${_chat.title}.txt`);
  31. };
  32. const downloadPdf = async () => {
  33. const _chat = chat.chat;
  34. console.log('download', chat);
  35. const blob = await downloadChatAsPDF(_chat);
  36. // Create a URL for the blob
  37. const url = window.URL.createObjectURL(blob);
  38. // Create a link element to trigger the download
  39. const a = document.createElement('a');
  40. a.href = url;
  41. a.download = `chat-${_chat.title}.pdf`;
  42. // Append the link to the body and click it programmatically
  43. document.body.appendChild(a);
  44. a.click();
  45. // Remove the link from the body
  46. document.body.removeChild(a);
  47. // Revoke the URL to release memory
  48. window.URL.revokeObjectURL(url);
  49. };
  50. </script>
  51. <Dropdown
  52. on:change={(e) => {
  53. if (e.detail === false) {
  54. onClose();
  55. }
  56. }}
  57. >
  58. <slot />
  59. <div slot="content">
  60. <DropdownMenu.Content
  61. class="w-full max-w-[200px] rounded-lg px-1 py-1.5 border border-gray-300/30 dark:border-gray-700/50 z-50 bg-white dark:bg-gray-900 dark:text-white shadow-lg"
  62. sideOffset={8}
  63. side="bottom"
  64. align="end"
  65. transition={flyAndScale}
  66. >
  67. <DropdownMenu.Item
  68. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer dark:hover:bg-gray-850 rounded-md"
  69. on:click={async () => {
  70. await showSettings.set(!$showSettings);
  71. }}
  72. >
  73. <svg
  74. xmlns="http://www.w3.org/2000/svg"
  75. fill="none"
  76. viewBox="0 0 24 24"
  77. stroke-width="1.5"
  78. stroke="currentColor"
  79. class="size-4"
  80. >
  81. <path
  82. stroke-linecap="round"
  83. stroke-linejoin="round"
  84. d="M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87.074.04.147.083.22.127.325.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 0 1 1.37.49l1.296 2.247a1.125 1.125 0 0 1-.26 1.431l-1.003.827c-.293.241-.438.613-.43.992a7.723 7.723 0 0 1 0 .255c-.008.378.137.75.43.991l1.004.827c.424.35.534.955.26 1.43l-1.298 2.247a1.125 1.125 0 0 1-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a6.47 6.47 0 0 1-.22.128c-.331.183-.581.495-.644.869l-.213 1.281c-.09.543-.56.94-1.11.94h-2.594c-.55 0-1.019-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a6.52 6.52 0 0 1-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 0 1-1.369-.49l-1.297-2.247a1.125 1.125 0 0 1 .26-1.431l1.004-.827c.292-.24.437-.613.43-.991a6.932 6.932 0 0 1 0-.255c.007-.38-.138-.751-.43-.992l-1.004-.827a1.125 1.125 0 0 1-.26-1.43l1.297-2.247a1.125 1.125 0 0 1 1.37-.491l1.216.456c.356.133.751.072 1.076-.124.072-.044.146-.086.22-.128.332-.183.582-.495.644-.869l.214-1.28Z"
  85. />
  86. <path
  87. stroke-linecap="round"
  88. stroke-linejoin="round"
  89. d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
  90. />
  91. </svg>
  92. <div class="flex items-center">Settings</div>
  93. </DropdownMenu.Item>
  94. {#if shareEnabled}
  95. <DropdownMenu.Item
  96. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer dark:hover:bg-gray-850 rounded-md"
  97. on:click={() => {
  98. shareHandler();
  99. }}
  100. >
  101. <svg
  102. xmlns="http://www.w3.org/2000/svg"
  103. viewBox="0 0 24 24"
  104. fill="currentColor"
  105. class="size-4"
  106. >
  107. <path
  108. fill-rule="evenodd"
  109. d="M15.75 4.5a3 3 0 1 1 .825 2.066l-8.421 4.679a3.002 3.002 0 0 1 0 1.51l8.421 4.679a3 3 0 1 1-.729 1.31l-8.421-4.678a3 3 0 1 1 0-4.132l8.421-4.679a3 3 0 0 1-.096-.755Z"
  110. clip-rule="evenodd"
  111. />
  112. </svg>
  113. <div class="flex items-center">Share</div>
  114. </DropdownMenu.Item>
  115. <!-- <DropdownMenu.Item
  116. class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer"
  117. on:click={() => {
  118. downloadHandler();
  119. }}
  120. /> -->
  121. <DropdownMenu.Sub>
  122. <DropdownMenu.SubTrigger
  123. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer dark:hover:bg-gray-850 rounded-md"
  124. >
  125. <svg
  126. xmlns="http://www.w3.org/2000/svg"
  127. fill="none"
  128. viewBox="0 0 24 24"
  129. stroke-width="1.5"
  130. stroke="currentColor"
  131. class="size-4"
  132. >
  133. <path
  134. stroke-linecap="round"
  135. stroke-linejoin="round"
  136. d="M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5M16.5 12 12 16.5m0 0L7.5 12m4.5 4.5V3"
  137. />
  138. </svg>
  139. <div class="flex items-center">Download</div>
  140. </DropdownMenu.SubTrigger>
  141. <DropdownMenu.SubContent
  142. class="w-full rounded-lg px-1 py-1.5 border border-gray-300/30 dark:border-gray-700/50 z-50 bg-white dark:bg-gray-900 dark:text-white shadow-lg"
  143. transition={flyAndScale}
  144. sideOffset={8}
  145. >
  146. <DropdownMenu.Item
  147. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer dark:hover:bg-gray-850 rounded-md"
  148. on:click={() => {
  149. downloadTxt();
  150. }}
  151. >
  152. <div class="flex items-center line-clamp-1">Plain text (.txt)</div>
  153. </DropdownMenu.Item>
  154. <DropdownMenu.Item
  155. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer dark:hover:bg-gray-850 rounded-md"
  156. on:click={() => {
  157. downloadPdf();
  158. }}
  159. >
  160. <div class="flex items-center line-clamp-1">PDF document (.pdf)</div>
  161. </DropdownMenu.Item>
  162. </DropdownMenu.SubContent>
  163. </DropdownMenu.Sub>
  164. <hr class="border-gray-100 dark:border-gray-800 mt-2.5 mb-1.5" />
  165. <div class="flex p-1">
  166. <Tags {tags} {deleteTag} {addTag} />
  167. </div>
  168. <!-- <DropdownMenu.Item
  169. class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer"
  170. on:click={() => {
  171. tagHandler();
  172. }}
  173. >
  174. <svg
  175. xmlns="http://www.w3.org/2000/svg"
  176. fill="none"
  177. viewBox="0 0 24 24"
  178. stroke-width="2"
  179. stroke="currentColor"
  180. class="size-4"
  181. >
  182. <path
  183. stroke-linecap="round"
  184. stroke-linejoin="round"
  185. d="M9.568 3H5.25A2.25 2.25 0 0 0 3 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.095 18.095 0 0 0 5.223-5.223c.542-.827.369-1.908-.33-2.607L11.16 3.66A2.25 2.25 0 0 0 9.568 3Z"
  186. />
  187. <path stroke-linecap="round" stroke-linejoin="round" d="M6 6h.008v.008H6V6Z" />
  188. </svg>
  189. <div class="flex items-center">Tag</div>
  190. </DropdownMenu.Item> -->
  191. {/if}
  192. </DropdownMenu.Content>
  193. </div>
  194. </Dropdown>