2020-01-25 14:52:03 -03:00
|
|
|
import "./ToolIcon.scss";
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
type ToolIconSize = "s" | "m";
|
|
|
|
|
|
|
|
type ToolButtonBaseProps = {
|
|
|
|
icon: React.ReactNode;
|
|
|
|
"aria-label": string;
|
|
|
|
"aria-keyshortcuts"?: string;
|
|
|
|
title?: string;
|
|
|
|
name?: string;
|
|
|
|
id?: string;
|
|
|
|
size?: ToolIconSize;
|
|
|
|
};
|
|
|
|
|
|
|
|
type ToolButtonProps =
|
|
|
|
| (ToolButtonBaseProps & { type: "button"; onClick?(): void })
|
|
|
|
| (ToolButtonBaseProps & {
|
|
|
|
type: "radio";
|
|
|
|
|
|
|
|
checked: boolean;
|
|
|
|
onChange?(): void;
|
|
|
|
});
|
|
|
|
|
|
|
|
const DEFAULT_SIZE: ToolIconSize = "m";
|
|
|
|
|
2020-01-25 19:37:58 -03:00
|
|
|
export const ToolButton = React.forwardRef(function(
|
|
|
|
props: ToolButtonProps,
|
|
|
|
ref,
|
|
|
|
) {
|
|
|
|
const innerRef = React.useRef(null);
|
|
|
|
React.useImperativeHandle(ref, () => innerRef.current);
|
2020-01-25 14:52:03 -03:00
|
|
|
const sizeCn = `ToolIcon_size_${props.size || DEFAULT_SIZE}`;
|
|
|
|
|
|
|
|
if (props.type === "button")
|
|
|
|
return (
|
|
|
|
<button
|
|
|
|
className={`ToolIcon_type_button ToolIcon ${sizeCn}`}
|
|
|
|
title={props.title}
|
|
|
|
aria-label={props["aria-label"]}
|
|
|
|
type="button"
|
|
|
|
onClick={props.onClick}
|
2020-01-25 19:37:58 -03:00
|
|
|
ref={innerRef}
|
2020-01-25 14:52:03 -03:00
|
|
|
>
|
|
|
|
<div className="ToolIcon__icon" aria-hidden="true">
|
|
|
|
{props.icon}
|
|
|
|
</div>
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<label className="ToolIcon">
|
|
|
|
<input
|
|
|
|
className={`ToolIcon_type_radio ${sizeCn}`}
|
|
|
|
type="radio"
|
|
|
|
name={props.name}
|
|
|
|
title={props.title}
|
|
|
|
aria-label={props["aria-label"]}
|
|
|
|
aria-keyshortcuts={props["aria-keyshortcuts"]}
|
|
|
|
id={props.id}
|
|
|
|
onChange={props.onChange}
|
|
|
|
checked={props.checked}
|
2020-01-25 19:37:58 -03:00
|
|
|
ref={innerRef}
|
2020-01-25 14:52:03 -03:00
|
|
|
/>
|
|
|
|
<div className="ToolIcon__icon">{props.icon}</div>
|
|
|
|
</label>
|
|
|
|
);
|
2020-01-25 19:37:58 -03:00
|
|
|
});
|