/* * 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 . */ import "./styles.css"; import { definePluginSettings } from "@api/settings"; import ErrorBoundary from "@components/ErrorBoundary"; import { Devs } from "@utils/constants"; import { copyWithToast, LazyComponent } from "@utils/misc"; import definePlugin, { OptionType } from "@utils/types"; import { findByCode, findByCodeLazy, findByPropsLazy, findStoreLazy } from "@webpack"; import { Text, Tooltip } from "@webpack/common"; import { User } from "discord-types/general"; const Section = LazyComponent(() => findByCode("().lastSection")); const UserProfileStore = findStoreLazy("UserProfileStore"); const ThemeStore = findStoreLazy("ThemeStore"); const platforms: { get(type: string): ConnectionPlatform; } = findByPropsLazy("isSupported", "getByUrl"); const getTheme: (user: User, displayProfile: any) => any = findByCodeLazy(',"--profile-gradient-primary-color"'); const enum Spacing { COMPACT, COZY, ROOMY } const getSpacingPx = (spacing: Spacing | undefined) => (spacing ?? Spacing.COMPACT) * 2 + 4; const settings = definePluginSettings({ iconSize: { type: OptionType.NUMBER, description: "Icon size (px)", default: 32 }, iconSpacing: { type: OptionType.SELECT, description: "Icon margin", default: Spacing.COZY, options: [ { label: "Compact", value: Spacing.COMPACT }, { label: "Cozy", value: Spacing.COZY }, // US Spelling :/ { label: "Roomy", value: Spacing.ROOMY } ] } }); interface Connection { type: string; id: string; name: string; verified: boolean; } interface ConnectionPlatform { getPlatformUserUrl(connection: Connection): string; icon: { lightSVG: string, darkSVG: string; }; } const profilePopoutComponent = ErrorBoundary.wrap(e => ); const profilePanelComponent = ErrorBoundary.wrap(e => ); function ConnectionsComponent({ id, theme }: { id: string, theme: string; }) { const profile = UserProfileStore.getUserProfile(id); if (!profile) return null; const connections: Connection[] = profile.connectedAccounts; if (!connections?.length) return null; return (
Connections {connections.map(connection => )}
); } function CompactConnectionComponent({ connection, theme }: { connection: Connection, theme: string; }) { const platform = platforms.get(connection.type); const url = platform.getPlatformUserUrl?.(connection); const img = ( ); return ( {tooltipProps => url ? {img} : } ); } export default definePlugin({ name: "ShowConnections", description: "Show connected accounts in user popouts", authors: [Devs.TheKodeToad], patches: [ { find: ".Messages.BOT_PROFILE_SLASH_COMMANDS", replacement: { match: /,theme:\i\}\)(?=,.{0,100}setNote:)/, replace: "$&,$self.profilePopoutComponent(arguments[0])" } }, { find: "\"Profile Panel: user cannot be undefined\"", replacement: { // createElement(Divider, {}), createElement(NoteComponent) match: /\(0,\i\.jsx\)\(\i\.\i,\{\}\).{0,100}setNote:/, replace: "$self.profilePanelComponent(arguments[0]),$&" } } ], settings, profilePopoutComponent, profilePanelComponent });