Compare commits

...

19 commits

Author SHA1 Message Date
AdiGro
6fb63116b9
Merge 513eccb70a into c7e5295da0 2024-09-18 21:34:13 +02:00
Vendicated
c7e5295da0
SearchReply => FullSearchContext ~ now adds all options back
Some checks are pending
Sync to Codeberg / codeberg (push) Waiting to run
test / test (push) Waiting to run
2024-09-18 21:33:46 +02:00
Taran Grover
513eccb70a change patches and extract code in functions 2024-09-13 01:31:11 +02:00
AdiGro
11dd4cf3b0
Update src/plugins/filterBotMentions/index.tsx
Co-authored-by: sadan4 <117494111+sadan4@users.noreply.github.com>
2024-09-12 05:02:27 +02:00
Taran Grover
1755c2cf6f extract filter callback into a function 2024-09-12 04:55:54 +02:00
Taran Grover
4d9acac992 find prop outside of the function and added types 2024-09-12 03:13:32 +02:00
AdiGro
24fa55bbbe
Update README.md 2024-09-12 02:35:50 +02:00
AdiGro
3bf235d115
Update README.md 2024-09-12 02:34:44 +02:00
Taran Grover
6b952c24be edit plugin description to be less misunderstandable 2024-09-12 02:32:43 +02:00
Taran Grover
ecfc09ac3f use camcel case for plugin names 2024-09-12 02:31:47 +02:00
Taran Grover
608fdd4f96 use camcel case for plugin names 2024-09-12 02:30:40 +02:00
Taran Grover
2b887fda18 add types 2024-09-12 02:28:06 +02:00
Taran Grover
18c2b7d730 add to Devs 2024-09-12 02:27:59 +02:00
AdiGro
35bc98b2b5
add [myself] to devs 2024-09-12 02:21:25 +02:00
AdiGro
73a6d43840
Update src/plugins/filterBotMentions/index.tsx
Co-authored-by: sadan4 <117494111+sadan4@users.noreply.github.com>
2024-09-12 02:18:28 +02:00
AdiGro
cd2568cfcd
Update src/plugins/filterBotMentions/index.tsx
Co-authored-by: sadan4 <117494111+sadan4@users.noreply.github.com>
2024-09-12 02:18:12 +02:00
Taran Grover
bc655d673b lint 2024-09-12 00:03:55 +02:00
AdiGro
e7a233f1d3
Update index.tsx 2024-09-12 00:00:32 +02:00
Taran Grover
cdc2055e78 feat(Plugin): Filter bot mentions 2024-09-11 23:51:43 +02:00
7 changed files with 188 additions and 81 deletions

View file

@ -0,0 +1,13 @@
# FilterBotMentions
Allows you to filter bot mentions in recent mentions panel.
# Usage
You can include/exclude mentions by bots in the box either using the checkbox in recent mentions panel, or in the plugin settings.
Include mentions by bots:
![image](https://github.com/user-attachments/assets/a80a41fc-9bae-4612-a23a-b1894e0f8fd2)
Excluded mentions by bots:
![image](https://github.com/user-attachments/assets/fdf973eb-23ef-4101-b4de-e3fb6663f41b)

View file

@ -0,0 +1,84 @@
/*
* Vencord, a Discord client mod
* Copyright (c) 2024 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
import { definePluginSettings } from "@api/Settings";
import { Devs } from "@utils/constants";
import { getCurrentGuild } from "@utils/discord";
import definePlugin, { OptionType } from "@utils/types";
import { findByPropsLazy, findStoreLazy } from "@webpack";
import { Menu } from "@webpack/common";
import { Message } from "discord-types/general";
const settings = definePluginSettings({
toggle: {
type: OptionType.BOOLEAN,
description: "Include mentions by bots in inbox",
default: true,
},
});
type RecentMentionsStore = { guildFilter: string, roleFilter: boolean, everyoneFilter: boolean; };
type fetchRecentMentionsType = (before: BigInt | null, limit: Number | null, all_servers: string | null | undefined, role: boolean, everyone: boolean,) => void;
const { fetchRecentMentions } = findByPropsLazy("fetchRecentMentions") as { fetchRecentMentions: fetchRecentMentionsType; };
const recentMentionsStore = findStoreLazy("RecentMentionsStore") as RecentMentionsStore;
export default definePlugin({
name: "FilterBotMentions",
description: "Filter mentions by bots in inbox",
authors: [Devs.Taran],
patches: [
{
find: "get lastLoaded",
replacement: {
match: /getMentions.{0,30}\?\i/,
replace: "$&.filter($self.filterMessages)"
}
},
{
find: "mentions-filter",
replacement: {
match: /children:\[\(0,\i\.jsx\).{0,600}\}\)\]/,
replace: "$&.concat($self.patchMenu())"
}
}
],
settings,
reloadMentions(): void {
const all_servers: boolean = recentMentionsStore.guildFilter === "ALL_SERVERS";
const { roleFilter: role, everyoneFilter: everyone } = recentMentionsStore;
const serverToFilter: string | undefined | null = all_servers ? null : getCurrentGuild()?.id;
fetchRecentMentions(null, null, serverToFilter, role, everyone);
},
toggleBotMentions(): void {
settings.store.toggle = !settings.store.toggle;
},
filterMessages(message: Message): boolean {
return !message.author.bot || settings.store.toggle;
},
patchMenu() {
return (
<Menu.MenuCheckboxItem
id="Bots"
label="Include mentions by bots"
action={() => {
this.toggleBotMentions();
this.reloadMentions();
}}
checked={settings.store.toggle}
/>
);
}
});

View file

@ -0,0 +1,5 @@
# FullSearchContext
Makes the message context menu in message search results have all options you'd expect.
![](https://github.com/user-attachments/assets/472d1327-3935-44c7-b7c4-0978b5348550)

View file

@ -0,0 +1,82 @@
/*
* 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 { migratePluginSettings } from "@api/Settings";
import { Devs } from "@utils/constants";
import definePlugin from "@utils/types";
import { findByPropsLazy } from "@webpack";
import { ChannelStore, ContextMenuApi, i18n, UserStore } from "@webpack/common";
import { Message } from "discord-types/general";
import type { MouseEvent } from "react";
const { useMessageMenu } = findByPropsLazy("useMessageMenu");
function MessageMenu({ message, channel, onHeightUpdate }) {
const canReport = message.author &&
!(message.author.id === UserStore.getCurrentUser().id || message.author.system);
return useMessageMenu({
navId: "message-actions",
ariaLabel: i18n.Messages.MESSAGE_UTILITIES_A11Y_LABEL,
message,
channel,
canReport,
onHeightUpdate,
onClose: () => ContextMenuApi.closeContextMenu(),
textSelection: "",
favoriteableType: null,
favoriteableId: null,
favoriteableName: null,
itemHref: void 0,
itemSrc: void 0,
itemSafeSrc: void 0,
itemTextContent: void 0,
});
}
migratePluginSettings("FullSearchContext", "SearchReply");
export default definePlugin({
name: "FullSearchContext",
description: "Makes the message context menu in message search results have all options you'd expect",
authors: [Devs.Ven, Devs.Aria],
patches: [{
find: "onClick:this.handleMessageClick,",
replacement: {
match: /this(?=\.handleContextMenu\(\i,\i\))/,
replace: "$self"
}
}],
handleContextMenu(event: MouseEvent, message: Message) {
const channel = ChannelStore.getChannel(message.channel_id);
if (!channel) return;
event.stopPropagation();
ContextMenuApi.openContextMenu(event, contextMenuProps =>
<MessageMenu
message={message}
channel={channel}
onHeightUpdate={contextMenuProps.onHeightUpdate}
/>
);
}
});

View file

@ -1,6 +0,0 @@
# SearchReply
Adds a reply button to search results.
![the plugin in action](https://github.com/Vendicated/Vencord/assets/45497981/07e741d3-0f97-4e5c-82b0-80712ecf2cbb)

View file

@ -1,75 +0,0 @@
/*
* 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 { findGroupChildrenByChildId, NavContextMenuPatchCallback } from "@api/ContextMenu";
import { ReplyIcon } from "@components/Icons";
import { Devs } from "@utils/constants";
import definePlugin from "@utils/types";
import { findByCodeLazy } from "@webpack";
import { ChannelStore, i18n, Menu, PermissionsBits, PermissionStore, SelectedChannelStore } from "@webpack/common";
import { Message } from "discord-types/general";
const replyToMessage = findByCodeLazy(".TEXTAREA_FOCUS)", "showMentionToggle:");
const messageContextMenuPatch: NavContextMenuPatchCallback = (children, { message }: { message: Message; }) => {
// make sure the message is in the selected channel
if (SelectedChannelStore.getChannelId() !== message.channel_id) return;
const channel = ChannelStore.getChannel(message?.channel_id);
if (!channel) return;
if (channel.guild_id && !PermissionStore.can(PermissionsBits.SEND_MESSAGES, channel)) return;
// dms and group chats
const dmGroup = findGroupChildrenByChildId("pin", children);
if (dmGroup && !dmGroup.some(child => child?.props?.id === "reply")) {
const pinIndex = dmGroup.findIndex(c => c?.props.id === "pin");
dmGroup.splice(pinIndex + 1, 0, (
<Menu.MenuItem
id="reply"
label={i18n.Messages.MESSAGE_ACTION_REPLY}
icon={ReplyIcon}
action={(e: React.MouseEvent) => replyToMessage(channel, message, e)}
/>
));
return;
}
// servers
const serverGroup = findGroupChildrenByChildId("mark-unread", children);
if (serverGroup && !serverGroup.some(child => child?.props?.id === "reply")) {
serverGroup.unshift((
<Menu.MenuItem
id="reply"
label={i18n.Messages.MESSAGE_ACTION_REPLY}
icon={ReplyIcon}
action={(e: React.MouseEvent) => replyToMessage(channel, message, e)}
/>
));
return;
}
};
export default definePlugin({
name: "SearchReply",
description: "Adds a reply button to search results",
authors: [Devs.Aria],
contextMenus: {
"message": messageContextMenuPatch
}
});

View file

@ -575,6 +575,10 @@ export const Devs = /* #__PURE__*/ Object.freeze({
name: "RamziAH",
id: 1279957227612147747n,
},
Taran: {
name: "Taran",
id: 482951588055351306n
},
} satisfies Record<string, Dev>);
// iife so #__PURE__ works correctly