Menu.svelte 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <script lang="ts">
  2. import { DropdownMenu } from 'bits-ui';
  3. import { getContext } from 'svelte';
  4. import fileSaver from 'file-saver';
  5. const { saveAs } = fileSaver;
  6. import { downloadChatAsPDF } from '$lib/apis/utils';
  7. import { copyToClipboard } from '$lib/utils';
  8. import { showOverview, showControls } from '$lib/stores';
  9. import { flyAndScale } from '$lib/utils/transitions';
  10. import Dropdown from '$lib/components/common/Dropdown.svelte';
  11. import Tags from '$lib/components/chat/Tags.svelte';
  12. import Map from '$lib/components/icons/Map.svelte';
  13. import { get } from 'svelte/store';
  14. import Clipboard from '$lib/components/icons/Clipboard.svelte';
  15. const i18n = getContext('i18n');
  16. export let shareEnabled: boolean = false;
  17. export let shareHandler: Function;
  18. export let downloadHandler: Function;
  19. // export let tagHandler: Function;
  20. export let chat;
  21. export let onClose: Function = () => {};
  22. const getChatAsText = async () => {
  23. const _chat = chat.chat;
  24. const chatText = _chat.messages.reduce((a, message, i, arr) => {
  25. return `${a}### ${message.role.toUpperCase()}\n${message.content}\n\n`;
  26. }, '');
  27. return chatText.trim();
  28. };
  29. const downloadTxt = async () => {
  30. const chatText = await getChatAsText();
  31. let blob = new Blob([chatText], {
  32. type: 'text/plain'
  33. });
  34. saveAs(blob, `chat-${_chat.title}.txt`);
  35. };
  36. const downloadPdf = async () => {
  37. const _chat = chat.chat;
  38. console.log('download', chat);
  39. const blob = await downloadChatAsPDF(_chat);
  40. // Create a URL for the blob
  41. const url = window.URL.createObjectURL(blob);
  42. // Create a link element to trigger the download
  43. const a = document.createElement('a');
  44. a.href = url;
  45. a.download = `chat-${_chat.title}.pdf`;
  46. // Append the link to the body and click it programmatically
  47. document.body.appendChild(a);
  48. a.click();
  49. // Remove the link from the body
  50. document.body.removeChild(a);
  51. // Revoke the URL to release memory
  52. window.URL.revokeObjectURL(url);
  53. };
  54. const downloadJSONExport = async () => {
  55. let blob = new Blob([JSON.stringify([chat])], {
  56. type: 'application/json'
  57. });
  58. saveAs(blob, `chat-export-${Date.now()}.json`);
  59. };
  60. </script>
  61. <Dropdown
  62. on:change={(e) => {
  63. if (e.detail === false) {
  64. onClose();
  65. }
  66. }}
  67. >
  68. <slot />
  69. <div slot="content">
  70. <DropdownMenu.Content
  71. class="w-full max-w-[200px] rounded-xl px-1 py-1.5 border border-gray-300/30 dark:border-gray-700/50 z-50 bg-white dark:bg-gray-850 dark:text-white shadow-lg"
  72. sideOffset={8}
  73. side="bottom"
  74. align="end"
  75. transition={flyAndScale}
  76. >
  77. <!-- <DropdownMenu.Item
  78. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer dark:hover:bg-gray-800 rounded-md"
  79. on:click={async () => {
  80. await showSettings.set(!$showSettings);
  81. }}
  82. >
  83. <svg
  84. xmlns="http://www.w3.org/2000/svg"
  85. fill="none"
  86. viewBox="0 0 24 24"
  87. stroke-width="1.5"
  88. stroke="currentColor"
  89. class="size-4"
  90. >
  91. <path
  92. stroke-linecap="round"
  93. stroke-linejoin="round"
  94. 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"
  95. />
  96. <path
  97. stroke-linecap="round"
  98. stroke-linejoin="round"
  99. d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
  100. />
  101. </svg>
  102. <div class="flex items-center">{$i18n.t('Settings')}</div>
  103. </DropdownMenu.Item> -->
  104. <DropdownMenu.Item
  105. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-md"
  106. id="chat-overview-button"
  107. on:click={async () => {
  108. await showControls.set(true);
  109. await showOverview.set(true);
  110. }}
  111. >
  112. <Map className=" size-4" strokeWidth="1.5" />
  113. <div class="flex items-center">{$i18n.t('Overview')}</div>
  114. </DropdownMenu.Item>
  115. <DropdownMenu.Item
  116. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-md"
  117. id="chat-copy-button"
  118. on:click={async () => {
  119. await copyToClipboard(await getChatAsText()).catch((e) => {
  120. console.error(e);
  121. });
  122. }}
  123. >
  124. <Clipboard className=" size-4" strokeWidth="1.5" />
  125. <div class="flex items-center">{$i18n.t('Copy')}</div>
  126. </DropdownMenu.Item>
  127. <DropdownMenu.Item
  128. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-md"
  129. id="chat-share-button"
  130. on:click={() => {
  131. shareHandler();
  132. }}
  133. >
  134. <svg
  135. xmlns="http://www.w3.org/2000/svg"
  136. viewBox="0 0 24 24"
  137. fill="currentColor"
  138. class="size-4"
  139. >
  140. <path
  141. fill-rule="evenodd"
  142. 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"
  143. clip-rule="evenodd"
  144. />
  145. </svg>
  146. <div class="flex items-center">{$i18n.t('Share')}</div>
  147. </DropdownMenu.Item>
  148. <DropdownMenu.Sub>
  149. <DropdownMenu.SubTrigger
  150. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-md"
  151. >
  152. <svg
  153. xmlns="http://www.w3.org/2000/svg"
  154. fill="none"
  155. viewBox="0 0 24 24"
  156. stroke-width="1.5"
  157. stroke="currentColor"
  158. class="size-4"
  159. >
  160. <path
  161. stroke-linecap="round"
  162. stroke-linejoin="round"
  163. 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"
  164. />
  165. </svg>
  166. <div class="flex items-center">{$i18n.t('Download')}</div>
  167. </DropdownMenu.SubTrigger>
  168. <DropdownMenu.SubContent
  169. 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-850 dark:text-white shadow-lg"
  170. transition={flyAndScale}
  171. sideOffset={8}
  172. >
  173. <DropdownMenu.Item
  174. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-md"
  175. on:click={() => {
  176. downloadJSONExport();
  177. }}
  178. >
  179. <div class="flex items-center line-clamp-1">{$i18n.t('Export chat (.json)')}</div>
  180. </DropdownMenu.Item>
  181. <DropdownMenu.Item
  182. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-md"
  183. on:click={() => {
  184. downloadTxt();
  185. }}
  186. >
  187. <div class="flex items-center line-clamp-1">{$i18n.t('Plain text (.txt)')}</div>
  188. </DropdownMenu.Item>
  189. <DropdownMenu.Item
  190. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-md"
  191. on:click={() => {
  192. downloadPdf();
  193. }}
  194. >
  195. <div class="flex items-center line-clamp-1">{$i18n.t('PDF document (.pdf)')}</div>
  196. </DropdownMenu.Item>
  197. </DropdownMenu.SubContent>
  198. </DropdownMenu.Sub>
  199. <hr class="border-gray-100 dark:border-gray-800 mt-2.5 mb-1.5" />
  200. <div class="flex p-1">
  201. <Tags chatId={chat.id} />
  202. </div>
  203. </DropdownMenu.Content>
  204. </div>
  205. </Dropdown>