mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-08-11 05:30:29 +02:00
157 lines
4.7 KiB
TypeScript
157 lines
4.7 KiB
TypeScript
import { invoke } from "@tauri-apps/api/core";
|
|
import { listen } from "@tauri-apps/api/event";
|
|
import { useCallback, useEffect, useState } from "react";
|
|
import i18n from "@/i18n";
|
|
import type { BrowserProfile, GroupWithCount } from "@/types";
|
|
|
|
interface UseProfileEventsReturn {
|
|
profiles: BrowserProfile[];
|
|
groups: GroupWithCount[];
|
|
runningProfiles: Set<string>;
|
|
isLoading: boolean;
|
|
error: string | null;
|
|
loadProfiles: () => Promise<void>;
|
|
loadGroups: () => Promise<void>;
|
|
clearError: () => void;
|
|
}
|
|
|
|
/**
|
|
* Custom hook to manage profile-related state and listen for backend events.
|
|
* This hook eliminates the need for manual UI refreshes by automatically
|
|
* updating state when the backend emits profile change events.
|
|
*/
|
|
export function useProfileEvents(): UseProfileEventsReturn {
|
|
const [profiles, setProfiles] = useState<BrowserProfile[]>([]);
|
|
const [groups, setGroups] = useState<GroupWithCount[]>([]);
|
|
const [runningProfiles, setRunningProfiles] = useState<Set<string>>(
|
|
new Set(),
|
|
);
|
|
const [isLoading, setIsLoading] = useState(true);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
// Load profiles from backend
|
|
const loadProfiles = useCallback(async () => {
|
|
try {
|
|
const profileList = await invoke<BrowserProfile[]>(
|
|
"list_browser_profiles",
|
|
);
|
|
setProfiles(profileList);
|
|
setError(null);
|
|
} catch (err: unknown) {
|
|
console.error("Failed to load profiles:", err);
|
|
setError(
|
|
i18n.t("errors.loadProfilesFailed", { error: JSON.stringify(err) }),
|
|
);
|
|
}
|
|
}, []);
|
|
|
|
// Load groups from backend
|
|
const loadGroups = useCallback(async () => {
|
|
try {
|
|
const groupsWithCounts = await invoke<GroupWithCount[]>(
|
|
"get_groups_with_profile_counts",
|
|
);
|
|
setGroups(groupsWithCounts);
|
|
setError(null);
|
|
} catch (err) {
|
|
console.error("Failed to load groups with counts:", err);
|
|
setGroups([]);
|
|
}
|
|
}, []);
|
|
|
|
// Clear error state
|
|
const clearError = useCallback(() => {
|
|
setError(null);
|
|
}, []);
|
|
|
|
// Initial load and event listeners setup
|
|
useEffect(() => {
|
|
let profilesUnlisten: (() => void) | undefined;
|
|
let runningUnlisten: (() => void) | undefined;
|
|
|
|
const setupListeners = async () => {
|
|
try {
|
|
// Initial load
|
|
await Promise.all([loadProfiles(), loadGroups()]);
|
|
|
|
// Listen for profile changes (create, delete, rename, update, etc.)
|
|
profilesUnlisten = await listen("profiles-changed", () => {
|
|
console.log(
|
|
"Received profiles-changed event, reloading profiles and groups",
|
|
);
|
|
void loadProfiles();
|
|
void loadGroups();
|
|
});
|
|
|
|
// Listen for profile running state changes
|
|
runningUnlisten = await listen<{ id: string; is_running: boolean }>(
|
|
"profile-running-changed",
|
|
(event) => {
|
|
const { id, is_running } = event.payload;
|
|
setRunningProfiles((prev) => {
|
|
const next = new Set(prev);
|
|
if (is_running) {
|
|
next.add(id);
|
|
} else {
|
|
next.delete(id);
|
|
}
|
|
return next;
|
|
});
|
|
},
|
|
);
|
|
|
|
console.log("Profile event listeners set up successfully");
|
|
} catch (err) {
|
|
console.error("Failed to setup profile event listeners:", err);
|
|
setError(
|
|
i18n.t("errors.setupProfileListenersFailed", {
|
|
error: JSON.stringify(err),
|
|
}),
|
|
);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
void setupListeners();
|
|
|
|
// Cleanup listeners on unmount
|
|
return () => {
|
|
if (profilesUnlisten) profilesUnlisten();
|
|
if (runningUnlisten) runningUnlisten();
|
|
};
|
|
}, [loadProfiles, loadGroups]);
|
|
|
|
// Hydrate the initial runningProfiles set from the loaded list — every
|
|
// profile that has a stored process_id is a candidate. The Rust status
|
|
// checker emits profile-running-changed for any transitions; we then
|
|
// mutate the Set incrementally instead of fan-out-polling all N profiles
|
|
// every 30s (which was O(N) sysinfo scans and saturated the runtime for
|
|
// users with hundreds of profiles).
|
|
useEffect(() => {
|
|
setRunningProfiles((prev) => {
|
|
const next = new Set(prev);
|
|
for (const p of profiles) {
|
|
if (p.process_id != null) next.add(p.id);
|
|
}
|
|
// Drop ids for profiles that no longer exist
|
|
const valid = new Set(profiles.map((p) => p.id));
|
|
for (const id of next) {
|
|
if (!valid.has(id)) next.delete(id);
|
|
}
|
|
return next;
|
|
});
|
|
}, [profiles]);
|
|
|
|
return {
|
|
profiles,
|
|
groups,
|
|
runningProfiles,
|
|
isLoading,
|
|
error,
|
|
loadProfiles,
|
|
loadGroups,
|
|
clearError,
|
|
};
|
|
}
|