You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
248 lines
7.1 KiB
TypeScript
248 lines
7.1 KiB
TypeScript
8 months ago
|
import { useEffect, useRef, useState } from "react";
|
||
|
import { EVENT } from "../../constants";
|
||
|
import { KEYS } from "../../keys";
|
||
|
import type { ElementsMap, ExcalidrawElement } from "../../element/types";
|
||
|
import { deepCopyElement } from "../../element/newElement";
|
||
|
|
||
|
import "./DragInput.scss";
|
||
|
import clsx from "clsx";
|
||
|
import { useApp } from "../App";
|
||
|
import { InlineIcon } from "../InlineIcon";
|
||
|
import { SMALLEST_DELTA } from "./utils";
|
||
|
import { StoreAction } from "../../store";
|
||
|
|
||
|
export type DragInputCallbackType = ({
|
||
|
accumulatedChange,
|
||
|
instantChange,
|
||
|
originalElements,
|
||
|
originalElementsMap,
|
||
|
shouldKeepAspectRatio,
|
||
|
shouldChangeByStepSize,
|
||
|
nextValue,
|
||
|
}: {
|
||
|
accumulatedChange: number;
|
||
|
instantChange: number;
|
||
|
originalElements: readonly ExcalidrawElement[];
|
||
|
originalElementsMap: ElementsMap;
|
||
|
shouldKeepAspectRatio: boolean;
|
||
|
shouldChangeByStepSize: boolean;
|
||
|
nextValue?: number;
|
||
|
}) => void;
|
||
|
|
||
|
interface StatsDragInputProps {
|
||
|
label: string | React.ReactNode;
|
||
|
icon?: React.ReactNode;
|
||
|
value: number | "Mixed";
|
||
|
elements: readonly ExcalidrawElement[];
|
||
|
editable?: boolean;
|
||
|
shouldKeepAspectRatio?: boolean;
|
||
|
dragInputCallback: DragInputCallbackType;
|
||
|
}
|
||
|
|
||
|
const StatsDragInput = ({
|
||
|
label,
|
||
|
icon,
|
||
|
dragInputCallback,
|
||
|
value,
|
||
|
elements,
|
||
|
editable = true,
|
||
|
shouldKeepAspectRatio,
|
||
|
}: StatsDragInputProps) => {
|
||
|
const app = useApp();
|
||
|
const inputRef = useRef<HTMLInputElement>(null);
|
||
|
const labelRef = useRef<HTMLDivElement>(null);
|
||
|
|
||
|
const [inputValue, setInputValue] = useState(value.toString());
|
||
|
|
||
|
useEffect(() => {
|
||
|
setInputValue(value.toString());
|
||
|
}, [value, elements]);
|
||
|
|
||
|
const handleInputValue = (v: string) => {
|
||
|
const parsed = Number(v);
|
||
|
if (isNaN(parsed)) {
|
||
|
setInputValue(value.toString());
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const rounded = Number(parsed.toFixed(2));
|
||
|
const original = Number(value);
|
||
|
|
||
|
// only update when
|
||
|
// 1. original was "Mixed" and we have a new value
|
||
|
// 2. original was not "Mixed" and the difference between a new value and previous value is greater
|
||
|
// than the smallest delta allowed, which is 0.01
|
||
|
// reason: idempotent to avoid unnecessary
|
||
|
if (isNaN(original) || Math.abs(rounded - original) >= SMALLEST_DELTA) {
|
||
|
dragInputCallback({
|
||
|
accumulatedChange: 0,
|
||
|
instantChange: 0,
|
||
|
originalElements: elements,
|
||
|
originalElementsMap: app.scene.getNonDeletedElementsMap(),
|
||
|
shouldKeepAspectRatio: shouldKeepAspectRatio!!,
|
||
|
shouldChangeByStepSize: false,
|
||
|
nextValue: rounded,
|
||
|
});
|
||
|
app.syncActionResult({ storeAction: StoreAction.CAPTURE });
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const handleInputValueRef = useRef(handleInputValue);
|
||
|
handleInputValueRef.current = handleInputValue;
|
||
|
|
||
|
// make sure that clicking on canvas (which umounts the component)
|
||
|
// updates current input value (blur isn't triggered)
|
||
|
useEffect(() => {
|
||
|
const input = inputRef.current;
|
||
|
return () => {
|
||
|
const nextValue = input?.value;
|
||
|
if (nextValue) {
|
||
|
handleInputValueRef.current(nextValue);
|
||
|
}
|
||
|
};
|
||
|
}, []);
|
||
|
|
||
|
return editable ? (
|
||
|
<div
|
||
|
className={clsx("drag-input-container", !editable && "disabled")}
|
||
|
data-testid={label}
|
||
|
>
|
||
|
<div
|
||
|
className="drag-input-label"
|
||
|
ref={labelRef}
|
||
|
onPointerDown={(event) => {
|
||
|
if (inputRef.current && editable) {
|
||
|
let startValue = Number(inputRef.current.value);
|
||
|
if (isNaN(startValue)) {
|
||
|
startValue = 0;
|
||
|
}
|
||
|
|
||
|
let lastPointer: {
|
||
|
x: number;
|
||
|
y: number;
|
||
|
} | null = null;
|
||
|
|
||
|
let originalElements: ExcalidrawElement[] | null = null;
|
||
|
let originalElementsMap: Map<string, ExcalidrawElement> | null =
|
||
|
null;
|
||
|
|
||
|
let accumulatedChange: number | null = null;
|
||
|
|
||
|
document.body.classList.add("excalidraw-cursor-resize");
|
||
|
|
||
|
const onPointerMove = (event: PointerEvent) => {
|
||
|
if (!originalElementsMap) {
|
||
|
originalElementsMap = app.scene
|
||
|
.getNonDeletedElements()
|
||
|
.reduce((acc, element) => {
|
||
|
acc.set(element.id, deepCopyElement(element));
|
||
|
return acc;
|
||
|
}, new Map() as ElementsMap);
|
||
|
}
|
||
|
|
||
|
if (!originalElements) {
|
||
|
originalElements = elements.map(
|
||
|
(element) => originalElementsMap!.get(element.id)!,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
if (!accumulatedChange) {
|
||
|
accumulatedChange = 0;
|
||
|
}
|
||
|
|
||
|
if (
|
||
|
lastPointer &&
|
||
|
originalElementsMap !== null &&
|
||
|
accumulatedChange !== null
|
||
|
) {
|
||
|
const instantChange = event.clientX - lastPointer.x;
|
||
|
accumulatedChange += instantChange;
|
||
|
|
||
|
dragInputCallback({
|
||
|
accumulatedChange,
|
||
|
instantChange,
|
||
|
originalElements,
|
||
|
originalElementsMap,
|
||
|
shouldKeepAspectRatio: shouldKeepAspectRatio!!,
|
||
|
shouldChangeByStepSize: event.shiftKey,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
lastPointer = {
|
||
|
x: event.clientX,
|
||
|
y: event.clientY,
|
||
|
};
|
||
|
};
|
||
|
|
||
|
window.addEventListener(EVENT.POINTER_MOVE, onPointerMove, false);
|
||
|
window.addEventListener(
|
||
|
EVENT.POINTER_UP,
|
||
|
() => {
|
||
|
window.removeEventListener(
|
||
|
EVENT.POINTER_MOVE,
|
||
|
onPointerMove,
|
||
|
false,
|
||
|
);
|
||
|
|
||
|
app.syncActionResult({ storeAction: StoreAction.CAPTURE });
|
||
|
|
||
|
lastPointer = null;
|
||
|
accumulatedChange = null;
|
||
|
originalElements = null;
|
||
|
originalElementsMap = null;
|
||
|
|
||
|
document.body.classList.remove("excalidraw-cursor-resize");
|
||
|
},
|
||
|
false,
|
||
|
);
|
||
|
}
|
||
|
}}
|
||
|
onPointerEnter={() => {
|
||
|
if (labelRef.current) {
|
||
|
labelRef.current.style.cursor = "ew-resize";
|
||
|
}
|
||
|
}}
|
||
|
>
|
||
|
{icon ? <InlineIcon icon={icon} /> : label}
|
||
|
</div>
|
||
|
<input
|
||
|
className="drag-input"
|
||
|
autoComplete="off"
|
||
|
spellCheck="false"
|
||
|
onKeyDown={(event) => {
|
||
|
if (editable) {
|
||
|
const eventTarget = event.target;
|
||
|
if (
|
||
|
eventTarget instanceof HTMLInputElement &&
|
||
|
event.key === KEYS.ENTER
|
||
|
) {
|
||
|
handleInputValue(eventTarget.value);
|
||
|
app.focusContainer();
|
||
|
}
|
||
|
}
|
||
|
}}
|
||
|
ref={inputRef}
|
||
|
value={inputValue}
|
||
|
onChange={(event) => {
|
||
|
setInputValue(event.target.value);
|
||
|
}}
|
||
|
onFocus={(event) => {
|
||
|
event.target.select();
|
||
|
}}
|
||
|
onBlur={(event) => {
|
||
|
if (!inputValue) {
|
||
|
setInputValue(value.toString());
|
||
|
} else if (editable) {
|
||
|
handleInputValue(event.target.value);
|
||
|
}
|
||
|
}}
|
||
|
disabled={!editable}
|
||
|
/>
|
||
|
</div>
|
||
|
) : (
|
||
|
<></>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default StatsDragInput;
|