import styles from "./ImageViewer.module.scss"; import Modal from "../../../components/ui/Modal"; import { useContext, useEffect } from "preact/hooks"; import { AppContext } from "../../revoltjs/RevoltClient"; import { Attachment, EmbedImage } from "revolt.js/dist/api/objects"; import EmbedMediaActions from "../../../components/common/messaging/embed/EmbedMediaActions"; import AttachmentActions from "../../../components/common/messaging/attachments/AttachmentActions"; interface Props { onClose: () => void; embed?: EmbedImage; attachment?: Attachment; } export function ImageViewer({ attachment, embed, onClose }: Props) { // ! FIXME: temp code // ! add proxy function to client function proxyImage(url: string) { return 'https://jan.revolt.chat/proxy?url=' + encodeURIComponent(url); } if (attachment && attachment.metadata.type !== "Image") return null; const client = useContext(AppContext); useEffect(() => { function keyDown(e: KeyboardEvent) { if (e.key === "Escape") { onClose(); } } document.body.addEventListener("keydown", keyDown); return () => document.body.removeEventListener("keydown", keyDown); }, []); return (
{ attachment && <> } { embed && <> }
); }