mirror of
https://github.com/woodchen-ink/nezha-dash-v1.git
synced 2025-07-18 09:31:55 +08:00
70 lines
2.2 KiB
TypeScript
70 lines
2.2 KiB
TypeScript
import { PublicNoteData, cn } from "@/lib/utils"
|
|
|
|
export default function PlanInfo({ parsedData }: { parsedData: PublicNoteData }) {
|
|
if (!parsedData || !parsedData.planDataMod) {
|
|
return null
|
|
}
|
|
return (
|
|
<section className="flex gap-1 items-center flex-wrap mt-0.5">
|
|
{parsedData.planDataMod.bandwidth !== "" && (
|
|
<p
|
|
className={cn(
|
|
"text-[9px] bg-blue-600 dark:bg-blue-800 text-blue-200 dark:text-blue-300 w-fit rounded-[5px] px-[3px] py-[1.5px]",
|
|
)}
|
|
>
|
|
{parsedData.planDataMod.bandwidth}
|
|
</p>
|
|
)}
|
|
{parsedData.planDataMod.trafficVol !== "" && (
|
|
<p
|
|
className={cn(
|
|
"text-[9px] bg-green-600 text-green-200 dark:bg-green-800 dark:text-green-300 w-fit rounded-[5px] px-[3px] py-[1.5px]",
|
|
)}
|
|
>
|
|
{parsedData.planDataMod.trafficVol}
|
|
</p>
|
|
)}
|
|
{parsedData.planDataMod.IPv4 === "1" && (
|
|
<p
|
|
className={cn(
|
|
"text-[9px] bg-purple-600 text-purple-200 dark:bg-purple-800 dark:text-purple-300 w-fit rounded-[5px] px-[3px] py-[1.5px]",
|
|
)}
|
|
>
|
|
IPv4
|
|
</p>
|
|
)}
|
|
{parsedData.planDataMod.IPv6 === "1" && (
|
|
<p
|
|
className={cn(
|
|
"text-[9px] bg-pink-600 text-pink-200 dark:bg-pink-800 dark:text-pink-300 w-fit rounded-[5px] px-[3px] py-[1.5px]",
|
|
)}
|
|
>
|
|
IPv6
|
|
</p>
|
|
)}
|
|
{parsedData.planDataMod.networkRoute && (
|
|
<p
|
|
className={cn(
|
|
"text-[9px] bg-blue-600 text-blue-200 dark:bg-blue-800 dark:text-blue-300 w-fit rounded-[5px] px-[3px] py-[1.5px]",
|
|
)}
|
|
>
|
|
{parsedData.planDataMod.networkRoute.split(",").map((route) => {
|
|
return route
|
|
})}
|
|
</p>
|
|
)}
|
|
{parsedData.planDataMod.extra && (
|
|
<p
|
|
className={cn(
|
|
"text-[9px] bg-stone-600 text-stone-200 dark:bg-stone-800 dark:text-stone-300 w-fit rounded-[5px] px-[3px] py-[1.5px]",
|
|
)}
|
|
>
|
|
{parsedData.planDataMod.extra.split(",").map((extra) => {
|
|
return extra
|
|
})}
|
|
</p>
|
|
)}
|
|
</section>
|
|
)
|
|
}
|