add skeleton to launch netbird ui at login and own context

This commit is contained in:
Eduard Gert
2026-06-01 14:57:31 +02:00
parent 101e04f9fb
commit a4ad93008b
4 changed files with 119 additions and 48 deletions
@@ -8,7 +8,7 @@ import {
type ReactNode,
} from "react";
import { Dialogs } from "@wailsio/runtime";
import { Settings as SettingsSvc } from "@bindings/services";
import { Autostart, Settings as SettingsSvc } from "@bindings/services";
import type { Config } from "@bindings/services/models.js";
import i18next from "@/lib/i18n";
import { useProfile } from "@/contexts/ProfileContext.tsx";
@@ -17,6 +17,8 @@ import { formatErrorMessage as errorMessage } from "@/lib/errors.ts";
const SAVE_DEBOUNCE_MS = 400;
export type AutostartState = { supported: boolean; enabled: boolean };
type SettingsContextValue = {
config: Config;
setField: <K extends keyof Config>(k: K, v: Config[K]) => void;
@@ -25,7 +27,13 @@ type SettingsContextValue = {
saveNow: () => Promise<void>;
};
type AutostartContextValue = {
autostart: AutostartState | null;
setAutostartEnabled: (enabled: boolean) => Promise<void>;
};
const SettingsContext = createContext<SettingsContextValue | null>(null);
const AutostartContext = createContext<AutostartContextValue | null>(null);
export const useSettings = () => {
const ctx = useContext(SettingsContext);
@@ -35,6 +43,16 @@ export const useSettings = () => {
return ctx;
};
export const useAutostartSetting = () => {
const ctx = useContext(AutostartContext);
if (!ctx) {
throw new Error(
"useAutostartSetting must be used inside AutostartSettingsProvider",
);
}
return ctx;
};
const useSettingsState = () => {
const { username, activeProfile, loaded: profileLoaded } = useProfile();
const [config, setConfig] = useState<Config | null>(null);
@@ -167,3 +185,42 @@ export const SettingsProvider = ({ children }: { children: ReactNode }) => {
</div>
);
};
export const AutostartSettingsProvider = ({ children }: { children: ReactNode }) => {
const [autostart, setAutostart] = useState<AutostartState | null>(null);
useEffect(() => {
let cancelled = false;
(async () => {
const supported = await Autostart.Supported();
const enabled = supported ? await Autostart.IsEnabled() : false;
if (cancelled) return;
setAutostart({ supported, enabled });
})().catch(() => {
if (cancelled) return;
setAutostart({ supported: false, enabled: false });
});
return () => {
cancelled = true;
};
}, []);
const setAutostartEnabled = useCallback(async (enabled: boolean) => {
setAutostart((s) => (s ? { ...s, enabled } : s));
try {
await Autostart.SetEnabled(enabled);
} catch (e) {
setAutostart((s) => (s ? { ...s, enabled: !enabled } : s));
await Dialogs.Error({
Title: i18next.t("settings.general.autostart.errorTitle"),
Message: errorMessage(e),
});
}
}, []);
return (
<AutostartContext.Provider value={{ autostart, setAutostartEnabled }}>
{children}
</AutostartContext.Provider>
);
};