it-tools/packages/app/src/modules/tools/pages/tool.page.tsx

35 lines
1 KiB
TypeScript
Raw Normal View History

2024-09-30 09:04:13 +02:00
import { useI18n } from '@/modules/i18n/i18n.provider';
import { safely } from '@corentinth/chisels';
import { useParams } from '@solidjs/router';
import { type Component, createResource, lazy, Show } from 'solid-js';
2024-09-30 09:04:13 +02:00
import { CurrentToolProvider } from '../tools.provider';
import { getToolDefinitionBySlug } from '../tools.registry';
export const ToolPage: Component = () => {
const params = useParams();
const { getLocale } = useI18n();
const toolDefinition = getToolDefinitionBySlug({ slug: params.toolSlug });
const ToolComponent = lazy(toolDefinition.entryFile);
const [toolDict] = createResource(getLocale, async (locale) => {
const [dict, error] = await safely(import(`../definitions/${toolDefinition.dirName}/locales/${locale}.json`));
2024-09-30 09:04:13 +02:00
if (error) {
console.error(error);
}
return dict ?? { default: {} };
2024-09-30 09:04:13 +02:00
});
return (
<Show when={toolDict()}>
{toolLocaleDict => (
<CurrentToolProvider toolLocaleDict={toolLocaleDict}>
<ToolComponent />
</CurrentToolProvider>
)}
</Show>
);
};