mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-26 09:29:30 +02:00
66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
import { Box } from '@mui/material';
|
|
import React, { ReactNode } from 'react';
|
|
import { Helmet } from 'react-helmet';
|
|
import ToolHeader from './ToolHeader';
|
|
import Separator from './Separator';
|
|
import AllTools from './allTools/AllTools';
|
|
import { getToolsByCategory } from '@tools/index';
|
|
import { capitalizeFirstLetter } from '../utils/string';
|
|
import { IconifyIcon } from '@iconify/react';
|
|
|
|
export default function ToolLayout({
|
|
children,
|
|
title,
|
|
description,
|
|
icon,
|
|
type
|
|
}: {
|
|
title: string;
|
|
description: string;
|
|
icon?: IconifyIcon | string;
|
|
type: string;
|
|
children: ReactNode;
|
|
}) {
|
|
const otherCategoryTools =
|
|
getToolsByCategory()
|
|
.find((category) => category.type === type)
|
|
?.tools.filter((tool) => tool.name !== title)
|
|
.map((tool) => ({
|
|
title: tool.name,
|
|
description: tool.shortDescription,
|
|
link: '/' + tool.path,
|
|
icon: tool.icon
|
|
})) ?? [];
|
|
|
|
return (
|
|
<Box
|
|
width={'100%'}
|
|
display={'flex'}
|
|
flexDirection={'column'}
|
|
alignItems={'center'}
|
|
sx={{ backgroundColor: 'background.default' }}
|
|
>
|
|
<Helmet>
|
|
<title>{`${title} - Omni Tools`}</title>
|
|
</Helmet>
|
|
<Box width={'85%'}>
|
|
<ToolHeader
|
|
title={title}
|
|
description={description}
|
|
icon={icon}
|
|
type={type}
|
|
/>
|
|
{children}
|
|
<Separator backgroundColor="#5581b5" margin="50px" />
|
|
<AllTools
|
|
title={`All ${capitalizeFirstLetter(
|
|
getToolsByCategory().find((category) => category.type === type)!
|
|
.rawTitle
|
|
)} tools`}
|
|
toolCards={otherCategoryTools}
|
|
/>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
}
|