UserVoiceShow: Better support for DM channels
This commit is contained in:
parent
f7587d9b2e
commit
e8242f22c9
3 changed files with 62 additions and 22 deletions
|
@ -7,15 +7,22 @@
|
||||||
import { classNameFactory } from "@api/Styles";
|
import { classNameFactory } from "@api/Styles";
|
||||||
import ErrorBoundary from "@components/ErrorBoundary";
|
import ErrorBoundary from "@components/ErrorBoundary";
|
||||||
import { classes } from "@utils/misc";
|
import { classes } from "@utils/misc";
|
||||||
import { findByPropsLazy, findComponentByCodeLazy, findStoreLazy } from "@webpack";
|
import { filters, findByCodeLazy, findByPropsLazy, findComponentByCodeLazy, findStoreLazy, mapMangledModuleLazy } from "@webpack";
|
||||||
import { ChannelStore, GuildStore, IconUtils, NavigationRouter, PermissionsBits, PermissionStore, React, showToast, Text, Toasts, Tooltip, useMemo, UserStore, useStateFromStores } from "@webpack/common";
|
import { ChannelStore, GuildStore, IconUtils, match, NavigationRouter, P, PermissionsBits, PermissionStore, React, showToast, Text, Toasts, Tooltip, useMemo, UserStore, useStateFromStores } from "@webpack/common";
|
||||||
import { Channel } from "discord-types/general";
|
import { Channel } from "discord-types/general";
|
||||||
|
|
||||||
const cl = classNameFactory("vc-uvs-");
|
const cl = classNameFactory("vc-uvs-");
|
||||||
|
|
||||||
const { selectVoiceChannel } = findByPropsLazy("selectChannel", "selectVoiceChannel");
|
const { selectVoiceChannel } = findByPropsLazy("selectVoiceChannel", "selectChannel");
|
||||||
|
const { useChannelName } = mapMangledModuleLazy(".Messages.GROUP_DM_ALONE", {
|
||||||
|
useChannelName: filters.byCode("()=>null==")
|
||||||
|
});
|
||||||
|
const getDMChannelIcon = findByCodeLazy(".getChannelIconURL({");
|
||||||
const VoiceStateStore = findStoreLazy("VoiceStateStore");
|
const VoiceStateStore = findStoreLazy("VoiceStateStore");
|
||||||
|
|
||||||
const UserSummaryItem = findComponentByCodeLazy("defaultRenderUser", "showDefaultAvatarsForNullUsers");
|
const UserSummaryItem = findComponentByCodeLazy("defaultRenderUser", "showDefaultAvatarsForNullUsers");
|
||||||
|
const Avatar = findComponentByCodeLazy(".AVATAR_STATUS_TYPING_16;");
|
||||||
|
const GroupDMAvatars = findComponentByCodeLazy(".AvatarSizeSpecs[", "getAvatarURL");
|
||||||
|
|
||||||
interface IconProps extends React.ComponentPropsWithoutRef<"div"> {
|
interface IconProps extends React.ComponentPropsWithoutRef<"div"> {
|
||||||
size?: number;
|
size?: number;
|
||||||
|
@ -28,7 +35,7 @@ function SpeakerIcon(props: IconProps) {
|
||||||
<div
|
<div
|
||||||
{...props}
|
{...props}
|
||||||
role={props.onClick != null ? "button" : undefined}
|
role={props.onClick != null ? "button" : undefined}
|
||||||
className={classes(cl("speaker"), props.onClick != null ? cl("clickable") : undefined)}
|
className={classes(cl("speaker"), props.onClick != null ? cl("clickable") : undefined, props.className)}
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
width={props.size}
|
width={props.size}
|
||||||
|
@ -50,7 +57,7 @@ function LockedSpeakerIcon(props: IconProps) {
|
||||||
<div
|
<div
|
||||||
{...props}
|
{...props}
|
||||||
role={props.onClick != null ? "button" : undefined}
|
role={props.onClick != null ? "button" : undefined}
|
||||||
className={classes(cl("speaker"), props.onClick != null ? cl("clickable") : undefined)}
|
className={classes(cl("speaker"), props.onClick != null ? cl("clickable") : undefined, props.className)}
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
width={props.size}
|
width={props.size}
|
||||||
|
@ -84,15 +91,27 @@ function VoiceChannelTooltip({ channel }: VoiceChannelTooltipProps) {
|
||||||
size: 30
|
size: 30
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const channelIcon = match(channel.type)
|
||||||
|
.with(P.union(1, 3), () => {
|
||||||
|
return channel.recipients.length >= 2 && channel.icon == null
|
||||||
|
? <GroupDMAvatars recipients={channel.recipients} size="SIZE_32" />
|
||||||
|
: <Avatar src={getDMChannelIcon(channel)} size="SIZE_32" />;
|
||||||
|
})
|
||||||
|
.otherwise(() => null);
|
||||||
|
const channelName = useChannelName(channel);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{guild != null && (
|
{guild != null && (
|
||||||
<div className={cl("guild-name")}>
|
<div className={cl("name")}>
|
||||||
{guildIcon != null && <img className={cl("guild-icon")} src={guildIcon} alt="" />}
|
{guildIcon != null && <img className={cl("guild-icon")} src={guildIcon} alt="" />}
|
||||||
<Text variant="text-sm/bold">{guild.name}</Text>
|
<Text variant="text-sm/bold">{guild.name}</Text>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<Text variant="text-sm/semibold">{channel.name}</Text>
|
<div className={cl("name")}>
|
||||||
|
{channelIcon}
|
||||||
|
<Text variant="text-sm/semibold">{channelName}</Text>
|
||||||
|
</div>
|
||||||
<div className={cl("vc-members")}>
|
<div className={cl("vc-members")}>
|
||||||
<SpeakerIcon size={18} />
|
<SpeakerIcon size={18} />
|
||||||
<UserSummaryItem
|
<UserSummaryItem
|
||||||
|
@ -108,23 +127,28 @@ function VoiceChannelTooltip({ channel }: VoiceChannelTooltipProps) {
|
||||||
|
|
||||||
interface VoiceChannelIndicatorProps {
|
interface VoiceChannelIndicatorProps {
|
||||||
userId: string;
|
userId: string;
|
||||||
|
size?: number;
|
||||||
|
isActionButton?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const clickTimers = {} as Record<string, any>;
|
const clickTimers = {} as Record<string, any>;
|
||||||
|
|
||||||
export const VoiceChannelIndicator = ErrorBoundary.wrap(({ userId }: VoiceChannelIndicatorProps) => {
|
export const VoiceChannelIndicator = ErrorBoundary.wrap(({ userId, size, isActionButton }: VoiceChannelIndicatorProps) => {
|
||||||
const channelId = useStateFromStores([VoiceStateStore], () => VoiceStateStore.getVoiceStateForUser(userId)?.channelId as string | undefined);
|
const channelId = useStateFromStores([VoiceStateStore], () => VoiceStateStore.getVoiceStateForUser(userId)?.channelId as string | undefined);
|
||||||
|
|
||||||
const channel = channelId == null ? undefined : ChannelStore.getChannel(channelId);
|
const channel = channelId == null ? undefined : ChannelStore.getChannel(channelId);
|
||||||
if (channel == null) return null;
|
if (channel == null) return null;
|
||||||
|
|
||||||
|
const isDM = channel.isDM() || channel.isMultiUserDM();
|
||||||
|
const isLocked = !isDM && (!PermissionStore.can(PermissionsBits.VIEW_CHANNEL, channel) || !PermissionStore.can(PermissionsBits.CONNECT, channel));
|
||||||
|
|
||||||
function onClick(e: React.MouseEvent) {
|
function onClick(e: React.MouseEvent) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
|
||||||
if (channel == null || channelId == null) return;
|
if (channel == null || channelId == null) return;
|
||||||
|
|
||||||
if (!PermissionStore.can(PermissionsBits.VIEW_CHANNEL, channel)) {
|
if (!isDM && !PermissionStore.can(PermissionsBits.VIEW_CHANNEL, channel)) {
|
||||||
showToast("You cannot view the user's Voice Channel", Toasts.Type.FAILURE);
|
showToast("You cannot view the user's Voice Channel", Toasts.Type.FAILURE);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -133,7 +157,7 @@ export const VoiceChannelIndicator = ErrorBoundary.wrap(({ userId }: VoiceChanne
|
||||||
delete clickTimers[channelId];
|
delete clickTimers[channelId];
|
||||||
|
|
||||||
if (e.detail > 1) {
|
if (e.detail > 1) {
|
||||||
if (!PermissionStore.can(PermissionsBits.CONNECT, channel)) {
|
if (!isDM && !PermissionStore.can(PermissionsBits.CONNECT, channel)) {
|
||||||
showToast("You cannot join the user's Voice Channel", Toasts.Type.FAILURE);
|
showToast("You cannot join the user's Voice Channel", Toasts.Type.FAILURE);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -147,19 +171,24 @@ export const VoiceChannelIndicator = ErrorBoundary.wrap(({ userId }: VoiceChanne
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const isLocked = !PermissionStore.can(PermissionsBits.VIEW_CHANNEL, channel) || !PermissionStore.can(PermissionsBits.CONNECT, channel);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Tooltip
|
<Tooltip
|
||||||
text={<VoiceChannelTooltip channel={channel} />}
|
text={<VoiceChannelTooltip channel={channel} />}
|
||||||
tooltipClassName={cl("tooltip-container")}
|
tooltipClassName={cl("tooltip-container")}
|
||||||
tooltipContentClassName={cl("tooltip-content")}
|
tooltipContentClassName={cl("tooltip-content")}
|
||||||
>
|
>
|
||||||
{props =>
|
{props => {
|
||||||
isLocked ?
|
const iconProps = {
|
||||||
<LockedSpeakerIcon {...props} onClick={onClick} />
|
...props,
|
||||||
: <SpeakerIcon {...props} onClick={onClick} />
|
onClick,
|
||||||
}
|
size,
|
||||||
|
className: isActionButton ? cl("indicator-action-button") : cl("speaker-padding")
|
||||||
|
};
|
||||||
|
|
||||||
|
return isLocked ?
|
||||||
|
<LockedSpeakerIcon {...iconProps} />
|
||||||
|
: <SpeakerIcon {...iconProps} />;
|
||||||
|
}}
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
);
|
);
|
||||||
}, { noop: true });
|
}, { noop: true });
|
||||||
|
|
|
@ -77,10 +77,10 @@ export default definePlugin({
|
||||||
}, */
|
}, */
|
||||||
// Friends List
|
// Friends List
|
||||||
{
|
{
|
||||||
find: ".avatar,animate:",
|
find: "null!=this.peopleListItemRef.current",
|
||||||
replacement: {
|
replacement: {
|
||||||
match: /\.subtext,children:.+?}\)\]}\)(?=])/,
|
match: /\.actions,children:\[/,
|
||||||
replace: "$&,$self.VoiceChannelIndicator({userId:arguments[0]?.user?.id})"
|
replace: "$&$self.VoiceChannelIndicator({userId:this?.props?.user?.id,size:20,isActionButton:true}),"
|
||||||
},
|
},
|
||||||
predicate: () => settings.store.showInMemberList
|
predicate: () => settings.store.showInMemberList
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
.vc-uvs-speaker {
|
.vc-uvs-speaker {
|
||||||
color: var(--interactive-normal);
|
color: var(--interactive-normal);
|
||||||
padding: 0 4px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
@ -14,6 +13,18 @@
|
||||||
color: var(--interactive-hover);
|
color: var(--interactive-hover);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.vc-uvs-speaker-padding {
|
||||||
|
padding: 0 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-uvs-indicator-action-button {
|
||||||
|
background-color: var(--background-secondary);
|
||||||
|
border-radius: 100%;
|
||||||
|
height: 36px;
|
||||||
|
width: 36px;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.vc-uvs-tooltip-container {
|
.vc-uvs-tooltip-container {
|
||||||
max-width: 300px;
|
max-width: 300px;
|
||||||
}
|
}
|
||||||
|
@ -24,7 +35,7 @@
|
||||||
gap: 6px;
|
gap: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.vc-uvs-guild-name {
|
.vc-uvs-name {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
|
|
Loading…
Reference in a new issue