mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-09 09:26:22 +00:00
feat: add replyMentionToggle plugin
This commit is contained in:
parent
e1f8b3cb30
commit
7109185fd3
1 changed files with 47 additions and 0 deletions
47
src/plugins/replyMentionToggle/index.tsx
Normal file
47
src/plugins/replyMentionToggle/index.tsx
Normal file
|
@ -0,0 +1,47 @@
|
|||
/*
|
||||
* 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 { findStoreLazy } from "@webpack";
|
||||
import { FluxDispatcher, SelectedChannelStore } from "@webpack/common";
|
||||
|
||||
const isMac = navigator.platform.includes("Mac");
|
||||
const PendingReplyStore = findStoreLazy("PendingReplyStore");
|
||||
|
||||
export default definePlugin({
|
||||
name: "ReplyMentionToggle",
|
||||
description: "Quickly toggle reply mentions by pressing alt+backspace",
|
||||
authors: [Devs.katlyn],
|
||||
|
||||
start() {
|
||||
document.addEventListener("keydown", onKeyDown);
|
||||
},
|
||||
stop() {
|
||||
document.removeEventListener("keydown", onKeyDown);
|
||||
}
|
||||
});
|
||||
|
||||
function onKeyDown(e: KeyboardEvent) {
|
||||
const isBackspace = e.key === "Backspace";
|
||||
const altPressed = e.altKey || (!isMac && e.metaKey);
|
||||
if (altPressed && isBackspace) {
|
||||
toggleReplyMention();
|
||||
}
|
||||
}
|
||||
|
||||
function toggleReplyMention(shouldMention?: boolean) {
|
||||
const channelId = SelectedChannelStore.getChannelId();
|
||||
const reply = PendingReplyStore.getPendingReply(channelId);
|
||||
|
||||
if (!reply) return;
|
||||
|
||||
FluxDispatcher.dispatch({
|
||||
type: "SET_PENDING_REPLY_SHOULD_MENTION",
|
||||
channelId,
|
||||
shouldMention: shouldMention === undefined ? !reply.shouldMention : shouldMention
|
||||
});
|
||||
}
|
Loading…
Reference in a new issue