mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-10 11:52:26 +00:00
* New translation keys * Updates in src/components * Updates in src/providers * remove lable in selector, not needed --------- Co-authored-by: Lokowitz <marvinlokowitz@gmail.com>
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
"use client";
|
|
|
|
import ApiKeyContext from "@app/contexts/apiKeyContext";
|
|
import { GetApiKeyResponse } from "@server/routers/apiKeys";
|
|
import { useState } from "react";
|
|
import { useTranslations } from "next-intl";
|
|
|
|
interface ApiKeyProviderProps {
|
|
children: React.ReactNode;
|
|
apiKey: GetApiKeyResponse;
|
|
}
|
|
|
|
export function ApiKeyProvider({ children, apiKey: ak }: ApiKeyProviderProps) {
|
|
const [apiKey, setApiKey] = useState<GetApiKeyResponse>(ak);
|
|
|
|
const t = useTranslations();
|
|
|
|
const updateApiKey = (updatedApiKey: Partial<GetApiKeyResponse>) => {
|
|
if (!apiKey) {
|
|
throw new Error(t('apiKeysErrorNoUpdate'));
|
|
}
|
|
setApiKey((prev) => {
|
|
if (!prev) {
|
|
return prev;
|
|
}
|
|
return {
|
|
...prev,
|
|
...updatedApiKey
|
|
};
|
|
});
|
|
};
|
|
|
|
return (
|
|
<ApiKeyContext.Provider value={{ apiKey, updateApiKey }}>
|
|
{children}
|
|
</ApiKeyContext.Provider>
|
|
);
|
|
}
|
|
|
|
export default ApiKeyProvider;
|