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.
116 lines
3.1 KiB
TypeScript
116 lines
3.1 KiB
TypeScript
9 months ago
|
import { isTextElement, refreshTextDimensions } from "../../element";
|
||
|
import { mutateElement } from "../../element/mutateElement";
|
||
|
import { isBoundToContainer } from "../../element/typeChecks";
|
||
|
import type {
|
||
|
ElementsMap,
|
||
|
ExcalidrawElement,
|
||
|
ExcalidrawTextElement,
|
||
|
} from "../../element/types";
|
||
|
import { isInGroup } from "../../groups";
|
||
|
import type Scene from "../../scene/Scene";
|
||
|
import { fontSizeIcon } from "../icons";
|
||
|
import StatsDragInput from "./DragInput";
|
||
|
import type { DragInputCallbackType } from "./DragInput";
|
||
|
import { getStepSizedValue } from "./utils";
|
||
|
|
||
|
interface MultiFontSizeProps {
|
||
|
elements: readonly ExcalidrawElement[];
|
||
|
elementsMap: ElementsMap;
|
||
|
scene: Scene;
|
||
|
}
|
||
|
|
||
|
const MIN_FONT_SIZE = 4;
|
||
|
const STEP_SIZE = 4;
|
||
|
|
||
|
const MultiFontSize = ({
|
||
|
elements,
|
||
|
elementsMap,
|
||
|
scene,
|
||
|
}: MultiFontSizeProps) => {
|
||
|
const latestTextElements = elements.filter(
|
||
|
(el) => !isInGroup(el) && isTextElement(el) && !isBoundToContainer(el),
|
||
|
) as ExcalidrawTextElement[];
|
||
|
const fontSizes = latestTextElements.map(
|
||
|
(textEl) => Math.round(textEl.fontSize * 10) / 10,
|
||
|
);
|
||
|
const value = new Set(fontSizes).size === 1 ? fontSizes[0] : "Mixed";
|
||
|
const editable = fontSizes.length > 0;
|
||
|
|
||
|
const handleFontSizeChange: DragInputCallbackType = ({
|
||
|
accumulatedChange,
|
||
|
originalElements,
|
||
|
shouldChangeByStepSize,
|
||
|
nextValue,
|
||
|
}) => {
|
||
|
if (nextValue) {
|
||
|
const nextFontSize = Math.max(Math.round(nextValue), MIN_FONT_SIZE);
|
||
|
|
||
|
for (const textElement of latestTextElements) {
|
||
|
const newElement = {
|
||
|
...textElement,
|
||
|
fontSize: nextFontSize,
|
||
|
};
|
||
|
const updates = refreshTextDimensions(newElement, null, elementsMap);
|
||
|
mutateElement(
|
||
|
textElement,
|
||
|
{
|
||
|
...updates,
|
||
|
fontSize: nextFontSize,
|
||
|
},
|
||
|
false,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
scene.triggerUpdate();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const originalTextElements = originalElements.filter(
|
||
|
(el) => !isInGroup(el) && isTextElement(el) && !isBoundToContainer(el),
|
||
|
) as ExcalidrawTextElement[];
|
||
|
|
||
|
for (let i = 0; i < latestTextElements.length; i++) {
|
||
|
const latestElement = latestTextElements[i];
|
||
|
const originalElement = originalTextElements[i];
|
||
|
|
||
|
const originalFontSize = Math.round(originalElement.fontSize);
|
||
|
const changeInFontSize = Math.round(accumulatedChange);
|
||
|
let nextFontSize = Math.max(
|
||
|
originalFontSize + changeInFontSize,
|
||
|
MIN_FONT_SIZE,
|
||
|
);
|
||
|
if (shouldChangeByStepSize) {
|
||
|
nextFontSize = getStepSizedValue(nextFontSize, STEP_SIZE);
|
||
|
}
|
||
|
const newElement = {
|
||
|
...latestElement,
|
||
|
fontSize: nextFontSize,
|
||
|
};
|
||
|
const updates = refreshTextDimensions(newElement, null, elementsMap);
|
||
|
mutateElement(
|
||
|
latestElement,
|
||
|
{
|
||
|
...updates,
|
||
|
fontSize: nextFontSize,
|
||
|
},
|
||
|
false,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
scene.triggerUpdate();
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<StatsDragInput
|
||
|
label="F"
|
||
|
icon={fontSizeIcon}
|
||
|
elements={elements}
|
||
|
dragInputCallback={handleFontSizeChange}
|
||
|
value={value}
|
||
|
editable={editable}
|
||
|
/>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default MultiFontSize;
|