mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-02-25 07:48:32 +00:00
106 lines
3.1 KiB
TypeScript
106 lines
3.1 KiB
TypeScript
/*
|
|
* Vencord, a Discord client mod
|
|
* Copyright (c) 2024 Vendicated and contributors
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
import { Devs } from "@utils/constants";
|
|
import definePlugin from "@utils/types";
|
|
import { findByPropsLazy } from "@webpack";
|
|
import { FluxDispatcher, RestAPI } from "@webpack/common";
|
|
import { Message, User } from "discord-types/general";
|
|
import { Channel } from "discord-types/general/index.js";
|
|
|
|
const enum ReferencedMessageState {
|
|
Loaded,
|
|
NotLoaded,
|
|
Deleted
|
|
}
|
|
|
|
interface Reply {
|
|
baseAuthor: User,
|
|
baseMessage: Message;
|
|
channel: Channel;
|
|
referencedMessage: { state: ReferencedMessageState; };
|
|
compact: boolean;
|
|
isReplyAuthorBlocked: boolean;
|
|
}
|
|
|
|
const fetching = new Map<string, string>();
|
|
let ReplyStore: any;
|
|
|
|
const { createMessageRecord } = findByPropsLazy("createMessageRecord");
|
|
|
|
export default definePlugin({
|
|
name: "ValidReply",
|
|
description: 'Fixes "Message could not be loaded" upon hovering over the reply',
|
|
authors: [Devs.newwares],
|
|
patches: [
|
|
{
|
|
find: "Messages.REPLY_QUOTE_MESSAGE_NOT_LOADED",
|
|
replacement: {
|
|
match: /Messages\.REPLY_QUOTE_MESSAGE_NOT_LOADED/,
|
|
replace: "$&,onMouseEnter:()=>$self.fetchReply(arguments[0])"
|
|
}
|
|
},
|
|
{
|
|
find: "ReferencedMessageStore",
|
|
replacement: {
|
|
match: /constructor\(\)\{\i\(this,"_channelCaches",new Map\)/,
|
|
replace: "$&;$self.setReplyStore(this);"
|
|
}
|
|
}
|
|
],
|
|
|
|
setReplyStore(store: any) {
|
|
ReplyStore = store;
|
|
},
|
|
|
|
async fetchReply(reply: Reply) {
|
|
const { channel_id: channelId, message_id: messageId } = reply.baseMessage.messageReference!;
|
|
|
|
if (fetching.has(messageId)) {
|
|
return;
|
|
}
|
|
fetching.set(messageId, channelId);
|
|
|
|
RestAPI.get({
|
|
url: `/channels/${channelId}/messages`,
|
|
query: {
|
|
limit: 1,
|
|
around: messageId
|
|
},
|
|
retries: 2
|
|
})
|
|
.then(res => {
|
|
const reply: Message | undefined = res?.body?.[0];
|
|
if (!reply) return;
|
|
|
|
if (reply.id !== messageId) {
|
|
ReplyStore.set(channelId, messageId, {
|
|
state: ReferencedMessageState.Deleted
|
|
});
|
|
|
|
FluxDispatcher.dispatch({
|
|
type: "MESSAGE_DELETE",
|
|
channelId: channelId,
|
|
message: messageId
|
|
});
|
|
} else {
|
|
ReplyStore.set(reply.channel_id, reply.id, {
|
|
state: ReferencedMessageState.Loaded,
|
|
message: createMessageRecord(reply)
|
|
});
|
|
|
|
FluxDispatcher.dispatch({
|
|
type: "MESSAGE_UPDATE",
|
|
message: reply
|
|
});
|
|
}
|
|
})
|
|
.catch(() => { })
|
|
.finally(() => {
|
|
fetching.delete(messageId);
|
|
});
|
|
}
|
|
});
|