{#if isVideo(upload.mime_type)}
{:else}
{/if}
{upload.uploader_name}
{formatTime(upload.created_at)}
onlike(upload.id)} class="flex items-center gap-1 rounded-full px-2.5 py-1 text-sm transition { upload.liked_by_me ? 'bg-red-50 text-red-600' : 'bg-gray-100 text-gray-600 hover:bg-gray-200' }" >
{upload.like_count}
{#if upload.caption}
{upload.caption}
{/if}
{#if comments.length === 0}
Noch keine Kommentare.
{:else}
{#each comments as comment (comment.id)}
{comment.uploader_name}
{comment.body}
{formatTime(comment.created_at)}
{#if comment.user_id === userId}
deleteComment(comment.id)} class="shrink-0 text-gray-400 hover:text-red-500" aria-label="Löschen" >
{/if}
{/each}
{/if}
{ e.preventDefault(); submitComment(); }} class="flex gap-2 border-t border-gray-100 p-3" >
Senden