forked from Archives/Athou_commafeed
34 lines
1.3 KiB
TypeScript
34 lines
1.3 KiB
TypeScript
import { ActionIcon, Button, ButtonVariant, useMantineTheme } from "@mantine/core"
|
|
import { ActionIconVariant } from "@mantine/core/lib/ActionIcon/ActionIcon.styles"
|
|
import { useMediaQuery } from "@mantine/hooks"
|
|
import { forwardRef, MouseEventHandler, ReactNode } from "react"
|
|
|
|
interface ActionButtonProps {
|
|
className?: string
|
|
icon?: ReactNode
|
|
label?: ReactNode
|
|
onClick?: MouseEventHandler
|
|
variant?: ActionIconVariant & ButtonVariant
|
|
showLabelOnMobile?: boolean
|
|
}
|
|
|
|
/**
|
|
* Switches between Button with label (desktop) and ActionIcon (mobile)
|
|
*/
|
|
export const ActionButton = forwardRef<HTMLButtonElement, ActionButtonProps>((props: ActionButtonProps, ref) => {
|
|
const theme = useMantineTheme()
|
|
const variant = props.variant ?? "subtle"
|
|
const mobile = !useMediaQuery(`(min-width: ${theme.breakpoints.lg}px)`)
|
|
const iconOnly = !props.showLabelOnMobile && (mobile || !props.label)
|
|
return iconOnly ? (
|
|
<ActionIcon ref={ref} color={theme.primaryColor} variant={variant} className={props.className} onClick={props.onClick}>
|
|
{props.icon}
|
|
</ActionIcon>
|
|
) : (
|
|
<Button ref={ref} variant={variant} size="xs" className={props.className} leftIcon={props.icon} onClick={props.onClick}>
|
|
{props.label}
|
|
</Button>
|
|
)
|
|
})
|
|
ActionButton.displayName = "HeaderButton"
|