mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-01-10 09:56:24 +00:00
added feature to copy emojies from messages and message reactions
This commit is contained in:
parent
4ec01d0f40
commit
3c6e570033
1 changed files with 126 additions and 20 deletions
|
@ -4,14 +4,18 @@
|
||||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import { findGroupChildrenByChildId } from "@api/ContextMenu";
|
||||||
import { definePluginSettings } from "@api/Settings";
|
import { definePluginSettings } from "@api/Settings";
|
||||||
import { Devs } from "@utils/constants";
|
import { Devs } from "@utils/constants";
|
||||||
import { copyWithToast } from "@utils/misc";
|
import { copyWithToast } from "@utils/misc";
|
||||||
import definePlugin, { OptionType } from "@utils/types";
|
import definePlugin, { OptionType } from "@utils/types";
|
||||||
import { findByPropsLazy } from "@webpack";
|
import { findByPropsLazy } from "@webpack";
|
||||||
import { Menu } from "@webpack/common";
|
import { Menu } from "@webpack/common";
|
||||||
|
import { Message } from "discord-types/general";
|
||||||
|
import { ReactElement } from "react";
|
||||||
|
|
||||||
const { convertNameToSurrogate } = findByPropsLazy("convertNameToSurrogate");
|
const { convertNameToSurrogate, hasSurrogates, convertSurrogateToName } =
|
||||||
|
findByPropsLazy("convertNameToSurrogate");
|
||||||
|
|
||||||
interface Emoji {
|
interface Emoji {
|
||||||
type: string;
|
type: string;
|
||||||
|
@ -37,39 +41,141 @@ function getEmojiMarkdown(target: Target, copyUnicode: boolean): string {
|
||||||
/https:\/\/cdn\.discordapp\.com\/emojis\/\d+\.(\w+)/
|
/https:\/\/cdn\.discordapp\.com\/emojis\/\d+\.(\w+)/
|
||||||
)?.[1];
|
)?.[1];
|
||||||
|
|
||||||
return `<${extension === "gif" ? "a" : ""}:${emojiName.replace(/~\d+$/, "")}:${emojiId}>`;
|
return `<${extension === "gif" ? "a" : ""}:${emojiName.replace(
|
||||||
|
/~\d+$/,
|
||||||
|
""
|
||||||
|
)}:${emojiId}>`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const patchExpressionPickerContextMenu = (
|
||||||
|
children: Array<ReactElement | null>,
|
||||||
|
{ target }: { target: Target }
|
||||||
|
) => {
|
||||||
|
if (target.dataset.type !== "emoji") return;
|
||||||
|
|
||||||
|
children.push(
|
||||||
|
<Menu.MenuItem
|
||||||
|
id="vc-copy-emoji-markdown"
|
||||||
|
label="Copy Emoji Markdown"
|
||||||
|
action={() => {
|
||||||
|
copyWithToast(
|
||||||
|
getEmojiMarkdown(target, settings.store.copyUnicode),
|
||||||
|
"Success! Copied emoji markdown."
|
||||||
|
);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const addCopyButton = (
|
||||||
|
children: Array<ReactElement | null>,
|
||||||
|
emojiMarkdown: string
|
||||||
|
) => {
|
||||||
|
findGroupChildrenByChildId("copy-link", children)?.push(
|
||||||
|
<Menu.MenuItem
|
||||||
|
id="vc-copy-emoji-markdown"
|
||||||
|
label="Copy Emoji Markdown"
|
||||||
|
action={() => {
|
||||||
|
copyWithToast(emojiMarkdown, "Success! Copied emoji markdown.");
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const patchMessageContextMenu = (
|
||||||
|
children: Array<ReactElement | null>,
|
||||||
|
props: {
|
||||||
|
favoriteableId: string | null;
|
||||||
|
favoriteableName: string | null;
|
||||||
|
favoriteableType: string | null;
|
||||||
|
message: Message;
|
||||||
|
} | null
|
||||||
|
) => {
|
||||||
|
if (!props) return;
|
||||||
|
|
||||||
|
if (props.favoriteableType !== "emoji") return;
|
||||||
|
|
||||||
|
const emojiName = props.favoriteableName;
|
||||||
|
|
||||||
|
if (hasSurrogates(emojiName)) {
|
||||||
|
addCopyButton(
|
||||||
|
children,
|
||||||
|
settings.store.copyUnicode
|
||||||
|
? emojiName
|
||||||
|
: convertSurrogateToName(emojiName)
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const emojiId = props.favoriteableId;
|
||||||
|
|
||||||
|
if (!emojiId) {
|
||||||
|
if (emojiName) {
|
||||||
|
const emojiMarkdown = settings.store.copyUnicode
|
||||||
|
? convertNameToSurrogate(emojiName.replace(/(^:|:$)/g, ""))
|
||||||
|
: emojiName;
|
||||||
|
|
||||||
|
addCopyButton(
|
||||||
|
children,
|
||||||
|
emojiMarkdown !== "" ? emojiMarkdown : emojiName
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const messageEmojiMarkdown = props.message.content.match(
|
||||||
|
RegExp(`(<a?:\\S+:${emojiId}>)`)
|
||||||
|
)?.[1];
|
||||||
|
|
||||||
|
if (messageEmojiMarkdown) {
|
||||||
|
addCopyButton(children, messageEmojiMarkdown.replace(/~\d+/, ""));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const reactionEmojiObject = props.message.reactions.find(
|
||||||
|
({ emoji: { id } }) => id === emojiId
|
||||||
|
)?.emoji;
|
||||||
|
|
||||||
|
if (!reactionEmojiObject) return;
|
||||||
|
|
||||||
|
const reactionEmojiName = reactionEmojiObject.name;
|
||||||
|
|
||||||
|
if (hasSurrogates(reactionEmojiName)) {
|
||||||
|
addCopyButton(
|
||||||
|
children,
|
||||||
|
settings.store.copyUnicode
|
||||||
|
? reactionEmojiName
|
||||||
|
: convertSurrogateToName(reactionEmojiName)
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
addCopyButton(
|
||||||
|
children,
|
||||||
|
`<${
|
||||||
|
reactionEmojiObject.animated ? "a" : ""
|
||||||
|
}:${reactionEmojiName}:${emojiId}>`
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
const settings = definePluginSettings({
|
const settings = definePluginSettings({
|
||||||
copyUnicode: {
|
copyUnicode: {
|
||||||
type: OptionType.BOOLEAN,
|
type: OptionType.BOOLEAN,
|
||||||
description: "Copy the raw unicode character instead of :name: for default emojis (👽)",
|
description:
|
||||||
|
"Copy the raw unicode character instead of :name: for default emojis (👽)",
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "CopyEmojiMarkdown",
|
name: "CopyEmojiMarkdown",
|
||||||
description: "Allows you to copy emojis as formatted string (<:blobcatcozy:1026533070955872337>)",
|
description:
|
||||||
|
"Allows you to copy emojis as formatted string (<:blobcatcozy:1026533070955872337>)",
|
||||||
authors: [Devs.HappyEnderman, Devs.Vishnya],
|
authors: [Devs.HappyEnderman, Devs.Vishnya],
|
||||||
settings,
|
settings,
|
||||||
|
|
||||||
contextMenus: {
|
contextMenus: {
|
||||||
"expression-picker"(children, { target }: { target: Target }) {
|
"expression-picker": patchExpressionPickerContextMenu,
|
||||||
if (target.dataset.type !== "emoji") return;
|
"message": patchMessageContextMenu,
|
||||||
|
|
||||||
children.push(
|
|
||||||
<Menu.MenuItem
|
|
||||||
id="vc-copy-emoji-markdown"
|
|
||||||
label="Copy Emoji Markdown"
|
|
||||||
action={() => {
|
|
||||||
copyWithToast(
|
|
||||||
getEmojiMarkdown(target, settings.store.copyUnicode),
|
|
||||||
"Success! Copied emoji markdown."
|
|
||||||
);
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue