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';
|
2024-10-02 22:30:45 +02:00
|
|
|
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) => {
|
2024-10-02 22:30:45 +02:00
|
|
|
const [dict, error] = await safely(import(`../definitions/${toolDefinition.dirName}/locales/${locale}.json`));
|
2024-09-30 09:04:13 +02:00
|
|
|
|
2024-10-02 22:30:45 +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>
|
|
|
|
);
|
|
|
|
};
|