+page.svelte 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <script>
  2. import toast from 'svelte-french-toast';
  3. import { goto } from '$app/navigation';
  4. import { prompts } from '$lib/stores';
  5. import { onMount, tick } from 'svelte';
  6. import { getPrompts, updatePromptByCommand } from '$lib/apis/prompts';
  7. import { page } from '$app/stores';
  8. let loading = false;
  9. // ///////////
  10. // Prompt
  11. // ///////////
  12. let title = '';
  13. let command = '';
  14. let content = '';
  15. const updateHandler = async () => {
  16. loading = true;
  17. if (validateCommandString(command)) {
  18. const prompt = await updatePromptByCommand(localStorage.token, command, title, content).catch(
  19. (error) => {
  20. toast.error(error);
  21. return null;
  22. }
  23. );
  24. if (prompt) {
  25. await prompts.set(await getPrompts(localStorage.token));
  26. await goto('/prompts');
  27. }
  28. } else {
  29. toast.error('Only alphanumeric characters and hyphens are allowed in the command string.');
  30. }
  31. loading = false;
  32. };
  33. const validateCommandString = (inputString) => {
  34. // Regular expression to match only alphanumeric characters and hyphen
  35. const regex = /^[a-zA-Z0-9-]+$/;
  36. // Test the input string against the regular expression
  37. return regex.test(inputString);
  38. };
  39. onMount(async () => {
  40. command = $page.url.searchParams.get('command');
  41. if (command) {
  42. const prompt = $prompts.filter((prompt) => prompt.command === command).at(0);
  43. if (prompt) {
  44. console.log(prompt);
  45. console.log(prompt.command);
  46. title = prompt.title;
  47. await tick();
  48. command = prompt.command.slice(1);
  49. content = prompt.content;
  50. } else {
  51. goto('/prompts');
  52. }
  53. } else {
  54. goto('/prompts');
  55. }
  56. });
  57. </script>
  58. <div class="min-h-screen w-full flex justify-center dark:text-white">
  59. <div class=" py-2.5 flex flex-col justify-between w-full">
  60. <div class="max-w-2xl mx-auto w-full px-3 md:px-0 my-10">
  61. <div class=" text-2xl font-semibold mb-6">My Prompts</div>
  62. <button
  63. class="flex space-x-1"
  64. on:click={() => {
  65. history.back();
  66. }}
  67. >
  68. <div class=" self-center">
  69. <svg
  70. xmlns="http://www.w3.org/2000/svg"
  71. viewBox="0 0 20 20"
  72. fill="currentColor"
  73. class="w-4 h-4"
  74. >
  75. <path
  76. fill-rule="evenodd"
  77. d="M17 10a.75.75 0 01-.75.75H5.612l4.158 3.96a.75.75 0 11-1.04 1.08l-5.5-5.25a.75.75 0 010-1.08l5.5-5.25a.75.75 0 111.04 1.08L5.612 9.25H16.25A.75.75 0 0117 10z"
  78. clip-rule="evenodd"
  79. />
  80. </svg>
  81. </div>
  82. <div class=" self-center font-medium text-sm">Back</div>
  83. </button>
  84. <hr class="my-3 dark:border-gray-700" />
  85. <form
  86. class="flex flex-col"
  87. on:submit|preventDefault={() => {
  88. updateHandler();
  89. }}
  90. >
  91. <div class="my-2">
  92. <div class=" text-sm font-semibold mb-2">Title*</div>
  93. <div>
  94. <input
  95. class="px-3 py-1.5 text-sm w-full bg-transparent border dark:border-gray-600 outline-none rounded-lg"
  96. placeholder="Add a short title for this prompt"
  97. bind:value={title}
  98. required
  99. />
  100. </div>
  101. </div>
  102. <div class="my-2">
  103. <div class=" text-sm font-semibold mb-2">Command*</div>
  104. <div class="flex items-center mb-1">
  105. <div
  106. class="bg-gray-200 dark:bg-gray-600 font-bold px-3 py-1 border border-r-0 dark:border-gray-600 rounded-l-lg"
  107. >
  108. /
  109. </div>
  110. <input
  111. class="px-3 py-1.5 text-sm w-full bg-transparent border disabled:text-gray-500 dark:border-gray-600 outline-none rounded-r-lg"
  112. placeholder="short-summary"
  113. bind:value={command}
  114. disabled
  115. required
  116. />
  117. </div>
  118. <div class="text-xs text-gray-400 dark:text-gray-500">
  119. Only <span class=" text-gray-600 dark:text-gray-300 font-medium"
  120. >alphanumeric characters and hyphens</span
  121. >
  122. are allowed; Activate this command by typing "<span
  123. class=" text-gray-600 dark:text-gray-300 font-medium"
  124. >
  125. /{command}
  126. </span>" to chat input.
  127. </div>
  128. </div>
  129. <div class="my-2">
  130. <div class="flex w-full justify-between">
  131. <div class=" self-center text-sm font-semibold">Prompt Content*</div>
  132. </div>
  133. <div class="mt-2">
  134. <div>
  135. <textarea
  136. class="px-3 py-1.5 text-sm w-full bg-transparent border dark:border-gray-600 outline-none rounded-lg"
  137. placeholder={`Write a summary in 50 words that summarizes [topic or keyword].`}
  138. rows="6"
  139. bind:value={content}
  140. required
  141. />
  142. </div>
  143. <div class="text-xs text-gray-400 dark:text-gray-500">
  144. Format your variables using square brackets like this: <span
  145. class=" text-gray-600 dark:text-gray-300 font-medium">[variable]</span
  146. >
  147. . Make sure to enclose them with
  148. <span class=" text-gray-600 dark:text-gray-300 font-medium">'['</span>
  149. and <span class=" text-gray-600 dark:text-gray-300 font-medium">']'</span> .
  150. </div>
  151. </div>
  152. </div>
  153. <div class="my-2 flex justify-end">
  154. <button
  155. class=" text-sm px-3 py-2 transition rounded-xl {loading
  156. ? ' cursor-not-allowed bg-gray-100 dark:bg-gray-800'
  157. : ' bg-gray-50 hover:bg-gray-100 dark:bg-gray-700 dark:hover:bg-gray-800'} flex"
  158. type="submit"
  159. disabled={loading}
  160. >
  161. <div class=" self-center font-medium">Save & Update</div>
  162. {#if loading}
  163. <div class="ml-1.5 self-center">
  164. <svg
  165. class=" w-4 h-4"
  166. viewBox="0 0 24 24"
  167. fill="currentColor"
  168. xmlns="http://www.w3.org/2000/svg"
  169. ><style>
  170. .spinner_ajPY {
  171. transform-origin: center;
  172. animation: spinner_AtaB 0.75s infinite linear;
  173. }
  174. @keyframes spinner_AtaB {
  175. 100% {
  176. transform: rotate(360deg);
  177. }
  178. }
  179. </style><path
  180. d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z"
  181. opacity=".25"
  182. /><path
  183. d="M10.14,1.16a11,11,0,0,0-9,8.92A1.59,1.59,0,0,0,2.46,12,1.52,1.52,0,0,0,4.11,10.7a8,8,0,0,1,6.66-6.61A1.42,1.42,0,0,0,12,2.69h0A1.57,1.57,0,0,0,10.14,1.16Z"
  184. class="spinner_ajPY"
  185. /></svg
  186. >
  187. </div>
  188. {/if}
  189. </button>
  190. </div>
  191. </form>
  192. </div>
  193. </div>
  194. </div>