mirror of
https://github.com/woodchen-ink/nezha-dash-v1.git
synced 2025-07-18 17:41:56 +08:00
feat: disableShowNetTransfer env
This commit is contained in:
parent
9921a9a9bb
commit
ffcbf4489e
@ -27,6 +27,8 @@ export default function ServerCard({ now, serverInfo }: { now: number; serverInf
|
|||||||
} = formatNezhaInfo(now, serverInfo)
|
} = formatNezhaInfo(now, serverInfo)
|
||||||
|
|
||||||
const showFlag = true
|
const showFlag = true
|
||||||
|
// @ts-expect-error ShowNetTransfer is a global variable
|
||||||
|
const disableShowNetTransfer = window.ShowNetTransfer === "false"
|
||||||
|
|
||||||
const parsedData = parsePublicNote(public_note)
|
const parsedData = parsePublicNote(public_note)
|
||||||
|
|
||||||
@ -121,27 +123,30 @@ export default function ServerCard({ now, serverInfo }: { now: number; serverInf
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section className={"flex items-center justify-between gap-1"}>
|
{!disableShowNetTransfer && (
|
||||||
<Badge
|
<section className={"flex items-center justify-between gap-1"}>
|
||||||
variant="secondary"
|
<Badge
|
||||||
className="items-center flex-1 justify-center rounded-[8px] text-nowrap text-[11px] border-muted-50 shadow-md shadow-neutral-200/30 dark:shadow-none"
|
variant="secondary"
|
||||||
>
|
className="items-center flex-1 justify-center rounded-[8px] text-nowrap text-[11px] border-muted-50 shadow-md shadow-neutral-200/30 dark:shadow-none"
|
||||||
{t("serverCard.upload")}:{formatBytes(net_out_transfer)}
|
>
|
||||||
</Badge>
|
{t("serverCard.upload")}:{formatBytes(net_out_transfer)}
|
||||||
<Badge
|
</Badge>
|
||||||
variant="outline"
|
<Badge
|
||||||
className="items-center flex-1 justify-center rounded-[8px] text-nowrap text-[11px] shadow-md shadow-neutral-200/30 dark:shadow-none"
|
variant="outline"
|
||||||
>
|
className="items-center flex-1 justify-center rounded-[8px] text-nowrap text-[11px] shadow-md shadow-neutral-200/30 dark:shadow-none"
|
||||||
{t("serverCard.download")}:{formatBytes(net_in_transfer)}
|
>
|
||||||
</Badge>
|
{t("serverCard.download")}:{formatBytes(net_in_transfer)}
|
||||||
</section>
|
</Badge>
|
||||||
|
</section>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</Card>
|
</Card>
|
||||||
</section>
|
</section>
|
||||||
) : (
|
) : (
|
||||||
<Card
|
<Card
|
||||||
className={cn(
|
className={cn(
|
||||||
"flex flex-col lg:min-h-[91px] min-h-[123px] items-center justify-start gap-3 p-3 md:px-5 lg:flex-row cursor-pointer hover:bg-accent/50 transition-colors",
|
"flex flex-col items-center justify-start gap-3 p-3 md:px-5 lg:flex-row cursor-pointer hover:bg-accent/50 transition-colors",
|
||||||
|
!disableShowNetTransfer ? "lg:min-h-[91px] min-h-[123px]" : "lg:min-h-[61px] min-h-[93px]",
|
||||||
)}
|
)}
|
||||||
onClick={() => navigate(`/server/${serverInfo.id}`, { replace: true })}
|
onClick={() => navigate(`/server/${serverInfo.id}`, { replace: true })}
|
||||||
>
|
>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user