import { Attachment as AttachmentI } from "revolt-api/types/Autumn"; import styles from "./Attachment.module.scss"; import classNames from "classnames"; import { attachContextMenu } from "preact-context-menu"; import { useContext, useState } from "preact/hooks"; import { AppContext } from "../../../../context/revoltjs/RevoltClient"; import AttachmentActions from "./AttachmentActions"; import { SizedGrid } from "./Grid"; import ImageFile from "./ImageFile"; import Spoiler from "./Spoiler"; import TextFile from "./TextFile"; interface Props { attachment: AttachmentI; hasContent: boolean; } const MAX_ATTACHMENT_WIDTH = 480; export default function Attachment({ attachment, hasContent }: Props) { const client = useContext(AppContext); const { filename, metadata } = attachment; const [spoiler, setSpoiler] = useState(filename.startsWith("SPOILER_")); const url = client.generateFileURL( attachment, { width: MAX_ATTACHMENT_WIDTH * 1.5 }, true, ); switch (metadata.type) { case "Image": { return ( {spoiler && } ); } case "Video": { return (
); } case "Audio": { return (
); } case "Text": { return (
); } default: { return (
); } } }