2023-04-06 01:22:54 +00:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2023-05-05 23:36:00 +00:00
|
|
|
import { definePluginSettings } from "@api/Settings";
|
2023-04-06 01:22:54 +00:00
|
|
|
import ErrorBoundary from "@components/ErrorBoundary";
|
|
|
|
import { Devs } from "@utils/constants";
|
|
|
|
import definePlugin, { OptionType } from "@utils/types";
|
2023-10-18 21:54:35 +00:00
|
|
|
import { findStoreLazy } from "@webpack";
|
2023-04-30 13:29:45 +00:00
|
|
|
import { ChannelStore, GuildStore, UserStore } from "@webpack/common";
|
2023-04-06 01:22:54 +00:00
|
|
|
import { User } from "discord-types/general";
|
|
|
|
|
|
|
|
import { VoiceChannelSection } from "./components/VoiceChannelSection";
|
|
|
|
|
|
|
|
const VoiceStateStore = findStoreLazy("VoiceStateStore");
|
|
|
|
|
|
|
|
const settings = definePluginSettings({
|
|
|
|
showInUserProfileModal: {
|
|
|
|
type: OptionType.BOOLEAN,
|
|
|
|
description: "Show a user's voice channel in their profile modal",
|
|
|
|
default: true,
|
|
|
|
},
|
|
|
|
showVoiceChannelSectionHeader: {
|
|
|
|
type: OptionType.BOOLEAN,
|
|
|
|
description: 'Whether to show "IN A VOICE CHANNEL" above the join button',
|
|
|
|
default: true,
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
interface UserProps {
|
|
|
|
user: User;
|
|
|
|
}
|
|
|
|
|
|
|
|
const VoiceChannelField = ErrorBoundary.wrap(({ user }: UserProps) => {
|
|
|
|
const { channelId } = VoiceStateStore.getVoiceStateForUser(user.id) ?? {};
|
|
|
|
if (!channelId) return null;
|
|
|
|
|
|
|
|
const channel = ChannelStore.getChannel(channelId);
|
2023-08-02 22:12:48 +00:00
|
|
|
if (!channel) return null;
|
|
|
|
|
2023-04-06 01:22:54 +00:00
|
|
|
const guild = GuildStore.getGuild(channel.guild_id);
|
|
|
|
|
|
|
|
if (!guild) return null; // When in DM call
|
|
|
|
|
|
|
|
const result = `${guild.name} | ${channel.name}`;
|
|
|
|
|
|
|
|
return (
|
2023-04-30 13:29:45 +00:00
|
|
|
<VoiceChannelSection
|
|
|
|
channel={channel}
|
|
|
|
label={result}
|
|
|
|
showHeader={settings.store.showVoiceChannelSectionHeader}
|
|
|
|
/>
|
2023-04-06 01:22:54 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
export default definePlugin({
|
|
|
|
name: "UserVoiceShow",
|
|
|
|
description: "Shows whether a User is currently in a voice channel somewhere in their profile",
|
|
|
|
authors: [Devs.LordElias],
|
|
|
|
settings,
|
|
|
|
|
|
|
|
patchModal({ user }: UserProps) {
|
|
|
|
if (!settings.store.showInUserProfileModal)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="vc-uvs-modal-margin">
|
|
|
|
<VoiceChannelField user={user} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2023-04-30 13:29:45 +00:00
|
|
|
patchPopout: ({ user }: UserProps) => {
|
|
|
|
const isSelfUser = user.id === UserStore.getCurrentUser().id;
|
|
|
|
return (
|
2023-10-18 21:54:35 +00:00
|
|
|
<div className={isSelfUser ? "vc-uvs-popout-margin-self" : ""}>
|
2023-04-30 13:29:45 +00:00
|
|
|
<VoiceChannelField user={user} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
2023-04-06 01:22:54 +00:00
|
|
|
|
|
|
|
patches: [
|
2023-10-25 22:36:23 +00:00
|
|
|
// above message box
|
2023-04-06 01:22:54 +00:00
|
|
|
{
|
2024-02-10 00:27:34 +00:00
|
|
|
find: ".popularApplicationCommandIds,",
|
2023-04-06 01:22:54 +00:00
|
|
|
replacement: {
|
2023-10-25 22:36:23 +00:00
|
|
|
match: /\(0,\i\.jsx\)\(\i\.\i,{user:\i,setNote/,
|
2023-04-06 01:22:54 +00:00
|
|
|
replace: "$self.patchPopout(arguments[0]),$&",
|
|
|
|
}
|
|
|
|
},
|
2023-10-25 22:36:23 +00:00
|
|
|
// below username
|
2023-04-06 01:22:54 +00:00
|
|
|
{
|
|
|
|
find: ".USER_PROFILE_MODAL",
|
|
|
|
replacement: {
|
2023-10-25 22:36:23 +00:00
|
|
|
match: /\.body.+?displayProfile:\i}\),/,
|
2023-04-30 13:29:45 +00:00
|
|
|
replace: "$&$self.patchModal(arguments[0]),",
|
2023-04-06 01:22:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
});
|