ManageModal.svelte 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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 { 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 max-h-[22rem] 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"> {memory.content} </td>
  64. <td class=" px-3 py-1 hidden md:flex h-[2.5rem]">
  65. <div class="my-auto">
  66. {dayjs(memory.created_at * 1000).format($i18n.t('MMMM DD, YYYY'))}
  67. </div>
  68. </td>
  69. <td class="px-3 py-1">
  70. <div class="flex justify-end w-full">
  71. <Tooltip content="Delete">
  72. <button
  73. class="self-center w-fit text-sm px-2 py-2 hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
  74. on:click={async () => {
  75. const res = await deleteMemoryById(
  76. localStorage.token,
  77. memory.id
  78. ).catch((error) => {
  79. toast.error(error);
  80. return null;
  81. });
  82. if (res) {
  83. toast.success('Memory deleted successfully');
  84. memories = await getMemories(localStorage.token);
  85. }
  86. }}
  87. >
  88. <svg
  89. xmlns="http://www.w3.org/2000/svg"
  90. fill="none"
  91. viewBox="0 0 24 24"
  92. stroke-width="1.5"
  93. stroke="currentColor"
  94. class="w-4 h-4"
  95. >
  96. <path
  97. stroke-linecap="round"
  98. stroke-linejoin="round"
  99. 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"
  100. />
  101. </svg>
  102. </button>
  103. </Tooltip>
  104. </div>
  105. </td>
  106. </tr>
  107. {/each}
  108. </tbody>
  109. </table>
  110. </div>
  111. </div>
  112. {:else}
  113. <div class="text-center flex h-full text-sm w-full">
  114. <div class=" my-auto pb-10 px-4 w-full text-gray-500">
  115. {$i18n.t('Memories accessible by LLMs will be shown here.')}
  116. </div>
  117. </div>
  118. {/if}
  119. </div>
  120. <div class="flex text-sm font-medium gap-1.5">
  121. <button
  122. 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"
  123. on:click={() => {
  124. showAddMemoryModal = true;
  125. }}>Add memory</button
  126. >
  127. <!-- <button
  128. 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"
  129. >Clear memory</button
  130. > -->
  131. </div>
  132. </div>
  133. </div>
  134. </Modal>
  135. <AddMemoryModal
  136. bind:show={showAddMemoryModal}
  137. on:save={async () => {
  138. memories = await getMemories(localStorage.token);
  139. }}
  140. />