{formData.title || 'Untitled Album'}

(activeTab = value)} />
{#if !isLoading} {/if}
{#if isLoading}
Loading album...
{:else}

Photos {albumMedia.length > 0 || pendingMediaIds.length > 0 ? `(${mode === 'edit' ? albumMedia.length : pendingMediaIds.length})` : ''}

{#if mode === 'edit' && albumMedia.length > 0}
{#each albumMedia as item}
{/each}
{:else if mode === 'create' && pendingMediaIds.length > 0}

{pendingMediaIds.length} photo{pendingMediaIds.length !== 1 ? 's' : ''} selected. They will be added when you save the album.

{:else}

No photos {mode === 'create' ? 'selected' : 'added'} yet. Click "{mode === 'create' ? 'Select Photos' : 'Manage Photos'}" to {mode === 'create' ? 'select' : 'add'} photos.

{/if}
{/if}