File size: 6,486 Bytes
6a7089a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | import { create } from "zustand";
import type {
Profile,
Instance,
InstanceTab,
Agent,
ActivityEvent,
Settings,
} from "../generated/types";
import type { DashboardServerInfo, MonitoringSnapshot } from "../types";
export interface TabDataPoint {
timestamp: number;
[instanceId: string]: number;
}
export interface MemoryDataPoint {
timestamp: number;
[instanceId: string]: number; // jsHeapUsedMB
}
export interface ServerDataPoint {
timestamp: number;
goHeapMB: number;
goroutines: number;
rateBucketHosts: number;
}
interface AppState {
// Profiles
profiles: Profile[];
profilesLoading: boolean;
setProfiles: (profiles: Profile[]) => void;
setProfilesLoading: (loading: boolean) => void;
// Instances
instances: Instance[];
instancesLoading: boolean;
setInstances: (instances: Instance[]) => void;
setInstancesLoading: (loading: boolean) => void;
// Chart data (persists across navigation)
tabsChartData: TabDataPoint[];
memoryChartData: MemoryDataPoint[];
serverChartData: ServerDataPoint[];
currentTabs: Record<string, InstanceTab[]>;
currentMemory: Record<string, number>; // instanceId -> jsHeapUsedMB
addChartDataPoint: (point: TabDataPoint) => void;
addMemoryDataPoint: (point: MemoryDataPoint) => void;
addServerDataPoint: (point: ServerDataPoint) => void;
setCurrentTabs: (tabs: Record<string, InstanceTab[]>) => void;
setCurrentMemory: (memory: Record<string, number>) => void;
applyMonitoringSnapshot: (
snapshot: MonitoringSnapshot,
includeMemory: boolean,
) => void;
// Agents
agents: Agent[];
selectedAgentId: string | null;
setAgents: (agents: Agent[]) => void;
setSelectedAgentId: (id: string | null) => void;
// Activity feed
events: ActivityEvent[];
eventFilter: string;
addEvent: (event: ActivityEvent) => void;
setEventFilter: (filter: string) => void;
clearEvents: () => void;
// Settings
settings: Settings;
setSettings: (settings: Settings) => void;
// Server info
serverInfo: DashboardServerInfo | null;
setServerInfo: (info: DashboardServerInfo | null) => void;
}
const defaultSettings: Settings = {
screencast: { fps: 1, quality: 30, maxWidth: 800 },
stealth: "light",
browser: { blockImages: false, blockMedia: false, noAnimations: false },
monitoring: { memoryMetrics: false, pollInterval: 30 },
};
const SETTINGS_KEY = "pinchtab_settings";
function loadSettings(): Settings {
try {
const saved = localStorage.getItem(SETTINGS_KEY);
if (saved) {
return { ...defaultSettings, ...JSON.parse(saved) };
}
} catch {
// ignore parse errors
}
return defaultSettings;
}
function saveSettings(settings: Settings) {
try {
localStorage.setItem(SETTINGS_KEY, JSON.stringify(settings));
} catch {
// ignore storage errors
}
}
export const useAppStore = create<AppState>((set) => ({
// Profiles
profiles: [],
profilesLoading: false,
setProfiles: (profiles) => set({ profiles }),
setProfilesLoading: (profilesLoading) => set({ profilesLoading }),
// Instances
instances: [],
instancesLoading: false,
setInstances: (instances) => set({ instances }),
setInstancesLoading: (instancesLoading) => set({ instancesLoading }),
// Chart data
tabsChartData: [],
memoryChartData: [],
serverChartData: [],
currentTabs: {},
currentMemory: {},
addChartDataPoint: (point) =>
set((state) => ({
tabsChartData: [...state.tabsChartData.slice(-59), point], // Keep last 60 points
})),
addMemoryDataPoint: (point) =>
set((state) => ({
memoryChartData: [...state.memoryChartData.slice(-59), point], // Keep last 60 points
})),
addServerDataPoint: (point) =>
set((state) => ({
serverChartData: [...state.serverChartData.slice(-59), point], // Keep last 60 points
})),
setCurrentTabs: (currentTabs) => set({ currentTabs }),
setCurrentMemory: (currentMemory) => set({ currentMemory }),
applyMonitoringSnapshot: (snapshot, includeMemory) =>
set((state) => {
const runningInstances = snapshot.instances.filter(
(instance) => instance?.status === "running",
);
const tabDataPoint: TabDataPoint = { timestamp: snapshot.timestamp };
const memDataPoint: MemoryDataPoint = { timestamp: snapshot.timestamp };
const currentTabs: Record<string, InstanceTab[]> = {};
const currentMemory: Record<string, number> = {};
for (const instance of runningInstances) {
const instanceTabs = snapshot.tabs.filter(
(tab) => tab.instanceId === instance.id,
);
tabDataPoint[instance.id] = instanceTabs.length;
currentTabs[instance.id] = instanceTabs;
if (includeMemory) {
const metrics = snapshot.metrics.find(
(entry) => entry.instanceId === instance.id,
);
if (metrics) {
memDataPoint[instance.id] = metrics.jsHeapUsedMB;
currentMemory[instance.id] = metrics.jsHeapUsedMB;
}
}
}
return {
instances: snapshot.instances,
currentTabs,
currentMemory,
tabsChartData:
runningInstances.length > 0
? [...state.tabsChartData.slice(-59), tabDataPoint]
: state.tabsChartData,
memoryChartData:
includeMemory && runningInstances.length > 0
? [...state.memoryChartData.slice(-59), memDataPoint]
: state.memoryChartData,
serverChartData: [
...state.serverChartData.slice(-59),
{
timestamp: snapshot.timestamp,
goHeapMB: snapshot.serverMetrics.goHeapAllocMB,
goroutines: snapshot.serverMetrics.goNumGoroutine,
rateBucketHosts: snapshot.serverMetrics.rateBucketHosts,
},
],
};
}),
// Agents
agents: [],
selectedAgentId: null,
setAgents: (agents) => set({ agents }),
setSelectedAgentId: (selectedAgentId) => set({ selectedAgentId }),
// Activity feed
events: [],
eventFilter: "all",
addEvent: (event) =>
set((state) => ({ events: [event, ...state.events].slice(0, 100) })),
setEventFilter: (eventFilter) => set({ eventFilter }),
clearEvents: () => set({ events: [] }),
// Settings (persisted to localStorage)
settings: loadSettings(),
setSettings: (settings) => {
saveSettings(settings);
set({ settings });
},
// Server info
serverInfo: null,
setServerInfo: (serverInfo) => set({ serverInfo }),
}));
|