add channel and role count

This commit is contained in:
V 2023-09-05 04:23:21 +02:00
parent 9485d2457a
commit 1757d17661
No known key found for this signature in database
GPG Key ID: A1DC0CFB5615D905
2 changed files with 7 additions and 6 deletions

@ -12,7 +12,7 @@ import { classes } from "@utils/misc";
import { ModalRoot, ModalSize, openModal } from "@utils/modal"; import { ModalRoot, ModalSize, openModal } from "@utils/modal";
import { useAwaiter } from "@utils/react"; import { useAwaiter } from "@utils/react";
import { findByPropsLazy } from "@webpack"; import { findByPropsLazy } from "@webpack";
import { Forms, GuildMemberStore, Parser, SnowflakeUtils, TabBar, UserUtils, useState } from "@webpack/common"; import { Forms, GuildChannelStore, GuildMemberStore, Parser, SnowflakeUtils, TabBar, UserUtils, useState } from "@webpack/common";
import { Guild, User } from "discord-types/general"; import { Guild, User } from "discord-types/general";
const IconUtils = findByPropsLazy("getGuildBannerURL"); const IconUtils = findByPropsLazy("getGuildBannerURL");
@ -145,7 +145,6 @@ function Owner(guildId: string, owner: User) {
} }
function ServerInfoTab({ guild }: GuildProps) { function ServerInfoTab({ guild }: GuildProps) {
// FIXME: This doesn't rerender the mention correctly
const [owner] = useAwaiter(() => UserUtils.fetchUser(guild.ownerId), { const [owner] = useAwaiter(() => UserUtils.fetchUser(guild.ownerId), {
deps: [guild.ownerId], deps: [guild.ownerId],
fallbackValue: null fallbackValue: null
@ -158,12 +157,13 @@ function ServerInfoTab({ guild }: GuildProps) {
"Vanity Link": guild.vanityURLCode ? `discord.gg/${guild.vanityURLCode}` : "-", "Vanity Link": guild.vanityURLCode ? `discord.gg/${guild.vanityURLCode}` : "-",
"Preferred Locale": guild.preferredLocale || "-", "Preferred Locale": guild.preferredLocale || "-",
"Verification Level": ["None", "Low", "Medium", "High", "Highest"][guild.verificationLevel] || "?", "Verification Level": ["None", "Low", "Medium", "High", "Highest"][guild.verificationLevel] || "?",
"Nitro Boosts": guild.premiumSubscriberCount ?? 0, "Nitro Boosts": `${guild.premiumSubscriberCount ?? 0} (Level ${guild.premiumTier ?? 0})`,
"Nitro Boost Level": guild.premiumTier ?? 0, "Channels": GuildChannelStore.getChannels(guild.id)?.count - 1 ?? "?", // - null category
"Roles": Object.keys(guild.roles).length - 1, // - @everyone
}; };
return ( return (
<div className={cl("server-info")}> <div className={cl("info")}>
{Object.entries(Fields).map(([name, node]) => {Object.entries(Fields).map(([name, node]) =>
<div className={cl("server-info-pair")} key={name}> <div className={cl("server-info-pair")} key={name}>
<Forms.FormTitle tag="h5">{name}</Forms.FormTitle> <Forms.FormTitle tag="h5">{name}</Forms.FormTitle>

@ -57,7 +57,7 @@
border-bottom-color: var(--interactive-active); border-bottom-color: var(--interactive-active);
} }
.vc-gp-server-info { .vc-gp-info {
display: grid; display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1em; gap: 1em;
@ -76,4 +76,5 @@
.vc-gp-owner img { .vc-gp-owner img {
height: 20px; height: 20px;
border-radius: 50%; border-radius: 50%;
cursor: pointer;
} }