mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 12:20:34 +00:00

* perf: handle edge check * search model * feat: plugin input can render all input; fix: plugin default value * fix ts * feat: plugin input support required
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import { createContext, useContextSelector } from 'use-context-selector';
|
|
import { useTranslation } from 'next-i18next';
|
|
import { TFunction } from 'i18next';
|
|
|
|
type I18nContextType = {
|
|
commonT: TFunction<['common'], undefined>;
|
|
appT: TFunction<['app'], undefined>;
|
|
datasetT: TFunction<['dataset'], undefined>;
|
|
fileT: TFunction<['file'], undefined>;
|
|
publishT: TFunction<['publish'], undefined>;
|
|
workflowT: TFunction<['workflow'], undefined>;
|
|
};
|
|
|
|
export const I18nContext = createContext<I18nContextType>({
|
|
// @ts-ignore
|
|
commonT: undefined
|
|
});
|
|
|
|
const I18nContextProvider = ({ children }: { children: React.ReactNode }) => {
|
|
const { t: commonT } = useTranslation('common');
|
|
const { t: appT } = useTranslation('app');
|
|
const { t: datasetT } = useTranslation('dataset');
|
|
const { t: fileT } = useTranslation('file');
|
|
const { t: publishT } = useTranslation('publish');
|
|
const { t: workflowT } = useTranslation('workflow');
|
|
|
|
return (
|
|
<I18nContext.Provider
|
|
value={{
|
|
commonT,
|
|
appT,
|
|
datasetT,
|
|
fileT,
|
|
publishT,
|
|
workflowT
|
|
}}
|
|
>
|
|
{children}
|
|
</I18nContext.Provider>
|
|
);
|
|
};
|
|
|
|
export default I18nContextProvider;
|
|
|
|
export const useI18n = () => {
|
|
return useContextSelector(I18nContext, (ctx) => ctx);
|
|
};
|