diff options
Diffstat (limited to 'src/plugins/showHiddenChannels')
-rw-r--r-- | src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx | 18 | ||||
-rw-r--r-- | src/plugins/showHiddenChannels/index.tsx | 13 |
2 files changed, 22 insertions, 9 deletions
diff --git a/src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx b/src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx index 7e66a6a..01bc3a7 100644 --- a/src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx +++ b/src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx @@ -19,9 +19,11 @@ import ErrorBoundary from "@components/ErrorBoundary"; import { LazyComponent } from "@utils/misc"; import { formatDuration } from "@utils/text"; -import { find, findByCode, findByPropsLazy } from "@webpack"; +import { find, findByPropsLazy } from "@webpack"; import { FluxDispatcher, GuildMemberStore, GuildStore, moment, Parser, SnowflakeUtils, Text, Timestamp, Tooltip } from "@webpack/common"; import { Channel } from "discord-types/general"; +import type { ComponentType } from "react"; + enum SortOrderTypes { LATEST_ACTIVITY = 0, @@ -73,6 +75,17 @@ enum ChannelFlags { REQUIRE_TAG = 1 << 4 } +let EmojiComponent: ComponentType<any>; +let ChannelBeginHeader: ComponentType<any>; + +export function setEmojiComponent(component: ComponentType<any>) { + EmojiComponent = component; +} + +export function setChannelBeginHeaderComponent(component: ComponentType<any>) { + ChannelBeginHeader = component; +} + const ChatScrollClasses = findByPropsLazy("auto", "content", "scrollerBase"); const TagComponent = LazyComponent(() => find(m => { if (typeof m !== "function") return false; @@ -81,9 +94,6 @@ const TagComponent = LazyComponent(() => find(m => { // Get the component which doesn't include increasedActivity logic return code.includes(".Messages.FORUM_TAG_A11Y_FILTER_BY_TAG") && !code.includes("increasedActivityPill"); })); -const EmojiComponent = LazyComponent(() => findByCode('.jumboable?"jumbo":"default"')); -// The component for the beggining of a channel, but we patched it so it only returns the allowed users and roles components for hidden channels -const ChannelBeginHeader = LazyComponent(() => findByCode(".Messages.ROLE_REQUIRED_SINGLE_USER_MESSAGE")); const ChannelTypesToChannelNames = { [ChannelTypes.GUILD_TEXT]: "text", diff --git a/src/plugins/showHiddenChannels/index.tsx b/src/plugins/showHiddenChannels/index.tsx index fe14fe6..60e0c51 100644 --- a/src/plugins/showHiddenChannels/index.tsx +++ b/src/plugins/showHiddenChannels/index.tsx @@ -26,7 +26,7 @@ import { findByPropsLazy } from "@webpack"; import { ChannelStore, PermissionStore, Tooltip } from "@webpack/common"; import { Channel } from "discord-types/general"; -import HiddenChannelLockScreen from "./components/HiddenChannelLockScreen"; +import HiddenChannelLockScreen, { setChannelBeginHeaderComponent, setEmojiComponent } from "./components/HiddenChannelLockScreen"; const ChannelListClasses = findByPropsLazy("channelName", "subtitle", "modeMuted", "iconContainer"); @@ -239,8 +239,8 @@ export default definePlugin({ { find: 'jumboable?"jumbo":"default"', replacement: { - match: /(?<=\i:\(\)=>\i)(?=}.+?(?<component>\i)=function.{1,20}node,\i=\i.isInteracting)/, - replace: ",hc1:()=>$<component>" // Blame Ven length check for the small name :pensive_cry: + match: /(?<=(?<component>\i)=function.{1,20}node,\i=\i.isInteracting.+?}}\)},)/, + replace: "shcEmojiComponentExport=($self.setEmojiComponent($<component>),void 0)," } }, { @@ -248,8 +248,8 @@ export default definePlugin({ replacement: [ { // Export the channel beggining header - match: /(?<=\i:\(\)=>\i)(?=}.+?function (?<component>\i).{1,600}computePermissionsForRoles)/, - replace: ",hc2:()=>$<component>" + match: /(?<=function (?<component>\i)\(.{1,600}computePermissionsForRoles.+?}\)})(?=var)/, + replace: "$self.setChannelBeginHeaderComponent($<component>);" }, { // Patch the header to only return allowed users and roles if it's a hidden channel (Like when it's used on the HiddenChannelLockScreen) @@ -325,6 +325,9 @@ export default definePlugin({ } ], + setEmojiComponent, + setChannelBeginHeaderComponent, + isHiddenChannel(channel: Channel & { channelId?: string; }) { if (!channel) return false; |