cinny/src/app/atoms/button/IconButton.jsx

55 lines
1.4 KiB
React
Raw Normal View History

2021-07-28 22:15:52 +09:00
import React from 'react';
import PropTypes from 'prop-types';
import './IconButton.scss';
import RawIcon from '../system-icons/RawIcon';
2021-08-10 20:28:16 +09:00
import Tooltip from '../tooltip/Tooltip';
2021-07-28 22:15:52 +09:00
import { blurOnBubbling } from './script';
import Text from '../text/Text';
// TODO:
// 1. [done] an icon only button have "src"
// 2. have multiple variant
// 3. [done] should have a smart accessibility "label" arial-label
// 4. [done] have size as RawIcon
const IconButton = React.forwardRef(({
variant, size, type,
tooltip, tooltipPlacement, src, onClick,
}, ref) => (
2021-08-10 20:28:16 +09:00
<Tooltip
2021-07-28 22:15:52 +09:00
placement={tooltipPlacement}
2021-08-10 20:28:16 +09:00
content={<Text variant="b2">{tooltip}</Text>}
2021-07-28 22:15:52 +09:00
>
<button
ref={ref}
className={`ic-btn-${variant}`}
onMouseUp={(e) => blurOnBubbling(e, `.ic-btn-${variant}`)}
onClick={onClick}
type={type === 'button' ? 'button' : 'submit'}
>
<RawIcon size={size} src={src} />
</button>
2021-08-10 20:28:16 +09:00
</Tooltip>
2021-07-28 22:15:52 +09:00
));
IconButton.defaultProps = {
variant: 'surface',
size: 'normal',
type: 'button',
tooltipPlacement: 'top',
onClick: null,
};
IconButton.propTypes = {
variant: PropTypes.oneOf(['surface']),
size: PropTypes.oneOf(['normal', 'small', 'extra-small']),
type: PropTypes.oneOf(['button', 'submit']),
tooltip: PropTypes.string.isRequired,
tooltipPlacement: PropTypes.oneOf(['top', 'right', 'bottom', 'left']),
src: PropTypes.string.isRequired,
onClick: PropTypes.func,
};
export default IconButton;