mirror of
https://github.com/henrygd/beszel.git
synced 2026-09-21 00:47:47 +02:00
Co-authored-by: xiaomiku01 <xiaomiku01@outlook.com> Co-authored-by: henrygd <hank@henrygd.me>
65 lines
2.3 KiB
Go
65 lines
2.3 KiB
Go
import { lazy } from "react"
|
|
import { useIntersectionObserver } from "@/lib/use-intersection-observer"
|
|
import { cn } from "@/lib/utils"
|
|
import { useNetworkMonitors } from "@/lib/use-network-monitors"
|
|
|
|
const ContainersTable = lazy(() => import("../../containers-table/containers-table"))
|
|
|
|
export function LazyContainersTable({ systemId }: { systemId: string }) {
|
|
const { isIntersecting, ref } = useIntersectionObserver({ rootMargin: "90px" })
|
|
return (
|
|
<div ref={ref} className={cn(isIntersecting && "contents")}>
|
|
{isIntersecting && <ContainersTable systemId={systemId} />}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const SmartTable = lazy(() => import("./smart-table"))
|
|
|
|
export function LazySmartTable({ systemId }: { systemId: string }) {
|
|
const { isIntersecting, ref } = useIntersectionObserver({ rootMargin: "90px" })
|
|
return (
|
|
<div ref={ref} className={cn(isIntersecting && "contents")}>
|
|
{isIntersecting && <SmartTable systemId={systemId} />}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const ZfsTable = lazy(() => import("./storage-pools-table"))
|
|
|
|
export function LazyZfsTable({ systemId }: { systemId: string }) {
|
|
const { isIntersecting, ref } = useIntersectionObserver({ rootMargin: "90px" })
|
|
return (
|
|
<div ref={ref} className={cn(isIntersecting && "contents")}>
|
|
{isIntersecting && <ZfsTable systemId={systemId} />}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const SystemdTable = lazy(() => import("../../systemd-table/systemd-table"))
|
|
|
|
export function LazySystemdTable({ systemId }: { systemId: string }) {
|
|
const { isIntersecting, ref } = useIntersectionObserver()
|
|
return (
|
|
<div ref={ref} className={cn(isIntersecting && "contents")}>
|
|
{isIntersecting && <SystemdTable systemId={systemId} />}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const NetworkMonitorsTable = lazy(() => import("../../network-monitors-table/network-monitors-table"))
|
|
|
|
export function LazyNetworkMonitorsTable({ systemId }: { systemId: string }) {
|
|
const { isIntersecting, ref } = useIntersectionObserver({ rootMargin: "90px" })
|
|
return (
|
|
<div ref={ref} className={cn(isIntersecting && "contents")}>
|
|
{isIntersecting && <SystemNetworkMonitorsTable systemId={systemId} />}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function SystemNetworkMonitorsTable({ systemId }: { systemId: string }) {
|
|
const { monitors, isLoading } = useNetworkMonitors({ systemId })
|
|
return <NetworkMonitorsTable systemId={systemId} monitors={monitors} isLoading={isLoading} />
|
|
}
|