Whalebird-desktop-client-ma.../renderer/components/timelines/status/Media.tsx

65 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-11-03 15:02:48 +01:00
import { Entity } from 'megalodon'
2023-11-26 16:54:29 +01:00
import { useState } from 'react'
import { Blurhash } from 'react-blurhash'
import { FaEyeSlash } from 'react-icons/fa6'
import { FormattedMessage } from 'react-intl'
2023-11-03 15:02:48 +01:00
type Props = {
media: Array<Entity.Attachment>
2023-11-26 16:54:29 +01:00
sensitive: boolean
2023-11-03 15:02:48 +01:00
}
export default function Media(props: Props) {
2023-11-26 16:54:29 +01:00
const [sensitive, setSensitive] = useState(props.sensitive)
2023-11-03 15:02:48 +01:00
return (
2023-11-26 16:54:29 +01:00
<div className="relative">
{sensitive ? (
<button className="absolute bg-gray-600 text-gray-200 top-1 left-1 p-1 rounded z-10" onClick={() => setSensitive(false)}>
<FormattedMessage id="timeline.status.cw" />
</button>
) : (
<button className="absolute bg-gray-600 text-gray-200 top-1 left-1 p-1 rounded z-10" onClick={() => setSensitive(true)}>
<FaEyeSlash />
</button>
)}
<div className="mt-2 flex flex-wrap gap-2">
{props.media.map((media, key) => (
<div key={key}>
<Attachment attachment={media} sensitive={sensitive} />
</div>
))}
</div>
2023-11-03 15:02:48 +01:00
</div>
)
}
2023-11-26 16:54:29 +01:00
type AttachmentProps = {
attachment: Entity.Attachment
sensitive: boolean
}
function Attachment(props: AttachmentProps) {
if (props.sensitive) {
return (
<Blurhash
hash={props.attachment.blurhash}
height={144}
width={144}
className="max-w-full rounded-md"
style={{ marginBottom: '2px' }}
/>
)
} else {
return (
<img
src={props.attachment.preview_url}
className="mb-2 max-w-full cursor-pointer"
style={{ width: '144px', height: '144px' }}
alt={props.attachment.description}
title={props.attachment.description}
/>
)
}
}