diff options
author | Nuckyz <61953774+Nuckyz@users.noreply.github.com> | 2023-03-05 18:49:59 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-05 22:49:59 +0100 |
commit | bed5e98bb03a2c7073f9f421a396fa7616d56ac5 (patch) | |
tree | dd862f2649c4a59f9242ab5c73d57221c52c61ec /src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx | |
parent | a5392e5c53675e5206a4d5fcf97b9d6a8d07727b (diff) | |
download | Vencord-bed5e98bb03a2c7073f9f421a396fa7616d56ac5.tar.gz Vencord-bed5e98bb03a2c7073f9f421a396fa7616d56ac5.tar.bz2 Vencord-bed5e98bb03a2c7073f9f421a396fa7616d56ac5.zip |
Misc fixes and improvements (#555)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx')
-rw-r--r-- | src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx | 18 |
1 files changed, 14 insertions, 4 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", |