mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
* feat: add hand/panning tool * move hand tool right of tool lock separator * tweak i18n * rename `panning` -> `hand` * toggle between last tool and hand on `H` shortcut * hide properties sidebar when `hand` active * revert to rendering HandButton manually due to mobile toolbar
48 lines
1 KiB
TypeScript
48 lines
1 KiB
TypeScript
import "./ToolIcon.scss";
|
|
|
|
import clsx from "clsx";
|
|
import { ToolButtonSize } from "./ToolButton";
|
|
import { LockedIcon, UnlockedIcon } from "./icons";
|
|
|
|
type LockIconProps = {
|
|
title?: string;
|
|
name?: string;
|
|
checked: boolean;
|
|
onChange?(): void;
|
|
isMobile?: boolean;
|
|
};
|
|
|
|
const DEFAULT_SIZE: ToolButtonSize = "medium";
|
|
|
|
const ICONS = {
|
|
CHECKED: LockedIcon,
|
|
UNCHECKED: UnlockedIcon,
|
|
};
|
|
|
|
export const LockButton = (props: LockIconProps) => {
|
|
return (
|
|
<label
|
|
className={clsx(
|
|
"ToolIcon ToolIcon__lock",
|
|
`ToolIcon_size_${DEFAULT_SIZE}`,
|
|
{
|
|
"is-mobile": props.isMobile,
|
|
},
|
|
)}
|
|
title={`${props.title} — Q`}
|
|
>
|
|
<input
|
|
className="ToolIcon_type_checkbox"
|
|
type="checkbox"
|
|
name={props.name}
|
|
onChange={props.onChange}
|
|
checked={props.checked}
|
|
aria-label={props.title}
|
|
data-testid="toolbar-lock"
|
|
/>
|
|
<div className="ToolIcon__icon">
|
|
{props.checked ? ICONS.CHECKED : ICONS.UNCHECKED}
|
|
</div>
|
|
</label>
|
|
);
|
|
};
|