ui:big ui overhaul

Improved dev experience by foldering components per feature. Improved
the ui of the notification mangager to be more consistent with overall
ui.
This commit is contained in:
2025-11-21 14:37:09 +01:00
parent 84f3d0bdb9
commit 63b3e5112b
36 changed files with 723 additions and 632 deletions

View File

@@ -178,9 +178,10 @@ export const GET: RequestHandler = async ({ url, locals }) => {
findMedia.map(async (mediaItem) => {
// URLs in database are now paths, generate local proxy URLs
const localUrl = getLocalR2Url(mediaItem.url);
const localThumbnailUrl = mediaItem.thumbnailUrl && !mediaItem.thumbnailUrl.startsWith('/')
? getLocalR2Url(mediaItem.thumbnailUrl)
: mediaItem.thumbnailUrl; // Keep static placeholder paths as-is
const localThumbnailUrl =
mediaItem.thumbnailUrl && !mediaItem.thumbnailUrl.startsWith('/')
? getLocalR2Url(mediaItem.thumbnailUrl)
: mediaItem.thumbnailUrl; // Keep static placeholder paths as-is
return {
...mediaItem,