Spaces:
Build error
Build error
| <script lang="ts"> | |
| import { getContext } from 'svelte'; | |
| import Tooltip from '$lib/components/common/Tooltip.svelte'; | |
| import GarbageBin from '$lib/components/icons/GarbageBin.svelte'; | |
| import EditPencil from '$lib/components/icons/EditPencil.svelte'; | |
| import ArrowForward from '$lib/components/icons/ArrowForward.svelte'; | |
| const i18n = getContext('i18n'); | |
| export let id: string; | |
| export let content: string; | |
| export let onSendNow: (id: string) => void; | |
| export let onEdit: (id: string) => void; | |
| export let onDelete: (id: string) => void; | |
| </script> | |
| <div class="flex items-center gap-2 px-2 py-1.5"> | |
| <!-- Arrow forward icon --> | |
| <div class="shrink-0 text-gray-500"> | |
| <ArrowForward className="size-3.5" /> | |
| </div> | |
| <!-- Message content --> | |
| <div class="flex-1 min-w-0"> | |
| <p class="text-sm text-gray-300 truncate">{content}</p> | |
| </div> | |
| <!-- Actions --> | |
| <div class="flex items-center gap-1 shrink-0"> | |
| <!-- Send immediately --> | |
| <Tooltip content={$i18n.t('Send now')}> | |
| <button | |
| type="button" | |
| class="p-1 text-gray-500 hover:text-gray-300 transition-colors" | |
| on:click={() => onSendNow(id)} | |
| aria-label={$i18n.t('Send now')} | |
| > | |
| <svg | |
| xmlns="http://www.w3.org/2000/svg" | |
| fill="none" | |
| viewBox="0 0 24 24" | |
| stroke-width="1.5" | |
| stroke="currentColor" | |
| class="size-3.5" | |
| > | |
| <path | |
| stroke-linecap="round" | |
| stroke-linejoin="round" | |
| d="M4.5 10.5 12 3m0 0 7.5 7.5M12 3v18" | |
| /> | |
| </svg> | |
| </button> | |
| </Tooltip> | |
| <!-- Edit --> | |
| <Tooltip content={$i18n.t('Edit')}> | |
| <button | |
| type="button" | |
| class="p-1 text-gray-500 hover:text-gray-300 transition-colors" | |
| on:click={() => onEdit(id)} | |
| aria-label={$i18n.t('Edit')} | |
| > | |
| <EditPencil className="size-3.5" /> | |
| </button> | |
| </Tooltip> | |
| <!-- Delete --> | |
| <Tooltip content={$i18n.t('Delete')}> | |
| <button | |
| type="button" | |
| class="p-1 text-gray-500 hover:text-gray-300 transition-colors" | |
| on:click={() => onDelete(id)} | |
| aria-label={$i18n.t('Delete')} | |
| > | |
| <GarbageBin className="size-3.5" /> | |
| </button> | |
| </Tooltip> | |
| </div> | |
| </div> | |