mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
refactor: remove all legacy files
+ comment/delete things that haven't yet migrated to mantine
This commit is contained in:
103
inertia/layouts/form_layout.tsx
Normal file
103
inertia/layouts/form_layout.tsx
Normal file
@@ -0,0 +1,103 @@
|
||||
import { Head, Link } from '@inertiajs/react';
|
||||
import { route } from '@izzyjs/route/client';
|
||||
import { Anchor, Button, Container, Group, rem, Title } from '@mantine/core';
|
||||
import { FormEvent, PropsWithChildren } from 'react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { MantineFooter } from '~/components/footer/footer';
|
||||
import i18n from '~/i18n';
|
||||
import BaseLayout from '~/layouts/_base_layout';
|
||||
import { appendCollectionId } from '~/lib/navigation';
|
||||
|
||||
export interface FormLayoutProps extends PropsWithChildren {
|
||||
title: string;
|
||||
|
||||
canSubmit: boolean;
|
||||
handleSubmit: (event: FormEvent<HTMLFormElement>) => void;
|
||||
textSubmitButton?: string;
|
||||
|
||||
disableHomeLink?: boolean;
|
||||
submitBtnDanger?: boolean;
|
||||
collectionId?: number;
|
||||
}
|
||||
|
||||
function FormLayout({
|
||||
title,
|
||||
children,
|
||||
|
||||
canSubmit,
|
||||
handleSubmit,
|
||||
textSubmitButton = i18n.t('common:form.confirm'),
|
||||
|
||||
disableHomeLink = false,
|
||||
submitBtnDanger = false,
|
||||
collectionId,
|
||||
}: FormLayoutProps) {
|
||||
const { t } = useTranslation('common');
|
||||
return (
|
||||
<Container
|
||||
style={{
|
||||
minHeight: '100%',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
}}
|
||||
pt={80}
|
||||
>
|
||||
<main
|
||||
style={{
|
||||
display: 'flex',
|
||||
flex: 1,
|
||||
alignItems: 'center',
|
||||
flexDirection: 'column',
|
||||
}}
|
||||
>
|
||||
<Head title={title} />
|
||||
<form
|
||||
onSubmit={handleSubmit}
|
||||
style={{
|
||||
maxWidth: '100%',
|
||||
width: rem(600),
|
||||
}}
|
||||
>
|
||||
<Title order={1} size="h2" c="blue">
|
||||
{title}
|
||||
</Title>
|
||||
{children}
|
||||
|
||||
<Group
|
||||
justify={disableHomeLink ? 'flex-end' : 'space-between'}
|
||||
align="center"
|
||||
mt="md"
|
||||
>
|
||||
{!disableHomeLink && (
|
||||
<Anchor
|
||||
component={Link}
|
||||
href={appendCollectionId(route('dashboard').url, collectionId)}
|
||||
disabled={disableHomeLink}
|
||||
>
|
||||
{t('back-home')}
|
||||
</Anchor>
|
||||
)}
|
||||
<Button
|
||||
type="submit"
|
||||
variant="filled"
|
||||
disabled={!canSubmit}
|
||||
color={submitBtnDanger ? 'red' : 'blue'}
|
||||
style={{ transition: 'background-color 0.15s' }}
|
||||
>
|
||||
{textSubmitButton}
|
||||
</Button>
|
||||
</Group>
|
||||
<MantineFooter />
|
||||
</form>
|
||||
</main>
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
||||
const LayoutWrapper = (props: FormLayoutProps) => (
|
||||
<BaseLayout>
|
||||
<FormLayout {...props} />
|
||||
</BaseLayout>
|
||||
);
|
||||
|
||||
export { LayoutWrapper as FormLayout };
|
||||
Reference in New Issue
Block a user