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

57 lines
1.5 KiB
TypeScript
Raw Normal View History

2023-11-28 16:07:21 +01:00
import { Button } from 'flowbite-react'
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 { 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-28 16:07:21 +01:00
if (props.media.length > 0) {
return (
<div className="relative">
{sensitive ? (
<Button size="xs" color="gray" className="focus:ring-0 my-1" 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} />
</div>
))}
</div>
</>
)}
2023-11-26 16:54:29 +01:00
</div>
2023-11-28 16:07:21 +01:00
)
} else {
return null
}
2023-11-03 15:02:48 +01:00
}
2023-11-26 16:54:29 +01:00
type AttachmentProps = {
attachment: Entity.Attachment
}
function Attachment(props: AttachmentProps) {
2023-11-28 16:07:21 +01:00
return (
<img
src={props.attachment.preview_url}
className="mb-2 max-w-full cursor-pointer"
style={{ height: '144px' }}
alt={props.attachment.description}
title={props.attachment.description}
/>
)
2023-11-26 16:54:29 +01:00
}