gallery implementation
This commit is contained in:
parent
5c1a068e2f
commit
c87e0ed7f6
10 changed files with 45 additions and 14 deletions
|
@ -1,6 +1,5 @@
|
||||||
import NextImage, { ImageProps } from 'next/image'
|
import NextImage, { ImageProps } from 'next/image'
|
||||||
import { ItemRef } from 'react-photoswipe-gallery'
|
|
||||||
|
|
||||||
const Image = ({ ...rest }: ImageProps & { ref?: ItemRef }) => <NextImage {...rest} />
|
const Image = ({ ...rest }: ImageProps) => <NextImage {...rest} />
|
||||||
|
|
||||||
export default Image
|
export default Image
|
||||||
|
|
|
@ -4,7 +4,7 @@ import YoutubeVideo from './YouTubeVideo'
|
||||||
const MediaItem = (props) => {
|
const MediaItem = (props) => {
|
||||||
const { type, title, data } = props
|
const { type, title, data } = props
|
||||||
|
|
||||||
if (type !== 'video' && type !== 'photos') return null
|
if ((type !== 'video' && type !== 'photos') || !data) return null
|
||||||
|
|
||||||
const item =
|
const item =
|
||||||
type === 'video' ? (
|
type === 'video' ? (
|
||||||
|
|
|
@ -1,20 +1,43 @@
|
||||||
import 'photoswipe/dist/photoswipe.css'
|
import { useState } from 'react'
|
||||||
import { Gallery, Item } from 'react-photoswipe-gallery'
|
import Lightbox from 'react-image-lightbox'
|
||||||
|
import 'react-image-lightbox/style.css'
|
||||||
import Image from './Image'
|
import Image from './Image'
|
||||||
|
|
||||||
const PhotoGallery = (props) => {
|
const PhotoGallery = (props) => {
|
||||||
const { title, data } = props
|
const { title, data } = props
|
||||||
|
const [isOpen, setIsOpen] = useState(false)
|
||||||
|
const [photoIndex, setPhotoIndex] = useState(0)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Gallery>
|
<div className="flex flex-row gap-2 p-2">
|
||||||
{data.length
|
{data.length
|
||||||
? data.map((d: string) => (
|
? data.map((d: string, index: number) => (
|
||||||
<Item cropped key={d}>
|
<Image
|
||||||
{({ ref, open }) => <Image alt={title} ref={ref} onClick={open} src={d} />}
|
key={d}
|
||||||
</Item>
|
alt={title}
|
||||||
|
onClick={() => {
|
||||||
|
setPhotoIndex(index)
|
||||||
|
setIsOpen(true)
|
||||||
|
}}
|
||||||
|
src={d}
|
||||||
|
className="w-full cursor-pointer object-cover"
|
||||||
|
width="300px"
|
||||||
|
height="300px"
|
||||||
|
/>
|
||||||
))
|
))
|
||||||
: null}
|
: null}
|
||||||
</Gallery>
|
|
||||||
|
{isOpen && (
|
||||||
|
<Lightbox
|
||||||
|
mainSrc={data[photoIndex]}
|
||||||
|
nextSrc={data[(photoIndex + 1) % data.length]}
|
||||||
|
prevSrc={data[(photoIndex + data.length - 1) % data.length]}
|
||||||
|
onCloseRequest={() => setIsOpen(false)}
|
||||||
|
onMovePrevRequest={() => setPhotoIndex((photoIndex + data.length - 1) % data.length)}
|
||||||
|
onMoveNextRequest={() => setPhotoIndex((photoIndex + 1) % data.length)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,19 @@
|
||||||
const mediaData = [
|
const mediaData = [
|
||||||
{
|
{
|
||||||
type: 'video',
|
type: 'video',
|
||||||
title: ' Beatus - live @ Trois-Rivières Metal Fest 2004',
|
title: 'Beatus - live @ Trois-Rivières Metal Fest 2004',
|
||||||
data: 'GC65l2Fo1q8',
|
data: 'GC65l2Fo1q8',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
type: 'photos',
|
||||||
|
title: 'Ashes of Autumn',
|
||||||
|
data: [
|
||||||
|
'/static/images/media/photos/ashes-of-autumn/01.jpg',
|
||||||
|
'/static/images/media/photos/ashes-of-autumn/02.jpg',
|
||||||
|
'/static/images/media/photos/ashes-of-autumn/03.jpg',
|
||||||
|
'/static/images/media/photos/ashes-of-autumn/04.jpg',
|
||||||
|
],
|
||||||
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
export default mediaData
|
export default mediaData
|
||||||
|
|
BIN
package-lock.json
generated
BIN
package-lock.json
generated
Binary file not shown.
|
@ -24,12 +24,10 @@
|
||||||
"mdx-bundler": "^8.0.0",
|
"mdx-bundler": "^8.0.0",
|
||||||
"next": "12.1.0",
|
"next": "12.1.0",
|
||||||
"next-themes": "^0.0.14",
|
"next-themes": "^0.0.14",
|
||||||
"photoswipe": "^5.2.7",
|
|
||||||
"postcss": "^8.4.5",
|
"postcss": "^8.4.5",
|
||||||
"preact": "^10.6.2",
|
"preact": "^10.6.2",
|
||||||
"react": "17.0.2",
|
"react": "17.0.2",
|
||||||
"react-dom": "17.0.2",
|
"react-dom": "17.0.2",
|
||||||
"react-photoswipe-gallery": "^2.2.1",
|
|
||||||
"reading-time": "1.3.0",
|
"reading-time": "1.3.0",
|
||||||
"rehype-autolink-headings": "^6.1.0",
|
"rehype-autolink-headings": "^6.1.0",
|
||||||
"rehype-citation": "^0.2.0",
|
"rehype-citation": "^0.2.0",
|
||||||
|
@ -66,6 +64,7 @@
|
||||||
"next-remote-watch": "^1.0.0",
|
"next-remote-watch": "^1.0.0",
|
||||||
"prettier": "^2.5.1",
|
"prettier": "^2.5.1",
|
||||||
"prettier-plugin-tailwindcss": "^0.1.4",
|
"prettier-plugin-tailwindcss": "^0.1.4",
|
||||||
|
"react-image-lightbox": "^5.1.4",
|
||||||
"socket.io": "^4.4.0",
|
"socket.io": "^4.4.0",
|
||||||
"socket.io-client": "^4.4.0",
|
"socket.io-client": "^4.4.0",
|
||||||
"typescript": "^4.6.1-rc"
|
"typescript": "^4.6.1-rc"
|
||||||
|
|
BIN
public/static/images/media/photos/ashes-of-autumn/01.jpg
Executable file
BIN
public/static/images/media/photos/ashes-of-autumn/01.jpg
Executable file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
BIN
public/static/images/media/photos/ashes-of-autumn/02.jpg
Executable file
BIN
public/static/images/media/photos/ashes-of-autumn/02.jpg
Executable file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
BIN
public/static/images/media/photos/ashes-of-autumn/03.jpg
Executable file
BIN
public/static/images/media/photos/ashes-of-autumn/03.jpg
Executable file
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
BIN
public/static/images/media/photos/ashes-of-autumn/04.jpg
Executable file
BIN
public/static/images/media/photos/ashes-of-autumn/04.jpg
Executable file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
Loading…
Reference in a new issue