Implement photo thumbnails
This implements generating image thumbnails on the fly via ImageMagick WASM, and tells the browser to cache them for a week, making the loading of photo directories much faster when it has many large images. Closes #12
This commit is contained in:
@@ -48,7 +48,7 @@ export default function ListPhotos(
|
||||
{isImage
|
||||
? (
|
||||
<img
|
||||
src={`/files/open/${file.file_name}?path=${file.parent_path}`}
|
||||
src={`/photos/thumbnail/${file.file_name}?path=${file.parent_path}`}
|
||||
class='h-auto max-w-full rounded-md'
|
||||
alt={file.file_name}
|
||||
title={file.file_name}
|
||||
|
||||
Reference in New Issue
Block a user