mirror of
https://github.com/henrygd/beszel.git
synced 2026-04-09 22:41:50 +02:00
- System page tabs display option - Remove very specific chart components (disk usage, container cpu, etc) and refactor to use more flexible area and line chart components - Optimizations around chart handling to decrease mem usage. Charts are only redrawn now if in view. - Resolve most of the react dev warnings Co-authored-by: sveng93 <svenvanginkel@icloud.com>
37 lines
1.2 KiB
Go
37 lines
1.2 KiB
Go
import { lazy } from "react"
|
|
import { useIntersectionObserver } from "@/lib/use-intersection-observer"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
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 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>
|
|
)
|
|
}
|