File size: 2,083 Bytes
f1f8449 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | <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>
|