File size: 1,281 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
import React from 'react'
import { Link as RouterLink } from 'react-router-dom'
import { useLocation } from 'react-router'
import {
ButtonCSS,
ButtonProps,
Icon,
} from '@adminjs/design-system'
import { styled } from '@adminjs/design-system/styled-components'
import allowOverride from '../../../hoc/allow-override.js'
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const StyledLink = styled(({ rounded, to, ...rest }) => <RouterLink to={to} {...rest} />)<ButtonProps>`${ButtonCSS}`
export type StyledBackButtonProps = {
showInDrawer: boolean;
}
const StyledBackButton: React.FC<StyledBackButtonProps> = (props) => {
const location = useLocation()
const { showInDrawer } = props
const cssCloseIcon = showInDrawer ? 'ChevronRight' : 'ChevronLeft'
return (
<StyledLink
size="icon"
to={{
pathname: '..',
search: location.search,
}}
relative="route"
rounded
mr="lg"
type="button"
>
<Icon icon={cssCloseIcon} />
</StyledLink>
)
}
const OverridableStyledBackButton = allowOverride(StyledBackButton, 'StyledBackButton')
export {
OverridableStyledBackButton as default,
OverridableStyledBackButton as StyledBackButton,
StyledBackButton as OriginalStyledBackButton,
}
|