Menu.svelte 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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 { 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/chat/Tags.svelte';
  10. import { downloadChatAsPDF } from '$lib/apis/utils';
  11. const i18n = getContext('i18n');
  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 onClose: Function = () => {};
  18. const downloadTxt = async () => {
  19. const _chat = chat.chat;
  20. console.log('download', chat);
  21. const chatText = _chat.messages.reduce((a, message, i, arr) => {
  22. return `${a}### ${message.role.toUpperCase()}\n${message.content}\n\n`;
  23. }, '');
  24. let blob = new Blob([chatText], {
  25. type: 'text/plain'
  26. });
  27. saveAs(blob, `chat-${_chat.title}.txt`);
  28. };
  29. const downloadPdf = async () => {
  30. const _chat = chat.chat;
  31. console.log('download', chat);
  32. const blob = await downloadChatAsPDF(_chat);
  33. // Create a URL for the blob
  34. const url = window.URL.createObjectURL(blob);
  35. // Create a link element to trigger the download
  36. const a = document.createElement('a');
  37. a.href = url;
  38. a.download = `chat-${_chat.title}.pdf`;
  39. // Append the link to the body and click it programmatically
  40. document.body.appendChild(a);
  41. a.click();
  42. // Remove the link from the body
  43. document.body.removeChild(a);
  44. // Revoke the URL to release memory
  45. window.URL.revokeObjectURL(url);
  46. };
  47. </script>
  48. <Dropdown
  49. on:change={(e) => {
  50. if (e.detail === false) {
  51. onClose();
  52. }
  53. }}
  54. >
  55. <slot />
  56. <div slot="content">
  57. <DropdownMenu.Content
  58. 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"
  59. sideOffset={8}
  60. side="bottom"
  61. align="end"
  62. transition={flyAndScale}
  63. >
  64. <!-- <DropdownMenu.Item
  65. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer dark:hover:bg-gray-800 rounded-md"
  66. on:click={async () => {
  67. await showSettings.set(!$showSettings);
  68. }}
  69. >
  70. <svg
  71. xmlns="http://www.w3.org/2000/svg"
  72. fill="none"
  73. viewBox="0 0 24 24"
  74. stroke-width="1.5"
  75. stroke="currentColor"
  76. class="size-4"
  77. >
  78. <path
  79. stroke-linecap="round"
  80. stroke-linejoin="round"
  81. 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"
  82. />
  83. <path
  84. stroke-linecap="round"
  85. stroke-linejoin="round"
  86. d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
  87. />
  88. </svg>
  89. <div class="flex items-center">{$i18n.t('Settings')}</div>
  90. </DropdownMenu.Item> -->
  91. <DropdownMenu.Item
  92. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer dark:hover:bg-gray-800 rounded-md"
  93. id="chat-share-button"
  94. on:click={() => {
  95. shareHandler();
  96. }}
  97. >
  98. <svg
  99. xmlns="http://www.w3.org/2000/svg"
  100. viewBox="0 0 24 24"
  101. fill="currentColor"
  102. class="size-4"
  103. >
  104. <path
  105. fill-rule="evenodd"
  106. 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"
  107. clip-rule="evenodd"
  108. />
  109. </svg>
  110. <div class="flex items-center">{$i18n.t('Share')}</div>
  111. </DropdownMenu.Item>
  112. <DropdownMenu.Item
  113. class="flex gap-2 items-center px-3 py-2 text-sm font-medium cursor-pointer"
  114. on:click={() => {
  115. downloadHandler();
  116. }}
  117. />
  118. <DropdownMenu.Sub>
  119. <DropdownMenu.SubTrigger
  120. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer dark:hover:bg-gray-800 rounded-md"
  121. >
  122. <svg
  123. xmlns="http://www.w3.org/2000/svg"
  124. fill="none"
  125. viewBox="0 0 24 24"
  126. stroke-width="1.5"
  127. stroke="currentColor"
  128. class="size-4"
  129. >
  130. <path
  131. stroke-linecap="round"
  132. stroke-linejoin="round"
  133. 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"
  134. />
  135. </svg>
  136. <div class="flex items-center">{$i18n.t('Download')}</div>
  137. </DropdownMenu.SubTrigger>
  138. <DropdownMenu.SubContent
  139. 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"
  140. transition={flyAndScale}
  141. sideOffset={8}
  142. >
  143. <DropdownMenu.Item
  144. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer dark:hover:bg-gray-800 rounded-md"
  145. on:click={() => {
  146. downloadTxt();
  147. }}
  148. >
  149. <div class="flex items-center line-clamp-1">{$i18n.t('Plain text (.txt)')}</div>
  150. </DropdownMenu.Item>
  151. <DropdownMenu.Item
  152. class="flex gap-2 items-center px-3 py-2 text-sm cursor-pointer dark:hover:bg-gray-800 rounded-md"
  153. on:click={() => {
  154. downloadPdf();
  155. }}
  156. >
  157. <div class="flex items-center line-clamp-1">{$i18n.t('PDF document (.pdf)')}</div>
  158. </DropdownMenu.Item>
  159. </DropdownMenu.SubContent>
  160. </DropdownMenu.Sub>
  161. <hr class="border-gray-100 dark:border-gray-800 mt-2.5 mb-1.5" />
  162. <div class="flex p-1">
  163. <Tags chatId={chat.id} />
  164. </div>
  165. </DropdownMenu.Content>
  166. </div>
  167. </Dropdown>