init: 初始化

This commit is contained in:
Montia37
2025-08-13 04:32:05 +08:00
commit af6f7b1d09
343 changed files with 9919 additions and 0 deletions

145
src/pages/Home.tsx Normal file
View File

@@ -0,0 +1,145 @@
import { useState, useMemo } from "react";
import { Button } from "@/components/ui/button";
import { StatsBar } from "@/components/sections/StatsBar";
import { NodeCard } from "@/components/sections/NodeCard";
import { NodeListHeader } from "@/components/sections/NodeListHeader";
import { NodeListItem } from "@/components/sections/NodeListItem";
import Loading from "@/components/loading";
import type { NodeWithStatus } from "@/types/node";
import { useNodeData } from "@/contexts/NodeDataContext";
import { useLiveData } from "@/contexts/LiveDataContext";
interface HomePageProps {
viewMode: "card" | "list";
searchTerm: string;
}
const HomePage: React.FC<HomePageProps> = ({ viewMode, searchTerm }) => {
const { nodes: staticNodes, loading, getGroups } = useNodeData();
const { liveData } = useLiveData();
const [selectedGroup, setSelectedGroup] = useState("所有");
const [displayOptions, setDisplayOptions] = useState({
time: true,
online: true,
regions: true,
traffic: true,
speed: true,
});
const [currentTime] = useState(new Date());
const combinedNodes = useMemo<NodeWithStatus[]>(() => {
if (!staticNodes) return [];
return staticNodes.map((node) => {
const isOnline = liveData?.online.includes(node.uuid) ?? false;
const stats = isOnline ? liveData?.data[node.uuid] : undefined;
return {
...node,
status: isOnline ? "online" : "offline",
stats: stats,
};
});
}, [staticNodes, liveData]);
const groups = useMemo(() => ["所有", ...getGroups()], [getGroups]);
const filteredNodes = useMemo(() => {
return combinedNodes
.filter(
(node: NodeWithStatus) =>
selectedGroup === "所有" || node.group === selectedGroup
)
.filter((node: NodeWithStatus) =>
node.name.toLowerCase().includes(searchTerm.toLowerCase())
);
}, [combinedNodes, selectedGroup, searchTerm]);
const stats = useMemo(() => {
return {
onlineCount: filteredNodes.filter((n) => n.status === "online").length,
totalCount: filteredNodes.length,
uniqueRegions: new Set(filteredNodes.map((n) => n.region)).size,
totalTrafficUp: filteredNodes.reduce(
(acc, node) => acc + (node.stats?.network.totalUp || 0),
0
),
totalTrafficDown: filteredNodes.reduce(
(acc, node) => acc + (node.stats?.network.totalDown || 0),
0
),
currentSpeedUp: filteredNodes.reduce(
(acc, node) => acc + (node.stats?.network.up || 0),
0
),
currentSpeedDown: filteredNodes.reduce(
(acc, node) => acc + (node.stats?.network.down || 0),
0
),
};
}, [filteredNodes]);
return (
<div className="w-[90%] max-w-screen-2xl mx-auto flex-1 flex flex-col pb-10">
<StatsBar
displayOptions={displayOptions}
setDisplayOptions={setDisplayOptions}
stats={stats}
loading={loading}
currentTime={currentTime}
/>
<main className="flex-1 px-4 pb-4">
<div className="flex overflow-auto whitespace-nowrap overflow-x-auto items-center min-w-[300px] text-secondary-foreground box-border border space-x-4 px-4 rounded-lg mb-4 bg-card backdrop-blur-[10px]">
<span></span>
{groups.map((group: string) => (
<Button
key={group}
variant={selectedGroup === group ? "secondary" : "ghost"}
size="sm"
onClick={() => setSelectedGroup(group)}>
{group}
</Button>
))}
</div>
<div className="space-y-4">
{loading ? (
<Loading text="正在努力获取数据中..." />
) : filteredNodes.length > 0 ? (
<div
className={
viewMode === "card"
? ""
: "space-y-2 bg-card overflow-auto backdrop-blur-[10px] rounded-lg p-2"
}>
<div
className={
viewMode === "card"
? "grid grid-cols-[repeat(auto-fill,minmax(280px,1fr))] gap-4"
: "min-w-[1080px]"
}>
{viewMode === "list" && <NodeListHeader />}
{filteredNodes.map((node: NodeWithStatus) =>
viewMode === "card" ? (
<NodeCard key={node.uuid} node={node} />
) : (
<NodeListItem key={node.uuid} node={node} />
)
)}
</div>
</div>
) : (
<div className="text-center py-12">
<p className="text-lg font-bold"></p>
<p className="text-sm text-muted-foreground">
</p>
</div>
)}
</div>
</main>
</div>
);
};
export default HomePage;