ManageModal.svelte 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <script lang="ts">
  2. import { toast } from 'svelte-sonner';
  3. import dayjs from 'dayjs';
  4. import { getContext, createEventDispatcher } from 'svelte';
  5. const dispatch = createEventDispatcher();
  6. import Modal from '$lib/components/common/Modal.svelte';
  7. import AddMemoryModal from './AddMemoryModal.svelte';
  8. import { deleteMemoriesByUserId, deleteMemoryById, getMemories } from '$lib/apis/memories';
  9. import Tooltip from '$lib/components/common/Tooltip.svelte';
  10. import { error } from '@sveltejs/kit';
  11. const i18n = getContext('i18n');
  12. export let show = false;
  13. let memories = [];
  14. let showAddMemoryModal = false;
  15. $: if (show) {
  16. (async () => {
  17. memories = await getMemories(localStorage.token);
  18. })();
  19. }
  20. </script>
  21. <Modal size="xl" bind:show>
  22. <div>
  23. <div class=" flex justify-between dark:text-gray-300 px-5 pt-4 pb-1">
  24. <div class=" text-lg font-medium self-center">{$i18n.t('Memory')}</div>
  25. <button
  26. class="self-center"
  27. on:click={() => {
  28. show = false;
  29. }}
  30. >
  31. <svg
  32. xmlns="http://www.w3.org/2000/svg"
  33. viewBox="0 0 20 20"
  34. fill="currentColor"
  35. class="w-5 h-5"
  36. >
  37. <path
  38. d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"
  39. />
  40. </svg>
  41. </button>
  42. </div>
  43. <div class="flex flex-col w-full px-5 pb-5 dark:text-gray-200">
  44. <div
  45. class=" flex flex-col w-full sm:flex-row sm:justify-center sm:space-x-6 h-[28rem] max-h-screen outline outline-1 rounded-xl outline-gray-100 dark:outline-gray-800 mb-4 mt-1"
  46. >
  47. {#if memories.length > 0}
  48. <div class="text-left text-sm w-full mb-4 overflow-y-scroll">
  49. <div class="relative overflow-x-auto">
  50. <table class="w-full text-sm text-left text-gray-600 dark:text-gray-400 table-auto">
  51. <thead
  52. class="text-xs text-gray-700 uppercase bg-transparent dark:text-gray-200 border-b-2 dark:border-gray-800"
  53. >
  54. <tr>
  55. <th scope="col" class="px-3 py-2"> {$i18n.t('Name')} </th>
  56. <th scope="col" class="px-3 py-2 hidden md:flex"> {$i18n.t('Created At')} </th>
  57. <th scope="col" class="px-3 py-2 text-right" />
  58. </tr>
  59. </thead>
  60. <tbody>
  61. {#each memories as memory}
  62. <tr class="border-b dark:border-gray-800 items-center">
  63. <td class="px-3 py-1">
  64. <div class="line-clamp-1">
  65. {memory.content}
  66. </div>
  67. </td>
  68. <td class=" px-3 py-1 hidden md:flex h-[2.5rem]">
  69. <div class="my-auto whitespace-nowrap">
  70. {dayjs(memory.created_at * 1000).format($i18n.t('MMMM DD, YYYY'))}
  71. </div>
  72. </td>
  73. <td class="px-3 py-1">
  74. <div class="flex justify-end w-full">
  75. <Tooltip content="Delete">
  76. <button
  77. class="self-center w-fit text-sm px-2 py-2 hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
  78. on:click={async () => {
  79. const res = await deleteMemoryById(
  80. localStorage.token,
  81. memory.id
  82. ).catch((error) => {
  83. toast.error(error);
  84. return null;
  85. });
  86. if (res) {
  87. toast.success('Memory deleted successfully');
  88. memories = await getMemories(localStorage.token);
  89. }
  90. }}
  91. >
  92. <svg
  93. xmlns="http://www.w3.org/2000/svg"
  94. fill="none"
  95. viewBox="0 0 24 24"
  96. stroke-width="1.5"
  97. stroke="currentColor"
  98. class="w-4 h-4"
  99. >
  100. <path
  101. stroke-linecap="round"
  102. stroke-linejoin="round"
  103. d="m14.74 9-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 0 1-2.244 2.077H8.084a2.25 2.25 0 0 1-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 0 0-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 0 1 3.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 0 0-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 0 0-7.5 0"
  104. />
  105. </svg>
  106. </button>
  107. </Tooltip>
  108. </div>
  109. </td>
  110. </tr>
  111. {/each}
  112. </tbody>
  113. </table>
  114. </div>
  115. </div>
  116. {:else}
  117. <div class="text-center flex h-full text-sm w-full">
  118. <div class=" my-auto pb-10 px-4 w-full text-gray-500">
  119. {$i18n.t('Memories accessible by LLMs will be shown here.')}
  120. </div>
  121. </div>
  122. {/if}
  123. </div>
  124. <div class="flex text-sm font-medium gap-1.5">
  125. <button
  126. class=" px-3.5 py-1.5 font-medium hover:bg-black/5 dark:hover:bg-white/5 outline outline-1 outline-gray-300 dark:outline-gray-800 rounded-3xl"
  127. on:click={() => {
  128. showAddMemoryModal = true;
  129. }}>Add memory</button
  130. >
  131. <button
  132. class=" px-3.5 py-1.5 font-medium text-red-500 hover:bg-black/5 dark:hover:bg-white/5 outline outline-1 outline-red-300 dark:outline-red-800 rounded-3xl"
  133. on:click={async () => {
  134. const res = await deleteMemoriesByUserId(localStorage.token).catch((error) => {
  135. toast.error(error);
  136. return null;
  137. });
  138. if (res) {
  139. toast.success('Memory cleared successfully');
  140. memories = [];
  141. }
  142. }}>Clear memory</button
  143. >
  144. </div>
  145. </div>
  146. </div>
  147. </Modal>
  148. <AddMemoryModal
  149. bind:show={showAddMemoryModal}
  150. on:save={async () => {
  151. memories = await getMemories(localStorage.token);
  152. }}
  153. />