You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
163 lines
3.6 KiB
163 lines
3.6 KiB
import { useState, useEffect, useCallback, forwardRef } from 'react'; |
|
|
|
import classNames from 'classnames'; |
|
|
|
import { AnimatedNumber } from './animated_number'; |
|
import type { IconProp } from './icon'; |
|
import { Icon } from './icon'; |
|
|
|
interface Props { |
|
className?: string; |
|
title: string; |
|
icon: string; |
|
iconComponent: IconProp; |
|
onClick?: React.MouseEventHandler<HTMLButtonElement>; |
|
onMouseDown?: React.MouseEventHandler<HTMLButtonElement>; |
|
onKeyDown?: React.KeyboardEventHandler<HTMLButtonElement>; |
|
active?: boolean; |
|
expanded?: boolean; |
|
style?: React.CSSProperties; |
|
activeStyle?: React.CSSProperties; |
|
disabled?: boolean; |
|
inverted?: boolean; |
|
animate?: boolean; |
|
overlay?: boolean; |
|
tabIndex?: number; |
|
counter?: number; |
|
href?: string; |
|
ariaHidden?: boolean; |
|
ariaControls?: string; |
|
} |
|
|
|
export const IconButton = forwardRef<HTMLButtonElement, Props>( |
|
( |
|
{ |
|
className, |
|
expanded, |
|
icon, |
|
iconComponent, |
|
inverted, |
|
title, |
|
counter, |
|
href, |
|
style, |
|
activeStyle, |
|
onClick, |
|
onKeyDown, |
|
onMouseDown, |
|
active = false, |
|
disabled = false, |
|
animate = false, |
|
overlay = false, |
|
tabIndex = 0, |
|
ariaHidden = false, |
|
ariaControls, |
|
}, |
|
buttonRef, |
|
) => { |
|
const [activate, setActivate] = useState(false); |
|
const [deactivate, setDeactivate] = useState(false); |
|
|
|
useEffect(() => { |
|
if (!animate) { |
|
return; |
|
} |
|
|
|
if (activate && !active) { |
|
setActivate(false); |
|
setDeactivate(true); |
|
} else if (!activate && active) { |
|
setActivate(true); |
|
setDeactivate(false); |
|
} |
|
}, [setActivate, setDeactivate, animate, active, activate]); |
|
|
|
const handleClick: React.MouseEventHandler<HTMLButtonElement> = useCallback( |
|
(e) => { |
|
e.preventDefault(); |
|
|
|
if (!disabled) { |
|
onClick?.(e); |
|
} |
|
}, |
|
[disabled, onClick], |
|
); |
|
|
|
const handleMouseDown: React.MouseEventHandler<HTMLButtonElement> = |
|
useCallback( |
|
(e) => { |
|
if (!disabled) { |
|
onMouseDown?.(e); |
|
} |
|
}, |
|
[disabled, onMouseDown], |
|
); |
|
|
|
const handleKeyDown: React.KeyboardEventHandler<HTMLButtonElement> = |
|
useCallback( |
|
(e) => { |
|
if (!disabled) { |
|
onKeyDown?.(e); |
|
} |
|
}, |
|
[disabled, onKeyDown], |
|
); |
|
|
|
const buttonStyle = { |
|
...style, |
|
...(active ? activeStyle : {}), |
|
}; |
|
|
|
const classes = classNames(className, 'icon-button', { |
|
active, |
|
disabled, |
|
inverted, |
|
activate, |
|
deactivate, |
|
overlayed: overlay, |
|
'icon-button--with-counter': typeof counter !== 'undefined', |
|
}); |
|
|
|
let contents = ( |
|
<> |
|
<Icon id={icon} icon={iconComponent} aria-hidden='true' />{' '} |
|
{typeof counter !== 'undefined' && ( |
|
<span className='icon-button__counter'> |
|
<AnimatedNumber value={counter} /> |
|
</span> |
|
)} |
|
</> |
|
); |
|
|
|
if (href != null) { |
|
contents = ( |
|
<a href={href} target='_blank' rel='noopener noreferrer'> |
|
{contents} |
|
</a> |
|
); |
|
} |
|
|
|
return ( |
|
<button |
|
type='button' |
|
aria-label={title} |
|
aria-expanded={expanded} |
|
aria-hidden={ariaHidden} |
|
aria-controls={ariaControls} |
|
title={title} |
|
className={classes} |
|
onClick={handleClick} |
|
onMouseDown={handleMouseDown} |
|
onKeyDown={handleKeyDown} |
|
style={buttonStyle} |
|
tabIndex={tabIndex} |
|
disabled={disabled} |
|
ref={buttonRef} |
|
> |
|
{contents} |
|
</button> |
|
); |
|
}, |
|
); |
|
|
|
IconButton.displayName = 'IconButton';
|
|
|