aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/messageActions.ts
blob: c2857cbd5f1f4bdc01495e56c2074910cfc97e50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { MessageClicks } from "../api";
import definePlugin from "../utils/types";
import { find, findByProps } from "../utils/webpack";

export default definePlugin({
    name: "MessageQuickActions",
    description: "Quick Delete, Quick edit",
    author: "Vendicated",
    start() {
        const { deleteMessage, startEditMessage } = findByProps("deleteMessage");
        const { can } = findByProps("can", "initialize");
        const { Permissions: { MANAGE_MESSAGES } } = find(m => m.Permissions?.MANAGE_MESSAGES);
        const { getCurrentUser } = findByProps("getCurrentUser");

        let isDeletePressed = false;
        document.addEventListener("keydown", e => {
            if (e.key === "Backspace") isDeletePressed = true;
        });
        document.addEventListener("keyup", e => {
            if (e.key === "Backspace") isDeletePressed = false;
        });

        MessageClicks.addListener((msg, chan, event) => {
            const isMe = msg.author.id === getCurrentUser().id;
            if (!isDeletePressed) {
                if (isMe && event.detail >= 2) {
                    startEditMessage(chan.id, msg.id, msg.content);
                    event.preventDefault();
                }
            } else if (isMe || can(MANAGE_MESSAGES, chan)) {
                deleteMessage(chan.id, msg.id);
                event.preventDefault();
            }
        });
    }
});