aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/favEmojiFirst.ts
diff options
context:
space:
mode:
authorSyncx <47534062+Syncxv@users.noreply.github.com>2023-05-17 12:38:15 +1000
committerGitHub <noreply@github.com>2023-05-17 04:38:15 +0200
commit1d6b78f6c660f0cd6905552243a3908366a28595 (patch)
treec8d217a937be8bf2ce39f24e031208388d8f9cb5 /src/plugins/favEmojiFirst.ts
parent341151a71811ddf2a7a36af3dc037135d2b9f7dd (diff)
downloadVencord-1d6b78f6c660f0cd6905552243a3908366a28595.tar.gz
Vencord-1d6b78f6c660f0cd6905552243a3908366a28595.tar.bz2
Vencord-1d6b78f6c660f0cd6905552243a3908366a28595.zip
feat(plugin): FavoriteEmojiFirst (#1110)
Co-authored-by: V <vendicated@riseup.net>
Diffstat (limited to 'src/plugins/favEmojiFirst.ts')
-rw-r--r--src/plugins/favEmojiFirst.ts83
1 files changed, 83 insertions, 0 deletions
diff --git a/src/plugins/favEmojiFirst.ts b/src/plugins/favEmojiFirst.ts
new file mode 100644
index 0000000..fec0b04
--- /dev/null
+++ b/src/plugins/favEmojiFirst.ts
@@ -0,0 +1,83 @@
+/*
+ * Vencord, a modification for Discord's desktop app
+ * Copyright (c) 2023 Vendicated and contributors
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+*/
+
+import { Devs } from "@utils/constants";
+import definePlugin from "@utils/types";
+import { EmojiStore } from "@webpack/common";
+import { Emoji } from "@webpack/types";
+
+interface EmojiAutocompleteState {
+ query?: {
+ type: string;
+ typeInfo: {
+ sentinel: string;
+ };
+ results: {
+ emojis: Emoji[] & { sliceTo?: number; };
+ };
+ };
+}
+
+export default definePlugin({
+ name: "FavoriteEmojiFirst",
+ authors: [Devs.Aria, Devs.Ven],
+ description: "Puts your favorite emoji first in the emoji autocomplete.",
+ patches: [
+ {
+ find: ".activeCommandOption",
+ replacement: [
+ {
+ // = someFunc(a.selectedIndex); ...trackEmojiSearch({ state: theState, isInPopoutExperimental: someBool })
+ match: /=\i\(\i\.selectedIndex\);(?=.+?state:(\i),isInPopoutExperiment:\i)/,
+ // self.sortEmojis(theState)
+ replace: "$&$self.sortEmojis($1);"
+ },
+
+ // set maxCount to Infinity so our sortEmojis callback gets the entire list, not just the first 10
+ // and remove Discord's emojiResult slice, storing the endIndex on the array for us to use later
+ {
+ // searchEmojis(...,maxCount: stuff) ... endEmojis = emojis.slice(0, maxCount - gifResults.length)
+ match: /,maxCount:(\i)(.+?)=(\i)\.slice\(0,(\1-\i\.length)\)/,
+ // ,maxCount:Infinity ... endEmojis = (emojis.sliceTo = n, emojis)
+ replace: ",maxCount:Infinity$2=($3.sliceTo=$4,$3)"
+ }
+ ]
+ }
+ ],
+
+ sortEmojis({ query }: EmojiAutocompleteState) {
+ if (
+ query?.type !== "EMOJIS_AND_STICKERS"
+ || query.typeInfo?.sentinel !== ":"
+ || !query.results?.emojis?.length
+ ) return;
+
+ const emojiContext = EmojiStore.getDisambiguatedEmojiContext();
+
+ query.results.emojis = query.results.emojis.sort((a, b) => {
+ const aIsFavorite = emojiContext.isFavoriteEmojiWithoutFetchingLatest(a);
+ const bIsFavorite = emojiContext.isFavoriteEmojiWithoutFetchingLatest(b);
+
+ if (aIsFavorite && !bIsFavorite) return -1;
+
+ if (!aIsFavorite && bIsFavorite) return 1;
+
+ return 0;
+ }).slice(0, query.results.emojis.sliceTo ?? 10);
+ }
+});