fix: improve Cloudinary URL handling and admin navigation
- Fix extractPublicId to handle encoded URLs correctly - Update admin media page to use goto for client-side navigation - Add color display to media details modal - Include color data in media API responses - Clean up unused imports in audit page 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
a8978373e0
commit
27dbdd43c0
5 changed files with 40 additions and 13 deletions
|
|
@ -309,6 +309,21 @@
|
|||
<span class="value">{media.width} × {media.height}px</span>
|
||||
</div>
|
||||
{/if}
|
||||
{#if media.dominantColor}
|
||||
<div class="info-item">
|
||||
<span class="label">Dominant Color</span>
|
||||
<span class="value color-value">
|
||||
<span
|
||||
class="color-swatch"
|
||||
style="background-color: {media.dominantColor}"
|
||||
title={media.dominantColor}
|
||||
></span>
|
||||
{media.dominantColor}
|
||||
</span>
|
||||
</div>
|
||||
{:else}
|
||||
<!-- Debug: dominantColor = {JSON.stringify(media.dominantColor)} -->
|
||||
{/if}
|
||||
<div class="info-item">
|
||||
<span class="label">Uploaded</span>
|
||||
<span class="value">{new Date(media.createdAt).toLocaleDateString()}</span>
|
||||
|
|
@ -625,8 +640,23 @@
|
|||
font-size: 0.875rem;
|
||||
color: $grey-10;
|
||||
font-weight: 500;
|
||||
|
||||
&.color-value {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: $unit-2x;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.color-swatch {
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-radius: 4px;
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
:global(.btn.btn-ghost.exif-toggle) {
|
||||
margin-top: $unit-2x;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
<script lang="ts">
|
||||
import { onMount } from 'svelte'
|
||||
import { goto } from '$app/navigation'
|
||||
import AdminPage from '$lib/components/admin/AdminPage.svelte'
|
||||
import AdminHeader from '$lib/components/admin/AdminHeader.svelte'
|
||||
import AdminFilters from '$lib/components/admin/AdminFilters.svelte'
|
||||
|
|
@ -195,7 +196,7 @@
|
|||
}
|
||||
|
||||
function handleAuditStorage() {
|
||||
window.location.href = '/admin/media/audit'
|
||||
goto('/admin/media/audit')
|
||||
}
|
||||
|
||||
$effect(() => {
|
||||
|
|
@ -391,6 +392,9 @@
|
|||
<DropdownItem onclick={handleAuditStorage}>
|
||||
Audit Storage
|
||||
</DropdownItem>
|
||||
<DropdownItem onclick={() => goto('/admin/media/regenerate')}>
|
||||
Regenerate Cloudinary
|
||||
</DropdownItem>
|
||||
</DropdownMenuContainer>
|
||||
{/if}
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -51,7 +51,6 @@
|
|||
.filter((f) => selectedFiles.has(f.publicId))
|
||||
.reduce((sum, f) => sum + f.size, 0) || 0
|
||||
|
||||
$: console.log('Reactive state:', { hasSelection, selectedFilesSize: selectedFiles.size, deleting, showDeleteModal, showCleanupModal })
|
||||
|
||||
onMount(() => {
|
||||
runAudit()
|
||||
|
|
@ -97,18 +96,15 @@
|
|||
}
|
||||
|
||||
function toggleFile(publicId: string) {
|
||||
console.log('toggleFile called', publicId)
|
||||
if (selectedFiles.has(publicId)) {
|
||||
selectedFiles.delete(publicId)
|
||||
} else {
|
||||
selectedFiles.add(publicId)
|
||||
}
|
||||
selectedFiles = selectedFiles // Trigger reactivity
|
||||
console.log('selectedFiles after toggle:', Array.from(selectedFiles))
|
||||
}
|
||||
|
||||
async function deleteSelected(dryRun = true) {
|
||||
console.log('deleteSelected called', { dryRun, hasSelection, deleting, selectedFiles: Array.from(selectedFiles) })
|
||||
if (!hasSelection || deleting) return
|
||||
|
||||
if (!dryRun) {
|
||||
|
|
@ -302,7 +298,6 @@
|
|||
variant="danger"
|
||||
buttonSize="small"
|
||||
onclick={() => {
|
||||
console.log('Delete Selected clicked', { hasSelection, deleting, selectedFiles: Array.from(selectedFiles) })
|
||||
showDeleteModal = true
|
||||
}}
|
||||
disabled={!hasSelection || deleting}
|
||||
|
|
@ -405,7 +400,6 @@
|
|||
variant="secondary"
|
||||
buttonSize="small"
|
||||
onclick={() => {
|
||||
console.log('Clean Up Broken References clicked', { cleaningUp, missingReferencesCount: auditData?.missingReferences.length })
|
||||
showCleanupModal = true
|
||||
}}
|
||||
disabled={cleaningUp}
|
||||
|
|
@ -444,11 +438,9 @@
|
|||
</div>
|
||||
<div class="modal-actions">
|
||||
<Button variant="secondary" onclick={() => {
|
||||
console.log('Cancel clicked')
|
||||
showDeleteModal = false
|
||||
}}>Cancel</Button>
|
||||
<Button variant="danger" onclick={() => {
|
||||
console.log('Delete Files clicked')
|
||||
deleteSelected(false)
|
||||
}} disabled={deleting}>
|
||||
{deleting ? 'Deleting...' : 'Delete Files'}
|
||||
|
|
@ -476,11 +468,9 @@
|
|||
</div>
|
||||
<div class="modal-actions">
|
||||
<Button variant="secondary" onclick={() => {
|
||||
console.log('Cancel cleanup clicked')
|
||||
showCleanupModal = false
|
||||
}}>Cancel</Button>
|
||||
<Button variant="danger" onclick={() => {
|
||||
console.log('Clean Up References clicked')
|
||||
cleanupBrokenReferences()
|
||||
}} disabled={cleaningUp}>
|
||||
{cleaningUp ? 'Cleaning Up...' : 'Clean Up References'}
|
||||
|
|
|
|||
|
|
@ -179,6 +179,9 @@ export const GET: RequestHandler = async (event) => {
|
|||
thumbnailUrl: true,
|
||||
width: true,
|
||||
height: true,
|
||||
dominantColor: true,
|
||||
colors: true,
|
||||
aspectRatio: true,
|
||||
usedIn: true,
|
||||
isPhotography: true,
|
||||
createdAt: true,
|
||||
|
|
|
|||
|
|
@ -23,8 +23,8 @@ export const GET: RequestHandler = async (event) => {
|
|||
id: true,
|
||||
filename: true,
|
||||
url: true,
|
||||
altText: true,
|
||||
description: true,
|
||||
dominantColor: true,
|
||||
isPhotography: true
|
||||
}
|
||||
})
|
||||
|
|
@ -41,8 +41,8 @@ export const GET: RequestHandler = async (event) => {
|
|||
id: media.id,
|
||||
filename: media.filename,
|
||||
url: media.url,
|
||||
altText: media.altText,
|
||||
description: media.description,
|
||||
dominantColor: media.dominantColor,
|
||||
isPhotography: media.isPhotography
|
||||
},
|
||||
usage: usage,
|
||||
|
|
|
|||
Loading…
Reference in a new issue