soapbox/app/soapbox/components/ui/column/column.tsx

63 wiersze
1.4 KiB
TypeScript
Czysty Zwykły widok Historia

2022-03-21 18:09:01 +00:00
import React from 'react';
2022-03-22 12:42:26 +00:00
import { useHistory } from 'react-router-dom';
2022-03-21 18:09:01 +00:00
import Helmet from 'soapbox/components/helmet';
import { Card, CardBody, CardHeader, CardTitle } from '../card/card';
2022-03-22 12:42:26 +00:00
interface IColumn {
2022-03-21 18:09:01 +00:00
backHref?: string,
label?: string,
transparent?: boolean,
withHeader?: boolean,
}
const Column: React.FC<IColumn> = React.forwardRef((props, ref: React.ForwardedRef<HTMLDivElement>): JSX.Element => {
2022-03-22 12:42:26 +00:00
const { backHref, children, label, transparent = false, withHeader = true } = props;
const history = useHistory();
const handleBackClick = () => {
if (backHref) {
history.push(backHref);
return;
}
if (history.length === 1) {
history.push('/');
} else {
history.goBack();
}
};
2022-03-21 18:09:01 +00:00
const renderChildren = () => {
if (transparent) {
return <div className='bg-white dark:bg-slate-800 sm:bg-transparent sm:dark:bg-transparent'>{children}</div>;
2022-03-21 18:09:01 +00:00
}
return (
<Card variant='rounded'>
{withHeader ? (
<CardHeader onBackClick={handleBackClick}>
2022-03-21 18:09:01 +00:00
<CardTitle title={label} />
</CardHeader>
) : null}
<CardBody>
{children}
</CardBody>
</Card>
);
};
return (
2022-03-28 23:54:43 +00:00
<div role='region' className='relative' ref={ref} aria-label={label} column-type={transparent ? 'transparent' : 'filled'}>
2022-03-21 18:09:01 +00:00
<Helmet><title>{label}</title></Helmet>
{renderChildren()}
</div>
);
});
2022-03-22 12:42:26 +00:00
export default Column;