{#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 dark:bg-red-950/40 dark:text-red-300' : 'bg-gray-100 text-gray-600 hover:bg-gray-200 dark:bg-gray-800 dark:text-gray-300 dark:hover:bg-gray-700' }" >
{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 dark:text-gray-500 dark:hover:text-red-400" aria-label="Löschen" >
{/if}
{/each}
{/if}
{ e.preventDefault(); submitComment(); }} class="border-t border-gray-100 p-3 dark:border-gray-800" >
Senden
= 450 && newComment.length < COMMENT_MAX} class:dark:text-amber-400={newComment.length >= 450 && newComment.length < COMMENT_MAX} class:text-red-600={newComment.length >= COMMENT_MAX} class:dark:text-red-400={newComment.length >= COMMENT_MAX} > {newComment.length}/{COMMENT_MAX}