File size: 2,042 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import React from "react";
import {
  LATEST_SETTINGS_VERSION,
  Settings,
  settingsAreUpToDate,
} from "#/services/settings";
import { useSettings } from "#/hooks/query/use-settings";
import { useSaveSettings } from "#/hooks/mutation/use-save-settings";

interface SettingsContextType {
  isUpToDate: boolean;
  setIsUpToDate: (value: boolean) => void;
  saveUserSettings: (newSettings: Partial<Settings>) => Promise<void>;
  settings: Settings | undefined;
}

const SettingsContext = React.createContext<SettingsContextType | undefined>(
  undefined,
);

interface SettingsProviderProps {
  children: React.ReactNode;
}

export function SettingsProvider({ children }: SettingsProviderProps) {
  const { data: userSettings } = useSettings();
  const { mutateAsync: saveSettings } = useSaveSettings();

  const [isUpToDate, setIsUpToDate] = React.useState(settingsAreUpToDate());

  const saveUserSettings = async (newSettings: Partial<Settings>) => {
    const updatedSettings: Partial<Settings> = {
      ...userSettings,
      ...newSettings,
    };

    if (updatedSettings.LLM_API_KEY === "SET") {
      delete updatedSettings.LLM_API_KEY;
    }

    await saveSettings(updatedSettings, {
      onSuccess: () => {
        if (!isUpToDate) {
          localStorage.setItem(
            "SETTINGS_VERSION",
            LATEST_SETTINGS_VERSION.toString(),
          );
          setIsUpToDate(true);
        }
      },
    });
  };

  const value = React.useMemo(
    () => ({
      isUpToDate,
      setIsUpToDate,
      saveUserSettings,
      settings: userSettings,
    }),
    [isUpToDate, setIsUpToDate, saveUserSettings, userSettings],
  );

  return <SettingsContext value={value}>{children}</SettingsContext>;
}

export function useCurrentSettings() {
  const context = React.useContext(SettingsContext);
  if (context === undefined) {
    throw new Error(
      "useCurrentSettings must be used within a SettingsProvider",
    );
  }
  return context;
}