ViewIcons: Use ImageModal again

This commit is contained in:
Vendicated 2022-10-14 22:38:49 +02:00
parent a4e98f9252
commit 0d996633f2
No known key found for this signature in database
GPG Key ID: EC781ADFB93EFFA3
2 changed files with 17 additions and 6 deletions

View File

@ -1,6 +1,12 @@
import { Devs } from "../utils/constants";
import IpcEvents from "../utils/IpcEvents";
import definePlugin from "../utils/types";
import { lazyWebpack, makeLazy } from "../utils/misc";
import { ModalSize, openModal } from "../utils/modal";
import { find } from "../webpack";
import { React } from "../webpack/common";
const ImageModal = lazyWebpack(m => m.prototype?.render?.toString().includes("OPEN_ORIGINAL_IMAGE"));
const getMaskedLink = makeLazy(() => find(m => m.type?.toString().includes("MASKED_LINK)")));
const OPEN_URL = "Vencord.Plugins.plugins.ViewIcons.openImage(";
export default definePlugin({
@ -9,16 +15,14 @@ export default definePlugin({
description: "Makes Avatars/Banners in user profiles clickable, and adds Guild Context Menu Entries to View Banner/Icon.",
openImage(url: string) {
VencordNative.ipc.invoke(IpcEvents.OPEN_EXTERNAL, url);
// husk
/* openModal(() => (
openModal(() => (
<ImageModal
shouldAnimate={true}
original={url}
src={url}
renderLinkComponent={renderMaskedLink}
renderLinkComponent={props => React.createElement(getMaskedLink(), props)}
/>
), { size: Modal.ModalSize.DYNAMIC }); */
), { size: ModalSize.DYNAMIC });
},
patches: [

View File

@ -10,6 +10,13 @@ const Modals = mapMangledModuleLazy("onCloseRequest:null!=", {
let modalId = 1337;
export enum ModalSize {
SMALL = "small",
MEDIUM = "medium",
LARGE = "large",
DYNAMIC = "dynamic",
}
/**
* Open a modal
* @param Component The component to render in the modal