Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0f59095395 | ||
|
|
c11532ba5f | ||
|
|
67a75a9542 |
@@ -1,5 +1,4 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import * as excalidrawLib from "@excalidraw/excalidraw";
|
import * as excalidrawLib from "@excalidraw/excalidraw";
|
||||||
import { Excalidraw } from "@excalidraw/excalidraw";
|
import { Excalidraw } from "@excalidraw/excalidraw";
|
||||||
|
|
||||||
@@ -14,7 +13,6 @@ const ExcalidrawWrapper: React.FC = () => {
|
|||||||
appTitle={"Excalidraw with Nextjs Example"}
|
appTitle={"Excalidraw with Nextjs Example"}
|
||||||
useCustom={(api: any, args?: any[]) => {}}
|
useCustom={(api: any, args?: any[]) => {}}
|
||||||
excalidrawLib={excalidrawLib}
|
excalidrawLib={excalidrawLib}
|
||||||
showFadeDemo={true}
|
|
||||||
>
|
>
|
||||||
<Excalidraw />
|
<Excalidraw />
|
||||||
</App>
|
</App>
|
||||||
|
|||||||
@@ -70,7 +70,6 @@ export interface AppProps {
|
|||||||
customArgs?: any[];
|
customArgs?: any[];
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
excalidrawLib: typeof TExcalidraw;
|
excalidrawLib: typeof TExcalidraw;
|
||||||
showFadeDemo?: boolean;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function ExampleApp({
|
export default function ExampleApp({
|
||||||
@@ -79,7 +78,6 @@ export default function ExampleApp({
|
|||||||
customArgs,
|
customArgs,
|
||||||
children,
|
children,
|
||||||
excalidrawLib,
|
excalidrawLib,
|
||||||
showFadeDemo = false,
|
|
||||||
}: AppProps) {
|
}: AppProps) {
|
||||||
const {
|
const {
|
||||||
exportToCanvas,
|
exportToCanvas,
|
||||||
@@ -118,19 +116,6 @@ export default function ExampleApp({
|
|||||||
{},
|
{},
|
||||||
);
|
);
|
||||||
const [comment, setComment] = useState<Comment | null>(null);
|
const [comment, setComment] = useState<Comment | null>(null);
|
||||||
const [hideAllForFadeDemo, setHideAllForFadeDemo] = useState(false);
|
|
||||||
const [fadeDemoNextIndex, setFadeDemoNextIndex] = useState(0);
|
|
||||||
const [fadeDemoElementIds, setFadeDemoElementIds] = useState<string[]>([]);
|
|
||||||
const [demoAnimationType, setDemoAnimationType] = useState<"fade" | "fly">(
|
|
||||||
"fade",
|
|
||||||
);
|
|
||||||
const [demoAnimationDuration, setDemoAnimationDuration] = useState(500);
|
|
||||||
const [demoFlyFrom, setDemoFlyFrom] = useState<
|
|
||||||
"left" | "right" | "top" | "bottom"
|
|
||||||
>("left");
|
|
||||||
const [demoAnimationEasing, setDemoAnimationEasing] = useState<
|
|
||||||
"linear" | "easeOut" | "easeInOut"
|
|
||||||
>("easeOut");
|
|
||||||
|
|
||||||
const initialStatePromiseRef = useRef<{
|
const initialStatePromiseRef = useRef<{
|
||||||
promise: ResolvablePromise<ExcalidrawInitialDataState | null>;
|
promise: ResolvablePromise<ExcalidrawInitialDataState | null>;
|
||||||
@@ -193,8 +178,7 @@ export default function ExampleApp({
|
|||||||
const newElement = cloneElement(
|
const newElement = cloneElement(
|
||||||
Excalidraw,
|
Excalidraw,
|
||||||
{
|
{
|
||||||
onExcalidrawAPI: (api: ExcalidrawImperativeAPI | null) =>
|
excalidrawAPI: (api: ExcalidrawImperativeAPI) => setExcalidrawAPI(api),
|
||||||
setExcalidrawAPI(api),
|
|
||||||
initialData: initialStatePromiseRef.current.promise,
|
initialData: initialStatePromiseRef.current.promise,
|
||||||
onChange: (
|
onChange: (
|
||||||
elements: NonDeletedExcalidrawElement[],
|
elements: NonDeletedExcalidrawElement[],
|
||||||
@@ -224,10 +208,6 @@ export default function ExampleApp({
|
|||||||
onPointerDown,
|
onPointerDown,
|
||||||
onScrollChange: rerenderCommentIcons,
|
onScrollChange: rerenderCommentIcons,
|
||||||
validateEmbeddable: true,
|
validateEmbeddable: true,
|
||||||
resolveRenderOpacity: hideAllForFadeDemo
|
|
||||||
? (element: NonDeletedExcalidrawElement) =>
|
|
||||||
fadeDemoElementIds.includes(element.id) ? 0 : undefined
|
|
||||||
: undefined,
|
|
||||||
},
|
},
|
||||||
<>
|
<>
|
||||||
{excalidrawAPI && (
|
{excalidrawAPI && (
|
||||||
@@ -684,229 +664,6 @@ export default function ExampleApp({
|
|||||||
>
|
>
|
||||||
Reset Scene
|
Reset Scene
|
||||||
</button>
|
</button>
|
||||||
{showFadeDemo && (
|
|
||||||
<>
|
|
||||||
<label>
|
|
||||||
Animation type
|
|
||||||
<select
|
|
||||||
value={demoAnimationType}
|
|
||||||
onChange={(event) =>
|
|
||||||
setDemoAnimationType(
|
|
||||||
event.target.value as "fade" | "fly",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<option value="fade">fade</option>
|
|
||||||
<option value="fly">fly</option>
|
|
||||||
</select>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
Duration
|
|
||||||
<input
|
|
||||||
type="number"
|
|
||||||
value={demoAnimationDuration}
|
|
||||||
onChange={(event) =>
|
|
||||||
setDemoAnimationDuration(Number(event.target.value) || 0)
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
<label>
|
|
||||||
Easing
|
|
||||||
<select
|
|
||||||
value={demoAnimationEasing}
|
|
||||||
onChange={(event) =>
|
|
||||||
setDemoAnimationEasing(
|
|
||||||
event.target.value as "linear" | "easeOut" | "easeInOut",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<option value="linear">linear</option>
|
|
||||||
<option value="easeOut">easeOut</option>
|
|
||||||
<option value="easeInOut">easeInOut</option>
|
|
||||||
</select>
|
|
||||||
</label>
|
|
||||||
{demoAnimationType === "fly" && (
|
|
||||||
<label>
|
|
||||||
Fly from
|
|
||||||
<select
|
|
||||||
value={demoFlyFrom}
|
|
||||||
onChange={(event) =>
|
|
||||||
setDemoFlyFrom(
|
|
||||||
event.target.value as
|
|
||||||
| "left"
|
|
||||||
| "right"
|
|
||||||
| "top"
|
|
||||||
| "bottom",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<option value="left">left</option>
|
|
||||||
<option value="right">right</option>
|
|
||||||
<option value="top">top</option>
|
|
||||||
<option value="bottom">bottom</option>
|
|
||||||
</select>
|
|
||||||
</label>
|
|
||||||
)}
|
|
||||||
<button
|
|
||||||
onClick={() => {
|
|
||||||
if (!excalidrawAPI) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
setFadeDemoElementIds(
|
|
||||||
excalidrawAPI
|
|
||||||
.getSceneElements()
|
|
||||||
.map((element) => element.id),
|
|
||||||
);
|
|
||||||
excalidrawAPI.clearElementAnimationOverrides();
|
|
||||||
setHideAllForFadeDemo(true);
|
|
||||||
setFadeDemoNextIndex(0);
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Hide every element
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
onClick={() => {
|
|
||||||
if (!excalidrawAPI || !hideAllForFadeDemo) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const elements = excalidrawAPI
|
|
||||||
.getSceneElements()
|
|
||||||
.filter((element) =>
|
|
||||||
fadeDemoElementIds.includes(element.id),
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!elements.length) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const nextIndex =
|
|
||||||
fadeDemoNextIndex >= elements.length
|
|
||||||
? 0
|
|
||||||
: fadeDemoNextIndex;
|
|
||||||
|
|
||||||
if (nextIndex === 0) {
|
|
||||||
excalidrawAPI.clearElementAnimationOverrides();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (demoAnimationType === "fly") {
|
|
||||||
excalidrawAPI.animateElements({
|
|
||||||
elements: [elements[nextIndex].id],
|
|
||||||
type: "fly",
|
|
||||||
from: demoFlyFrom,
|
|
||||||
duration: demoAnimationDuration,
|
|
||||||
phase: "in",
|
|
||||||
easing: demoAnimationEasing,
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
excalidrawAPI.animateElements({
|
|
||||||
elements: [elements[nextIndex].id],
|
|
||||||
type: "fade",
|
|
||||||
duration: demoAnimationDuration,
|
|
||||||
phase: "in",
|
|
||||||
easing: demoAnimationEasing,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
setFadeDemoNextIndex(nextIndex + 1);
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Animate in next element
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
onClick={() => {
|
|
||||||
if (!excalidrawAPI || !hideAllForFadeDemo) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const elements = excalidrawAPI
|
|
||||||
.getSceneElements()
|
|
||||||
.filter((element) =>
|
|
||||||
fadeDemoElementIds.includes(element.id),
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!elements.length) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (demoAnimationType === "fly") {
|
|
||||||
excalidrawAPI.animateElements({
|
|
||||||
elements,
|
|
||||||
type: "fly",
|
|
||||||
from: demoFlyFrom,
|
|
||||||
duration: demoAnimationDuration,
|
|
||||||
stagger: 120,
|
|
||||||
phase: "in",
|
|
||||||
easing: demoAnimationEasing,
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
excalidrawAPI.animateElements({
|
|
||||||
elements,
|
|
||||||
type: "fade",
|
|
||||||
duration: demoAnimationDuration,
|
|
||||||
stagger: 120,
|
|
||||||
phase: "in",
|
|
||||||
easing: demoAnimationEasing,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
setFadeDemoNextIndex(elements.length);
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Animate in all
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
onClick={() => {
|
|
||||||
if (!excalidrawAPI || !hideAllForFadeDemo) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const elements = excalidrawAPI
|
|
||||||
.getSceneElements()
|
|
||||||
.filter((element) =>
|
|
||||||
fadeDemoElementIds.includes(element.id),
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!elements.length) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const prevIndex = Math.min(
|
|
||||||
fadeDemoNextIndex - 1,
|
|
||||||
elements.length - 1,
|
|
||||||
);
|
|
||||||
|
|
||||||
if (prevIndex < 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (demoAnimationType === "fly") {
|
|
||||||
excalidrawAPI.animateElements({
|
|
||||||
elements: [elements[prevIndex].id],
|
|
||||||
type: "fly",
|
|
||||||
from: demoFlyFrom,
|
|
||||||
duration: demoAnimationDuration,
|
|
||||||
phase: "out",
|
|
||||||
easing: demoAnimationEasing,
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
excalidrawAPI.animateElements({
|
|
||||||
elements: [elements[prevIndex].id],
|
|
||||||
type: "fade",
|
|
||||||
duration: demoAnimationDuration,
|
|
||||||
phase: "out",
|
|
||||||
easing: demoAnimationEasing,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
setFadeDemoNextIndex(prevIndex);
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Animate out prev element
|
|
||||||
</button>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
<button
|
<button
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
const libraryItems: LibraryItems = [
|
const libraryItems: LibraryItems = [
|
||||||
|
|||||||
@@ -2,28 +2,6 @@ import type { ExcalidrawElementSkeleton } from "@excalidraw/excalidraw/element/t
|
|||||||
import type { FileId } from "@excalidraw/excalidraw/element/types";
|
import type { FileId } from "@excalidraw/excalidraw/element/types";
|
||||||
|
|
||||||
const elements: ExcalidrawElementSkeleton[] = [
|
const elements: ExcalidrawElementSkeleton[] = [
|
||||||
// {
|
|
||||||
// type: "arrow",
|
|
||||||
// x: 100,
|
|
||||||
// y: 500,
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// type: "arrow",
|
|
||||||
// x: 250,
|
|
||||||
// y: 250,
|
|
||||||
// label: {
|
|
||||||
// text: "HELLO WORLD!!",
|
|
||||||
// },
|
|
||||||
// start: {
|
|
||||||
// type: "rectangle",
|
|
||||||
// // x: -100,
|
|
||||||
// },
|
|
||||||
// end: {
|
|
||||||
// type: "ellipse",
|
|
||||||
// // x: 300,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
|
|
||||||
{
|
{
|
||||||
type: "rectangle",
|
type: "rectangle",
|
||||||
x: 10,
|
x: 10,
|
||||||
@@ -44,14 +22,14 @@ const elements: ExcalidrawElementSkeleton[] = [
|
|||||||
},
|
},
|
||||||
id: "2",
|
id: "2",
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// type: "arrow",
|
type: "arrow",
|
||||||
// x: 100,
|
x: 100,
|
||||||
// y: 200,
|
y: 200,
|
||||||
// label: { text: "HELLO WORLD!!" },
|
label: { text: "HELLO WORLD!!" },
|
||||||
// start: { type: "rectangle" },
|
start: { type: "rectangle" },
|
||||||
// end: { type: "ellipse" },
|
end: { type: "ellipse" },
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
type: "image",
|
type: "image",
|
||||||
x: 606.1042326312408,
|
x: 606.1042326312408,
|
||||||
@@ -60,11 +38,11 @@ const elements: ExcalidrawElementSkeleton[] = [
|
|||||||
height: 230,
|
height: 230,
|
||||||
fileId: "rocket" as FileId,
|
fileId: "rocket" as FileId,
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// type: "frame",
|
type: "frame",
|
||||||
// children: ["1", "2"],
|
children: ["1", "2"],
|
||||||
// name: "My frame",
|
name: "My frame",
|
||||||
// },
|
},
|
||||||
];
|
];
|
||||||
export default {
|
export default {
|
||||||
elements,
|
elements,
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ const focusPointUpdate = (
|
|||||||
if (switchToInsideBinding || boundToSameElement) {
|
if (switchToInsideBinding || boundToSameElement) {
|
||||||
currentBinding = {
|
currentBinding = {
|
||||||
...currentBinding,
|
...currentBinding,
|
||||||
mode: "inside",
|
mode: "fixed",
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
currentBinding = {
|
currentBinding = {
|
||||||
@@ -166,7 +166,7 @@ const focusPointUpdate = (
|
|||||||
if (switchToInsideBinding || boundToSameElementAfterUpdate) {
|
if (switchToInsideBinding || boundToSameElementAfterUpdate) {
|
||||||
adjacentBinding = {
|
adjacentBinding = {
|
||||||
...adjacentBinding,
|
...adjacentBinding,
|
||||||
mode: "inside",
|
mode: "fixed",
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
adjacentBinding = {
|
adjacentBinding = {
|
||||||
@@ -256,8 +256,8 @@ export const handleFocusPointDrag = (
|
|||||||
// Handle binding mode switch
|
// Handle binding mode switch
|
||||||
const newMode =
|
const newMode =
|
||||||
switchToInsideBinding && arrow[bindingField]?.mode === "orbit"
|
switchToInsideBinding && arrow[bindingField]?.mode === "orbit"
|
||||||
? "inside"
|
? "fixed"
|
||||||
: !switchToInsideBinding && arrow[bindingField]?.mode === "inside"
|
: !switchToInsideBinding && arrow[bindingField]?.mode === "fixed"
|
||||||
? "orbit"
|
? "orbit"
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
|
|||||||
@@ -328,7 +328,7 @@ const bindingStrategyForNewSimpleArrowEndpointDragging = (
|
|||||||
if (hit) {
|
if (hit) {
|
||||||
start = {
|
start = {
|
||||||
element: hit,
|
element: hit,
|
||||||
mode: "inside",
|
mode: "fixed",
|
||||||
focusPoint: point,
|
focusPoint: point,
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
@@ -353,13 +353,13 @@ const bindingStrategyForNewSimpleArrowEndpointDragging = (
|
|||||||
start: isMultiPoint
|
start: isMultiPoint
|
||||||
? { mode: undefined }
|
? { mode: undefined }
|
||||||
: {
|
: {
|
||||||
mode: "inside",
|
mode: "fixed",
|
||||||
element: hit,
|
element: hit,
|
||||||
focusPoint: origin ?? center,
|
focusPoint: origin ?? center,
|
||||||
},
|
},
|
||||||
end: isMultiPoint
|
end: isMultiPoint
|
||||||
? { mode: "orbit", element: hit, focusPoint: point }
|
? { mode: "orbit", element: hit, focusPoint: point }
|
||||||
: { mode: "inside", element: hit, focusPoint: point },
|
: { mode: "fixed", element: hit, focusPoint: point },
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -379,7 +379,7 @@ const bindingStrategyForNewSimpleArrowEndpointDragging = (
|
|||||||
start: isMultiPoint
|
start: isMultiPoint
|
||||||
? { mode: undefined }
|
? { mode: undefined }
|
||||||
: {
|
: {
|
||||||
mode: otherElement.id !== hit.id ? "orbit" : "inside",
|
mode: otherElement.id !== hit.id ? "orbit" : "fixed",
|
||||||
element: otherElement,
|
element: otherElement,
|
||||||
focusPoint: origin ?? pointFrom<GlobalPoint>(arrow.x, arrow.y),
|
focusPoint: origin ?? pointFrom<GlobalPoint>(arrow.x, arrow.y),
|
||||||
},
|
},
|
||||||
@@ -402,7 +402,7 @@ const bindingStrategyForNewSimpleArrowEndpointDragging = (
|
|||||||
const otherIsInsideBinding =
|
const otherIsInsideBinding =
|
||||||
!!appState.selectedLinearElement?.initialState.arrowStartIsInside;
|
!!appState.selectedLinearElement?.initialState.arrowStartIsInside;
|
||||||
const other: BindingStrategy = {
|
const other: BindingStrategy = {
|
||||||
mode: otherIsInsideBinding ? "inside" : "orbit",
|
mode: otherIsInsideBinding ? "fixed" : "orbit",
|
||||||
element: otherElement,
|
element: otherElement,
|
||||||
focusPoint: shiftKey
|
focusPoint: shiftKey
|
||||||
? elementCenterPoint(otherElement, elementsMap)
|
? elementCenterPoint(otherElement, elementsMap)
|
||||||
@@ -416,9 +416,9 @@ const bindingStrategyForNewSimpleArrowEndpointDragging = (
|
|||||||
let current: BindingStrategy;
|
let current: BindingStrategy;
|
||||||
if (hit) {
|
if (hit) {
|
||||||
const isInsideBinding =
|
const isInsideBinding =
|
||||||
globalBindMode === "inside" || globalBindMode === "skip";
|
globalBindMode === "fixed" || globalBindMode === "skip";
|
||||||
current = {
|
current = {
|
||||||
mode: isInsideBinding && !isNested ? "inside" : "orbit",
|
mode: isInsideBinding && !isNested ? "fixed" : "orbit",
|
||||||
element: hit,
|
element: hit,
|
||||||
focusPoint: isInsideBinding || isNested ? point : point,
|
focusPoint: isInsideBinding || isNested ? point : point,
|
||||||
};
|
};
|
||||||
@@ -436,10 +436,10 @@ const bindingStrategyForNewSimpleArrowEndpointDragging = (
|
|||||||
if (!arrow.startBinding) {
|
if (!arrow.startBinding) {
|
||||||
if (hit) {
|
if (hit) {
|
||||||
const isInsideBinding =
|
const isInsideBinding =
|
||||||
globalBindMode === "inside" || globalBindMode === "skip";
|
globalBindMode === "fixed" || globalBindMode === "skip";
|
||||||
|
|
||||||
end = {
|
end = {
|
||||||
mode: isInsideBinding ? "inside" : "orbit",
|
mode: isInsideBinding ? "fixed" : "orbit",
|
||||||
element: hit,
|
element: hit,
|
||||||
focusPoint: point,
|
focusPoint: point,
|
||||||
};
|
};
|
||||||
@@ -488,7 +488,7 @@ const bindingStrategyForSimpleArrowEndpointDragging_complex = (
|
|||||||
|
|
||||||
// If the global bind mode is in free binding mode, just bind
|
// If the global bind mode is in free binding mode, just bind
|
||||||
// where the pointer is and keep the other end intact
|
// where the pointer is and keep the other end intact
|
||||||
if (globalBindMode === "inside" || globalBindMode === "skip") {
|
if (globalBindMode === "fixed" || globalBindMode === "skip") {
|
||||||
current = hit
|
current = hit
|
||||||
? {
|
? {
|
||||||
element:
|
element:
|
||||||
@@ -496,7 +496,7 @@ const bindingStrategyForSimpleArrowEndpointDragging_complex = (
|
|||||||
? hit
|
? hit
|
||||||
: oppositeElement,
|
: oppositeElement,
|
||||||
focusPoint: point,
|
focusPoint: point,
|
||||||
mode: "inside",
|
mode: "fixed",
|
||||||
}
|
}
|
||||||
: { mode: null };
|
: { mode: null };
|
||||||
other =
|
other =
|
||||||
@@ -514,12 +514,9 @@ const bindingStrategyForSimpleArrowEndpointDragging_complex = (
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Already inside binding over the same hit element should remain inside bound
|
// Already inside binding over the same hit element should remain inside bound
|
||||||
if (
|
if (hit.id === currentBinding?.elementId && currentBinding.mode === "fixed") {
|
||||||
hit.id === currentBinding?.elementId &&
|
|
||||||
currentBinding.mode === "inside"
|
|
||||||
) {
|
|
||||||
return {
|
return {
|
||||||
current: { mode: "inside", focusPoint: point, element: hit },
|
current: { mode: "fixed", focusPoint: point, element: hit },
|
||||||
other,
|
other,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -538,7 +535,7 @@ const bindingStrategyForSimpleArrowEndpointDragging_complex = (
|
|||||||
// The opposite binding is inside the same element
|
// The opposite binding is inside the same element
|
||||||
// eslint-disable-next-line no-else-return
|
// eslint-disable-next-line no-else-return
|
||||||
else {
|
else {
|
||||||
current = { element: hit, mode: "inside", focusPoint: point };
|
current = { element: hit, mode: "fixed", focusPoint: point };
|
||||||
|
|
||||||
return { current, other: isMultiPoint ? { mode: undefined } : other };
|
return { current, other: isMultiPoint ? { mode: undefined } : other };
|
||||||
}
|
}
|
||||||
@@ -550,7 +547,7 @@ const bindingStrategyForSimpleArrowEndpointDragging_complex = (
|
|||||||
if (isOverlapping && oppositeElement && !otherIsTransparent) {
|
if (isOverlapping && oppositeElement && !otherIsTransparent) {
|
||||||
current = {
|
current = {
|
||||||
element: oppositeElement,
|
element: oppositeElement,
|
||||||
mode: "inside",
|
mode: "fixed",
|
||||||
focusPoint: point,
|
focusPoint: point,
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
@@ -741,7 +738,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
|
|||||||
) {
|
) {
|
||||||
return {
|
return {
|
||||||
start: {
|
start: {
|
||||||
mode: "inside",
|
mode: "fixed",
|
||||||
element: hit,
|
element: hit,
|
||||||
focusPoint: startDragged
|
focusPoint: startDragged
|
||||||
? globalPoint
|
? globalPoint
|
||||||
@@ -755,7 +752,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
|
|||||||
), // startFixedPoint,
|
), // startFixedPoint,
|
||||||
},
|
},
|
||||||
end: {
|
end: {
|
||||||
mode: "inside",
|
mode: "fixed",
|
||||||
element: hit,
|
element: hit,
|
||||||
focusPoint: endDragged
|
focusPoint: endDragged
|
||||||
? globalPoint
|
? globalPoint
|
||||||
@@ -774,7 +771,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
|
|||||||
start: startDragged
|
start: startDragged
|
||||||
? hit
|
? hit
|
||||||
? {
|
? {
|
||||||
mode: "inside",
|
mode: "fixed",
|
||||||
element: hit,
|
element: hit,
|
||||||
focusPoint: globalPoint,
|
focusPoint: globalPoint,
|
||||||
}
|
}
|
||||||
@@ -783,7 +780,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
|
|||||||
end: endDragged
|
end: endDragged
|
||||||
? hit
|
? hit
|
||||||
? {
|
? {
|
||||||
mode: "inside",
|
mode: "fixed",
|
||||||
element: hit,
|
element: hit,
|
||||||
focusPoint: globalPoint,
|
focusPoint: globalPoint,
|
||||||
}
|
}
|
||||||
@@ -796,7 +793,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
|
|||||||
const current: BindingStrategy = hit
|
const current: BindingStrategy = hit
|
||||||
? pointInElement
|
? pointInElement
|
||||||
? {
|
? {
|
||||||
mode: "inside",
|
mode: "fixed",
|
||||||
element: hit,
|
element: hit,
|
||||||
focusPoint: globalPoint,
|
focusPoint: globalPoint,
|
||||||
}
|
}
|
||||||
@@ -833,7 +830,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
|
|||||||
});
|
});
|
||||||
const otherNeverOverride = opts?.newArrow
|
const otherNeverOverride = opts?.newArrow
|
||||||
? appState.selectedLinearElement?.initialState.arrowStartIsInside
|
? appState.selectedLinearElement?.initialState.arrowStartIsInside
|
||||||
: otherBinding?.mode === "inside";
|
: otherBinding?.mode === "fixed";
|
||||||
const other: BindingStrategy = !otherNeverOverride
|
const other: BindingStrategy = !otherNeverOverride
|
||||||
? otherBindableElement &&
|
? otherBindableElement &&
|
||||||
!otherFocusPointIsInElement &&
|
!otherFocusPointIsInElement &&
|
||||||
@@ -1772,7 +1769,7 @@ export const updateBoundPoint = (
|
|||||||
|
|
||||||
// 0. Short-circuit for inside binding as it doesn't require any
|
// 0. Short-circuit for inside binding as it doesn't require any
|
||||||
// calculations and is not affected by other bindings
|
// calculations and is not affected by other bindings
|
||||||
if (binding.mode === "inside") {
|
if (binding.mode === "fixed") {
|
||||||
return LinearElementEditor.createPointAt(
|
return LinearElementEditor.createPointAt(
|
||||||
arrow,
|
arrow,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
|
|||||||
@@ -762,7 +762,7 @@ export const isPointInElement = (
|
|||||||
(isLinearElement(element) || isFreeDrawElement(element)) &&
|
(isLinearElement(element) || isFreeDrawElement(element)) &&
|
||||||
!isPathALoop(element.points)
|
!isPathALoop(element.points)
|
||||||
) {
|
) {
|
||||||
// There isn't any "inside" for a non-looping path
|
// There isn't any "fixed" for a non-looping path
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1083,7 +1083,7 @@ export class LinearElementEditor {
|
|||||||
},
|
},
|
||||||
arrowStartIsInside:
|
arrowStartIsInside:
|
||||||
!!app.state.newElement &&
|
!!app.state.newElement &&
|
||||||
(app.state.bindMode === "inside" || app.state.bindMode === "skip"),
|
(app.state.bindMode === "fixed" || app.state.bindMode === "skip"),
|
||||||
altFocusPoint: null,
|
altFocusPoint: null,
|
||||||
},
|
},
|
||||||
selectedPointsIndices: [element.points.length - 1],
|
selectedPointsIndices: [element.points.length - 1],
|
||||||
@@ -1145,7 +1145,7 @@ export class LinearElementEditor {
|
|||||||
},
|
},
|
||||||
arrowStartIsInside:
|
arrowStartIsInside:
|
||||||
!!app.state.newElement &&
|
!!app.state.newElement &&
|
||||||
(app.state.bindMode === "inside" || app.state.bindMode === "skip"),
|
(app.state.bindMode === "fixed" || app.state.bindMode === "skip"),
|
||||||
altFocusPoint: null,
|
altFocusPoint: null,
|
||||||
},
|
},
|
||||||
selectedPointsIndices: nextSelectedPointsIndices,
|
selectedPointsIndices: nextSelectedPointsIndices,
|
||||||
@@ -2412,7 +2412,7 @@ const pointDraggingUpdates = (
|
|||||||
const endLocalPoint = startIsDraggingOverEndElement
|
const endLocalPoint = startIsDraggingOverEndElement
|
||||||
? nextArrow.points[nextArrow.points.length - 1]
|
? nextArrow.points[nextArrow.points.length - 1]
|
||||||
: endIsDraggingOverStartElement &&
|
: endIsDraggingOverStartElement &&
|
||||||
app.state.bindMode !== "inside" &&
|
app.state.bindMode !== "fixed" &&
|
||||||
getFeatureFlag("COMPLEX_BINDINGS")
|
getFeatureFlag("COMPLEX_BINDINGS")
|
||||||
? nextArrow.points[0]
|
? nextArrow.points[0]
|
||||||
: endBindable
|
: endBindable
|
||||||
@@ -2443,7 +2443,7 @@ const pointDraggingUpdates = (
|
|||||||
endIsDraggingOverStartElement && getFeatureFlag("COMPLEX_BINDINGS")
|
endIsDraggingOverStartElement && getFeatureFlag("COMPLEX_BINDINGS")
|
||||||
? nextArrow.points[0]
|
? nextArrow.points[0]
|
||||||
: startIsDraggingOverEndElement &&
|
: startIsDraggingOverEndElement &&
|
||||||
app.state.bindMode !== "inside" &&
|
app.state.bindMode !== "fixed" &&
|
||||||
getFeatureFlag("COMPLEX_BINDINGS")
|
getFeatureFlag("COMPLEX_BINDINGS")
|
||||||
? endLocalPoint
|
? endLocalPoint
|
||||||
: startBindable
|
: startBindable
|
||||||
@@ -2461,7 +2461,7 @@ const pointDraggingUpdates = (
|
|||||||
!startIsDraggingOverEndElement &&
|
!startIsDraggingOverEndElement &&
|
||||||
!(
|
!(
|
||||||
endIsDraggingOverStartElement &&
|
endIsDraggingOverStartElement &&
|
||||||
app.state.bindMode !== "inside" &&
|
app.state.bindMode !== "fixed" &&
|
||||||
getFeatureFlag("COMPLEX_BINDINGS")
|
getFeatureFlag("COMPLEX_BINDINGS")
|
||||||
) &&
|
) &&
|
||||||
!!endBindable;
|
!!endBindable;
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import rough from "roughjs/bin/rough";
|
import rough from "roughjs/bin/rough";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
clamp,
|
|
||||||
type GlobalPoint,
|
type GlobalPoint,
|
||||||
isRightAngleRads,
|
isRightAngleRads,
|
||||||
lineSegment,
|
lineSegment,
|
||||||
@@ -106,62 +105,8 @@ const getCanvasPadding = (element: ExcalidrawElement) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export const resolveRenderOpacity = (
|
|
||||||
element: ExcalidrawElement,
|
|
||||||
renderConfig: Pick<
|
|
||||||
StaticCanvasRenderConfig,
|
|
||||||
"elementOpacityOverrides" | "resolveRenderOpacity"
|
|
||||||
>,
|
|
||||||
) => {
|
|
||||||
const override = renderConfig.elementOpacityOverrides?.get(element.id);
|
|
||||||
|
|
||||||
if (override !== undefined) {
|
|
||||||
return clamp(override, 0, 100);
|
|
||||||
}
|
|
||||||
|
|
||||||
const resolvedOpacity = renderConfig.resolveRenderOpacity?.(
|
|
||||||
element as NonDeletedExcalidrawElement,
|
|
||||||
);
|
|
||||||
|
|
||||||
if (resolvedOpacity !== undefined) {
|
|
||||||
return clamp(resolvedOpacity, 0, 100);
|
|
||||||
}
|
|
||||||
|
|
||||||
return element.opacity;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const resolveRenderPositionOffset = (
|
|
||||||
element: ExcalidrawElement,
|
|
||||||
renderConfig: Pick<StaticCanvasRenderConfig, "elementPositionOverrides">,
|
|
||||||
) => {
|
|
||||||
return renderConfig.elementPositionOverrides?.get(element.id) ?? { x: 0, y: 0 };
|
|
||||||
};
|
|
||||||
|
|
||||||
export const getRenderElementWithPositionOverride = <
|
|
||||||
TElement extends NonDeletedExcalidrawElement,
|
|
||||||
>(
|
|
||||||
element: TElement,
|
|
||||||
renderConfig: Pick<StaticCanvasRenderConfig, "elementPositionOverrides">,
|
|
||||||
): TElement => {
|
|
||||||
const positionOffset = resolveRenderPositionOffset(element, renderConfig);
|
|
||||||
|
|
||||||
if (positionOffset.x === 0 && positionOffset.y === 0) {
|
|
||||||
return element;
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
...element,
|
|
||||||
x: element.x + positionOffset.x,
|
|
||||||
y: element.y + positionOffset.y,
|
|
||||||
} as TElement;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const getRenderOpacity = (
|
export const getRenderOpacity = (
|
||||||
element: ExcalidrawElement,
|
element: ExcalidrawElement,
|
||||||
renderConfig: Pick<
|
|
||||||
StaticCanvasRenderConfig,
|
|
||||||
"elementOpacityOverrides" | "resolveRenderOpacity"
|
|
||||||
>,
|
|
||||||
containingFrame: ExcalidrawFrameLikeElement | null,
|
containingFrame: ExcalidrawFrameLikeElement | null,
|
||||||
elementsPendingErasure: ElementsPendingErasure,
|
elementsPendingErasure: ElementsPendingErasure,
|
||||||
pendingNodes: Readonly<PendingExcalidrawElements> | null,
|
pendingNodes: Readonly<PendingExcalidrawElements> | null,
|
||||||
@@ -170,8 +115,7 @@ export const getRenderOpacity = (
|
|||||||
// multiplying frame opacity with element opacity to combine them
|
// multiplying frame opacity with element opacity to combine them
|
||||||
// (e.g. frame 50% and element 50% opacity should result in 25% opacity)
|
// (e.g. frame 50% and element 50% opacity should result in 25% opacity)
|
||||||
let opacity =
|
let opacity =
|
||||||
(((containingFrame?.opacity ?? 100) * resolveRenderOpacity(element, renderConfig)) /
|
(((containingFrame?.opacity ?? 100) * element.opacity) / 10000) *
|
||||||
10000) *
|
|
||||||
globalAlpha;
|
globalAlpha;
|
||||||
|
|
||||||
// if pending erasure, multiply again to combine further
|
// if pending erasure, multiply again to combine further
|
||||||
@@ -847,11 +791,8 @@ export const renderElement = (
|
|||||||
!appState.selectedElementIds[element.id] &&
|
!appState.selectedElementIds[element.id] &&
|
||||||
!appState.hoveredElementIds[element.id];
|
!appState.hoveredElementIds[element.id];
|
||||||
|
|
||||||
element = getRenderElementWithPositionOverride(element, renderConfig);
|
|
||||||
|
|
||||||
context.globalAlpha = getRenderOpacity(
|
context.globalAlpha = getRenderOpacity(
|
||||||
element,
|
element,
|
||||||
renderConfig,
|
|
||||||
getContainingFrame(element, elementsMap),
|
getContainingFrame(element, elementsMap),
|
||||||
renderConfig.elementsPendingErasure,
|
renderConfig.elementsPendingErasure,
|
||||||
renderConfig.pendingFlowchartNodes,
|
renderConfig.pendingFlowchartNodes,
|
||||||
|
|||||||
@@ -279,7 +279,7 @@ export type ExcalidrawTextElementWithContainer = {
|
|||||||
|
|
||||||
export type FixedPoint = [number, number];
|
export type FixedPoint = [number, number];
|
||||||
|
|
||||||
export type BindMode = "inside" | "orbit" | "skip";
|
export type BindMode = "fixed" | "orbit" | "skip";
|
||||||
|
|
||||||
export type FixedPointBinding = {
|
export type FixedPointBinding = {
|
||||||
elementId: ExcalidrawBindableElement["id"];
|
elementId: ExcalidrawBindableElement["id"];
|
||||||
|
|||||||
@@ -72,14 +72,14 @@ describe("binding for simple arrows", () => {
|
|||||||
expect(startBinding.fixedPoint[0]).toBeLessThanOrEqual(1);
|
expect(startBinding.fixedPoint[0]).toBeLessThanOrEqual(1);
|
||||||
expect(startBinding.fixedPoint[1]).toBeGreaterThanOrEqual(0);
|
expect(startBinding.fixedPoint[1]).toBeGreaterThanOrEqual(0);
|
||||||
expect(startBinding.fixedPoint[1]).toBeLessThanOrEqual(1);
|
expect(startBinding.fixedPoint[1]).toBeLessThanOrEqual(1);
|
||||||
expect(startBinding.mode).toBe("inside");
|
expect(startBinding.mode).toBe("fixed");
|
||||||
|
|
||||||
const endBinding = arrow.endBinding as FixedPointBinding;
|
const endBinding = arrow.endBinding as FixedPointBinding;
|
||||||
expect(endBinding.fixedPoint[0]).toBeGreaterThanOrEqual(0);
|
expect(endBinding.fixedPoint[0]).toBeGreaterThanOrEqual(0);
|
||||||
expect(endBinding.fixedPoint[0]).toBeLessThanOrEqual(1);
|
expect(endBinding.fixedPoint[0]).toBeLessThanOrEqual(1);
|
||||||
expect(endBinding.fixedPoint[1]).toBeGreaterThanOrEqual(0);
|
expect(endBinding.fixedPoint[1]).toBeGreaterThanOrEqual(0);
|
||||||
expect(endBinding.fixedPoint[1]).toBeLessThanOrEqual(1);
|
expect(endBinding.fixedPoint[1]).toBeLessThanOrEqual(1);
|
||||||
expect(endBinding.mode).toBe("inside");
|
expect(endBinding.mode).toBe("fixed");
|
||||||
|
|
||||||
// Move the bindable
|
// Move the bindable
|
||||||
mouse.downAt(100, 150);
|
mouse.downAt(100, 150);
|
||||||
|
|||||||
@@ -1940,7 +1940,7 @@ export const actionChangeArrowType = register<keyof typeof ARROW_TYPE>({
|
|||||||
bindBindingElement(
|
bindBindingElement(
|
||||||
newElement,
|
newElement,
|
||||||
startElement,
|
startElement,
|
||||||
appState.bindMode === "inside" ? "inside" : "orbit",
|
appState.bindMode === "fixed" ? "fixed" : "orbit",
|
||||||
"start",
|
"start",
|
||||||
app.scene,
|
app.scene,
|
||||||
);
|
);
|
||||||
@@ -1954,7 +1954,7 @@ export const actionChangeArrowType = register<keyof typeof ARROW_TYPE>({
|
|||||||
bindBindingElement(
|
bindBindingElement(
|
||||||
newElement,
|
newElement,
|
||||||
endElement,
|
endElement,
|
||||||
appState.bindMode === "inside" ? "inside" : "orbit",
|
appState.bindMode === "fixed" ? "fixed" : "orbit",
|
||||||
"end",
|
"end",
|
||||||
app.scene,
|
app.scene,
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -207,12 +207,10 @@ import {
|
|||||||
getLineHeightInPx,
|
getLineHeightInPx,
|
||||||
getApproxMinLineWidth,
|
getApproxMinLineWidth,
|
||||||
getApproxMinLineHeight,
|
getApproxMinLineHeight,
|
||||||
getMinTextElementWidth,
|
getMinTextElementWidth,
|
||||||
ShapeCache,
|
ShapeCache,
|
||||||
getRenderOpacity,
|
getRenderOpacity,
|
||||||
resolveRenderPositionOffset,
|
editGroupForSelectedElement,
|
||||||
resolveRenderOpacity,
|
|
||||||
editGroupForSelectedElement,
|
|
||||||
getElementsInGroup,
|
getElementsInGroup,
|
||||||
getSelectedGroupIdForElement,
|
getSelectedGroupIdForElement,
|
||||||
getSelectedGroupIds,
|
getSelectedGroupIds,
|
||||||
@@ -452,7 +450,6 @@ import { searchItemInFocusAtom } from "./SearchMenu";
|
|||||||
import { isSidebarDockedAtom } from "./Sidebar/Sidebar";
|
import { isSidebarDockedAtom } from "./Sidebar/Sidebar";
|
||||||
import { StaticCanvas, InteractiveCanvas } from "./canvases";
|
import { StaticCanvas, InteractiveCanvas } from "./canvases";
|
||||||
import NewElementCanvas from "./canvases/NewElementCanvas";
|
import NewElementCanvas from "./canvases/NewElementCanvas";
|
||||||
import { AnimationController } from "../renderer/animation";
|
|
||||||
import { isPointHittingLink } from "./hyperlink/helpers";
|
import { isPointHittingLink } from "./hyperlink/helpers";
|
||||||
import { MagicIcon, copyIcon, fullscreenIcon } from "./icons";
|
import { MagicIcon, copyIcon, fullscreenIcon } from "./icons";
|
||||||
import { AppStateObserver, type OnStateChange } from "./AppStateObserver";
|
import { AppStateObserver, type OnStateChange } from "./AppStateObserver";
|
||||||
@@ -743,235 +740,6 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
onRemoveEventListenersEmitter = new Emitter<[]>();
|
onRemoveEventListenersEmitter = new Emitter<[]>();
|
||||||
|
|
||||||
api: ExcalidrawImperativeAPI;
|
api: ExcalidrawImperativeAPI;
|
||||||
private renderAnimationVersion = 0;
|
|
||||||
private elementOpacityOverrides = new Map<string, number>();
|
|
||||||
private elementPositionOverrides = new Map<string, { x: number; y: number }>();
|
|
||||||
private elementAnimationStates = new Map<
|
|
||||||
string,
|
|
||||||
{
|
|
||||||
opacityFrom: number;
|
|
||||||
opacityTo: number;
|
|
||||||
positionFrom: { x: number; y: number };
|
|
||||||
positionTo: { x: number; y: number };
|
|
||||||
easing: "linear" | "easeOut" | "easeInOut";
|
|
||||||
duration: number;
|
|
||||||
delay: number;
|
|
||||||
elapsed: number;
|
|
||||||
}
|
|
||||||
>();
|
|
||||||
|
|
||||||
private getElementAnimationKey = () => `${this.id}:animate-element`;
|
|
||||||
|
|
||||||
private bumpRenderAnimationVersion = () => {
|
|
||||||
this.renderAnimationVersion++;
|
|
||||||
this.setState({});
|
|
||||||
};
|
|
||||||
|
|
||||||
private getRenderOpacityConfig = () => ({
|
|
||||||
elementOpacityOverrides: this.elementOpacityOverrides,
|
|
||||||
elementPositionOverrides: this.elementPositionOverrides,
|
|
||||||
resolveRenderOpacity: this.props.resolveRenderOpacity,
|
|
||||||
});
|
|
||||||
|
|
||||||
private getResolvedElementOpacity = (element: NonDeletedExcalidrawElement) => {
|
|
||||||
return resolveRenderOpacity(element, this.getRenderOpacityConfig());
|
|
||||||
};
|
|
||||||
|
|
||||||
private getElementVisibleOpacity = (element: NonDeletedExcalidrawElement) => {
|
|
||||||
return clamp(element.opacity, 0, 100);
|
|
||||||
};
|
|
||||||
|
|
||||||
private applyAnimationEasing = (
|
|
||||||
progress: number,
|
|
||||||
easing: "linear" | "easeOut" | "easeInOut",
|
|
||||||
) => {
|
|
||||||
switch (easing) {
|
|
||||||
case "linear":
|
|
||||||
return progress;
|
|
||||||
case "easeOut":
|
|
||||||
return easeOut(progress);
|
|
||||||
case "easeInOut":
|
|
||||||
return progress < 0.5
|
|
||||||
? 4 * progress * progress * progress
|
|
||||||
: 1 - Math.pow(-2 * progress + 2, 3) / 2;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
private getFlyPositionOffset = (
|
|
||||||
element: NonDeletedExcalidrawElement,
|
|
||||||
from: "left" | "right" | "top" | "bottom",
|
|
||||||
) => {
|
|
||||||
const [x1, y1, x2, y2] = getElementAbsoluteCoords(
|
|
||||||
element,
|
|
||||||
this.scene.getNonDeletedElementsMap(),
|
|
||||||
);
|
|
||||||
const viewportWidth = this.state.width / this.state.zoom.value;
|
|
||||||
const viewportHeight = this.state.height / this.state.zoom.value;
|
|
||||||
const elementWidth = x2 - x1;
|
|
||||||
const elementHeight = y2 - y1;
|
|
||||||
|
|
||||||
switch (from) {
|
|
||||||
case "left":
|
|
||||||
return { x: -(Math.max(viewportWidth, elementWidth) + 64), y: 0 };
|
|
||||||
case "right":
|
|
||||||
return { x: Math.max(viewportWidth, elementWidth) + 64, y: 0 };
|
|
||||||
case "top":
|
|
||||||
return { x: 0, y: -(Math.max(viewportHeight, elementHeight) + 64) };
|
|
||||||
case "bottom":
|
|
||||||
return { x: 0, y: Math.max(viewportHeight, elementHeight) + 64 };
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
private animateElement = ({
|
|
||||||
id,
|
|
||||||
opacityFrom,
|
|
||||||
opacityTo,
|
|
||||||
positionFrom = { x: 0, y: 0 },
|
|
||||||
positionTo = { x: 0, y: 0 },
|
|
||||||
easing,
|
|
||||||
duration,
|
|
||||||
delay,
|
|
||||||
}: {
|
|
||||||
id: string;
|
|
||||||
opacityFrom: number;
|
|
||||||
opacityTo: number;
|
|
||||||
positionFrom?: { x: number; y: number };
|
|
||||||
positionTo?: { x: number; y: number };
|
|
||||||
easing: "linear" | "easeOut" | "easeInOut";
|
|
||||||
duration: number;
|
|
||||||
delay: number;
|
|
||||||
}) => {
|
|
||||||
const normalizedOpacityFrom = clamp(opacityFrom, 0, 100);
|
|
||||||
const normalizedOpacityTo = clamp(opacityTo, 0, 100);
|
|
||||||
const normalizedDuration = Math.max(duration, 0);
|
|
||||||
const normalizedDelay = Math.max(delay, 0);
|
|
||||||
|
|
||||||
this.elementOpacityOverrides.set(id, normalizedOpacityFrom);
|
|
||||||
|
|
||||||
if (positionFrom.x !== 0 || positionFrom.y !== 0) {
|
|
||||||
this.elementPositionOverrides.set(id, positionFrom);
|
|
||||||
} else {
|
|
||||||
this.elementPositionOverrides.delete(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (normalizedDuration === 0 && normalizedDelay === 0) {
|
|
||||||
this.elementAnimationStates.delete(id);
|
|
||||||
this.elementOpacityOverrides.set(id, normalizedOpacityTo);
|
|
||||||
|
|
||||||
if (positionTo.x !== 0 || positionTo.y !== 0) {
|
|
||||||
this.elementPositionOverrides.set(id, positionTo);
|
|
||||||
} else {
|
|
||||||
this.elementPositionOverrides.delete(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.bumpRenderAnimationVersion();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.elementAnimationStates.set(id, {
|
|
||||||
opacityFrom: normalizedOpacityFrom,
|
|
||||||
opacityTo: normalizedOpacityTo,
|
|
||||||
positionFrom,
|
|
||||||
positionTo,
|
|
||||||
easing,
|
|
||||||
duration: normalizedDuration,
|
|
||||||
delay: normalizedDelay,
|
|
||||||
elapsed: 0,
|
|
||||||
});
|
|
||||||
|
|
||||||
this.bumpRenderAnimationVersion();
|
|
||||||
this.syncElementAnimations();
|
|
||||||
};
|
|
||||||
|
|
||||||
private syncElementAnimations = () => {
|
|
||||||
const animationKey = this.getElementAnimationKey();
|
|
||||||
|
|
||||||
if (this.elementAnimationStates.size === 0) {
|
|
||||||
AnimationController.cancel(animationKey);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (AnimationController.running(animationKey)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
AnimationController.start(animationKey, ({ deltaTime }) => {
|
|
||||||
let shouldRerender = false;
|
|
||||||
|
|
||||||
for (const [id, animation] of this.elementAnimationStates) {
|
|
||||||
const element = this.scene.getNonDeletedElement(id);
|
|
||||||
|
|
||||||
if (!element) {
|
|
||||||
this.elementAnimationStates.delete(id);
|
|
||||||
shouldRerender =
|
|
||||||
this.elementOpacityOverrides.delete(id) || shouldRerender;
|
|
||||||
shouldRerender =
|
|
||||||
this.elementPositionOverrides.delete(id) || shouldRerender;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
animation.elapsed += deltaTime;
|
|
||||||
|
|
||||||
const progress =
|
|
||||||
animation.elapsed <= animation.delay
|
|
||||||
? 0
|
|
||||||
: animation.duration === 0
|
|
||||||
? 1
|
|
||||||
: Math.min(
|
|
||||||
(animation.elapsed - animation.delay) / animation.duration,
|
|
||||||
1,
|
|
||||||
);
|
|
||||||
const easedProgress = this.applyAnimationEasing(
|
|
||||||
progress,
|
|
||||||
animation.easing,
|
|
||||||
);
|
|
||||||
|
|
||||||
const nextOpacity =
|
|
||||||
animation.opacityFrom +
|
|
||||||
(animation.opacityTo - animation.opacityFrom) * easedProgress;
|
|
||||||
const nextPosition = {
|
|
||||||
x:
|
|
||||||
animation.positionFrom.x +
|
|
||||||
(animation.positionTo.x - animation.positionFrom.x) * easedProgress,
|
|
||||||
y:
|
|
||||||
animation.positionFrom.y +
|
|
||||||
(animation.positionTo.y - animation.positionFrom.y) * easedProgress,
|
|
||||||
};
|
|
||||||
|
|
||||||
const clampedOpacity = clamp(nextOpacity, 0, 100);
|
|
||||||
|
|
||||||
if (this.elementOpacityOverrides.get(id) !== clampedOpacity) {
|
|
||||||
this.elementOpacityOverrides.set(id, clampedOpacity);
|
|
||||||
shouldRerender = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
const currentPositionOverride =
|
|
||||||
this.elementPositionOverrides.get(id) ?? ({ x: 0, y: 0 } as const);
|
|
||||||
|
|
||||||
if (
|
|
||||||
currentPositionOverride.x !== nextPosition.x ||
|
|
||||||
currentPositionOverride.y !== nextPosition.y
|
|
||||||
) {
|
|
||||||
if (nextPosition.x === 0 && nextPosition.y === 0) {
|
|
||||||
this.elementPositionOverrides.delete(id);
|
|
||||||
} else {
|
|
||||||
this.elementPositionOverrides.set(id, nextPosition);
|
|
||||||
}
|
|
||||||
shouldRerender = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (animation.elapsed >= animation.delay + animation.duration) {
|
|
||||||
this.elementAnimationStates.delete(id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (shouldRerender) {
|
|
||||||
this.bumpRenderAnimationVersion();
|
|
||||||
}
|
|
||||||
|
|
||||||
return this.elementAnimationStates.size > 0 ? {} : undefined;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
private createExcalidrawAPI(): ExcalidrawImperativeAPI {
|
private createExcalidrawAPI(): ExcalidrawImperativeAPI {
|
||||||
const api: ExcalidrawImperativeAPI = {
|
const api: ExcalidrawImperativeAPI = {
|
||||||
@@ -989,9 +757,6 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
clear: this.resetHistory,
|
clear: this.resetHistory,
|
||||||
},
|
},
|
||||||
scrollToContent: this.scrollToContent,
|
scrollToContent: this.scrollToContent,
|
||||||
animateElements: this.animateElements,
|
|
||||||
cancelElementAnimation: this.cancelElementAnimation,
|
|
||||||
clearElementAnimationOverrides: this.clearElementAnimationOverrides,
|
|
||||||
getSceneElements: this.getSceneElements,
|
getSceneElements: this.getSceneElements,
|
||||||
getAppState: () => this.state,
|
getAppState: () => this.state,
|
||||||
getFiles: () => this.files,
|
getFiles: () => this.files,
|
||||||
@@ -1330,7 +1095,7 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
);
|
);
|
||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
bindMode: "inside",
|
bindMode: "fixed",
|
||||||
selectedLinearElement: {
|
selectedLinearElement: {
|
||||||
...this.state.selectedLinearElement,
|
...this.state.selectedLinearElement,
|
||||||
initialState: {
|
initialState: {
|
||||||
@@ -1411,16 +1176,16 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
: null;
|
: null;
|
||||||
const isAlreadyInsideBindingToSameElement =
|
const isAlreadyInsideBindingToSameElement =
|
||||||
(otherBinding &&
|
(otherBinding &&
|
||||||
arrow[otherBinding]?.mode === "inside" &&
|
arrow[otherBinding]?.mode === "fixed" &&
|
||||||
arrow[otherBinding]?.elementId === hoveredElement?.id) ||
|
arrow[otherBinding]?.elementId === hoveredElement?.id) ||
|
||||||
(currentBinding &&
|
(currentBinding &&
|
||||||
arrow[currentBinding]?.mode === "inside" &&
|
arrow[currentBinding]?.mode === "fixed" &&
|
||||||
hoveredElement?.id === arrow[currentBinding]?.elementId);
|
hoveredElement?.id === arrow[currentBinding]?.elementId);
|
||||||
|
|
||||||
if (
|
if (
|
||||||
currentBinding &&
|
currentBinding &&
|
||||||
otherBinding &&
|
otherBinding &&
|
||||||
arrow[currentBinding]?.mode === "inside" &&
|
arrow[currentBinding]?.mode === "fixed" &&
|
||||||
hoveredElement?.id !== arrow[currentBinding]?.elementId &&
|
hoveredElement?.id !== arrow[currentBinding]?.elementId &&
|
||||||
arrow[otherBinding]?.elementId !== arrow[currentBinding]?.elementId
|
arrow[otherBinding]?.elementId !== arrow[currentBinding]?.elementId
|
||||||
) {
|
) {
|
||||||
@@ -1452,7 +1217,7 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Clear the inside binding mode too
|
// Clear the inside binding mode too
|
||||||
if (this.state.bindMode === "inside") {
|
if (this.state.bindMode === "fixed") {
|
||||||
flushSync(() => {
|
flushSync(() => {
|
||||||
this.setState({
|
this.setState({
|
||||||
bindMode: "orbit",
|
bindMode: "orbit",
|
||||||
@@ -1969,10 +1734,6 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
const isHovered =
|
const isHovered =
|
||||||
this.state.activeEmbeddable?.element === el &&
|
this.state.activeEmbeddable?.element === el &&
|
||||||
this.state.activeEmbeddable?.state === "hover";
|
this.state.activeEmbeddable?.state === "hover";
|
||||||
const renderPositionOffset = resolveRenderPositionOffset(
|
|
||||||
el,
|
|
||||||
this.getRenderOpacityConfig(),
|
|
||||||
);
|
|
||||||
|
|
||||||
// scale video embeds based on zoom (capped) so that smaller embeds
|
// scale video embeds based on zoom (capped) so that smaller embeds
|
||||||
// on canvas when zoomed are still of legible quality
|
// on canvas when zoomed are still of legible quality
|
||||||
@@ -1994,14 +1755,13 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
})}
|
})}
|
||||||
style={{
|
style={{
|
||||||
transform: isVisible
|
transform: isVisible
|
||||||
? `translate(${x + renderPositionOffset.x * this.state.zoom.value - this.state.offsetLeft}px, ${
|
? `translate(${x - this.state.offsetLeft}px, ${
|
||||||
y + renderPositionOffset.y * this.state.zoom.value - this.state.offsetTop
|
y - this.state.offsetTop
|
||||||
}px) scale(${scale})`
|
}px) scale(${scale})`
|
||||||
: "none",
|
: "none",
|
||||||
display: isVisible ? "block" : "none",
|
display: isVisible ? "block" : "none",
|
||||||
opacity: getRenderOpacity(
|
opacity: getRenderOpacity(
|
||||||
el,
|
el,
|
||||||
this.getRenderOpacityConfig(),
|
|
||||||
getContainingFrame(el, this.scene.getNonDeletedElementsMap()),
|
getContainingFrame(el, this.scene.getNonDeletedElementsMap()),
|
||||||
this.elementsPendingErasure,
|
this.elementsPendingErasure,
|
||||||
null,
|
null,
|
||||||
@@ -2591,9 +2351,6 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
pendingFlowchartNodes:
|
pendingFlowchartNodes:
|
||||||
this.flowChartCreator.pendingNodes,
|
this.flowChartCreator.pendingNodes,
|
||||||
theme: this.state.theme,
|
theme: this.state.theme,
|
||||||
...this.getRenderOpacityConfig(),
|
|
||||||
renderAnimationVersion:
|
|
||||||
this.renderAnimationVersion,
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
{newElementCanvasElement && (
|
{newElementCanvasElement && (
|
||||||
@@ -2616,9 +2373,6 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
this.elementsPendingErasure,
|
this.elementsPendingErasure,
|
||||||
pendingFlowchartNodes: null,
|
pendingFlowchartNodes: null,
|
||||||
theme: this.state.theme,
|
theme: this.state.theme,
|
||||||
...this.getRenderOpacityConfig(),
|
|
||||||
renderAnimationVersion:
|
|
||||||
this.renderAnimationVersion,
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
@@ -3452,7 +3206,6 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
this.editorLifecycleEvents.emit("editor:unmount");
|
this.editorLifecycleEvents.emit("editor:unmount");
|
||||||
this.props.onUnmount?.();
|
this.props.onUnmount?.();
|
||||||
this.props.onExcalidrawAPI?.(null);
|
this.props.onExcalidrawAPI?.(null);
|
||||||
AnimationController.cancel(this.getElementAnimationKey());
|
|
||||||
|
|
||||||
(window as any).launchQueue?.setConsumer(() => {});
|
(window as any).launchQueue?.setConsumer(() => {});
|
||||||
|
|
||||||
@@ -4865,98 +4618,6 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
public animateElements = ({
|
|
||||||
elements,
|
|
||||||
duration = 250,
|
|
||||||
delay = 0,
|
|
||||||
stagger = 0,
|
|
||||||
phase = "in",
|
|
||||||
easing,
|
|
||||||
...animation
|
|
||||||
}:
|
|
||||||
| {
|
|
||||||
elements: readonly (ExcalidrawElement | ExcalidrawElement["id"])[];
|
|
||||||
type: "fade";
|
|
||||||
duration?: number;
|
|
||||||
delay?: number;
|
|
||||||
stagger?: number;
|
|
||||||
phase?: "in" | "out";
|
|
||||||
easing?: "linear" | "easeOut" | "easeInOut";
|
|
||||||
}
|
|
||||||
| {
|
|
||||||
elements: readonly (ExcalidrawElement | ExcalidrawElement["id"])[];
|
|
||||||
type: "fly";
|
|
||||||
from: "left" | "right" | "top" | "bottom";
|
|
||||||
duration?: number;
|
|
||||||
delay?: number;
|
|
||||||
stagger?: number;
|
|
||||||
phase?: "in" | "out";
|
|
||||||
easing?: "linear" | "easeOut" | "easeInOut";
|
|
||||||
}) => {
|
|
||||||
const normalizedDelay = Math.max(delay, 0);
|
|
||||||
const normalizedStagger = Math.max(stagger, 0);
|
|
||||||
|
|
||||||
elements.forEach((elementOrId, index) => {
|
|
||||||
const id = typeof elementOrId === "string" ? elementOrId : elementOrId.id;
|
|
||||||
const element = this.scene.getNonDeletedElement(id);
|
|
||||||
|
|
||||||
if (!element) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (animation.type === "fade") {
|
|
||||||
this.animateElement({
|
|
||||||
id,
|
|
||||||
opacityFrom:
|
|
||||||
phase === "in" ? 0 : this.getElementVisibleOpacity(element),
|
|
||||||
opacityTo:
|
|
||||||
phase === "in" ? this.getElementVisibleOpacity(element) : 0,
|
|
||||||
easing: easing ?? "easeInOut",
|
|
||||||
duration,
|
|
||||||
delay: normalizedDelay + index * normalizedStagger,
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const flyOffset = this.getFlyPositionOffset(element, animation.from);
|
|
||||||
|
|
||||||
this.animateElement({
|
|
||||||
id,
|
|
||||||
opacityFrom: phase === "in" ? 0 : this.getElementVisibleOpacity(element),
|
|
||||||
opacityTo: phase === "in" ? this.getElementVisibleOpacity(element) : 0,
|
|
||||||
positionFrom: phase === "in" ? flyOffset : { x: 0, y: 0 },
|
|
||||||
positionTo: phase === "in" ? { x: 0, y: 0 } : flyOffset,
|
|
||||||
easing: easing ?? "easeOut",
|
|
||||||
duration,
|
|
||||||
delay: normalizedDelay + index * normalizedStagger,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
public cancelElementAnimation = (id: string) => {
|
|
||||||
if (!this.elementAnimationStates.delete(id)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.syncElementAnimations();
|
|
||||||
};
|
|
||||||
|
|
||||||
public clearElementAnimationOverrides = () => {
|
|
||||||
if (
|
|
||||||
this.elementOpacityOverrides.size === 0 &&
|
|
||||||
this.elementPositionOverrides.size === 0 &&
|
|
||||||
this.elementAnimationStates.size === 0
|
|
||||||
) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.elementAnimationStates.clear();
|
|
||||||
this.elementOpacityOverrides.clear();
|
|
||||||
this.elementPositionOverrides.clear();
|
|
||||||
this.syncElementAnimations();
|
|
||||||
this.bumpRenderAnimationVersion();
|
|
||||||
};
|
|
||||||
|
|
||||||
public applyDeltas = (
|
public applyDeltas = (
|
||||||
deltas: StoreDelta[],
|
deltas: StoreDelta[],
|
||||||
options?: ApplyToOptions,
|
options?: ApplyToOptions,
|
||||||
|
|||||||
@@ -239,8 +239,8 @@ const repairBinding = <T extends ExcalidrawArrowElement>(
|
|||||||
if (binding.elementId) {
|
if (binding.elementId) {
|
||||||
return {
|
return {
|
||||||
elementId: binding.elementId,
|
elementId: binding.elementId,
|
||||||
mode: binding.mode,
|
mode: (binding.mode as string) === "inside" ? "fixed" : binding.mode,
|
||||||
fixedPoint: normalizeFixedPoint(binding.fixedPoint),
|
fixedPoint: normalizeFixedPoint(binding.fixedPoint || [0.5, 0.5]),
|
||||||
} as FixedPointBinding | null;
|
} as FixedPointBinding | null;
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@@ -269,7 +269,7 @@ const repairBinding = <T extends ExcalidrawArrowElement>(
|
|||||||
elementsMap,
|
elementsMap,
|
||||||
);
|
);
|
||||||
const mode = isPointInElement(p, boundElement, elementsMap)
|
const mode = isPointInElement(p, boundElement, elementsMap)
|
||||||
? "inside"
|
? "fixed"
|
||||||
: "orbit";
|
: "orbit";
|
||||||
const safeElement = {
|
const safeElement = {
|
||||||
...element,
|
...element,
|
||||||
@@ -289,7 +289,7 @@ const repairBinding = <T extends ExcalidrawArrowElement>(
|
|||||||
: null,
|
: null,
|
||||||
};
|
};
|
||||||
const focusPoint =
|
const focusPoint =
|
||||||
mode === "inside"
|
mode === "fixed"
|
||||||
? p
|
? p
|
||||||
: projectFixedPointOntoDiagonal(
|
: projectFixedPointOntoDiagonal(
|
||||||
safeElement,
|
safeElement,
|
||||||
|
|||||||
@@ -99,7 +99,6 @@ const ExcalidrawBase = (props: ExcalidrawProps) => {
|
|||||||
children,
|
children,
|
||||||
validateEmbeddable,
|
validateEmbeddable,
|
||||||
renderEmbeddable,
|
renderEmbeddable,
|
||||||
resolveRenderOpacity,
|
|
||||||
aiEnabled,
|
aiEnabled,
|
||||||
showDeprecatedFonts,
|
showDeprecatedFonts,
|
||||||
renderScrollbars,
|
renderScrollbars,
|
||||||
@@ -218,7 +217,6 @@ const ExcalidrawBase = (props: ExcalidrawProps) => {
|
|||||||
onDuplicate={onDuplicate}
|
onDuplicate={onDuplicate}
|
||||||
validateEmbeddable={validateEmbeddable}
|
validateEmbeddable={validateEmbeddable}
|
||||||
renderEmbeddable={renderEmbeddable}
|
renderEmbeddable={renderEmbeddable}
|
||||||
resolveRenderOpacity={resolveRenderOpacity}
|
|
||||||
aiEnabled={aiEnabled !== false}
|
aiEnabled={aiEnabled !== false}
|
||||||
showDeprecatedFonts={showDeprecatedFonts}
|
showDeprecatedFonts={showDeprecatedFonts}
|
||||||
renderScrollbars={renderScrollbars}
|
renderScrollbars={renderScrollbars}
|
||||||
|
|||||||
@@ -14,16 +14,11 @@ import {
|
|||||||
} from "@excalidraw/element";
|
} from "@excalidraw/element";
|
||||||
import {
|
import {
|
||||||
elementOverlapsWithFrame,
|
elementOverlapsWithFrame,
|
||||||
getContainingFrame,
|
|
||||||
getTargetFrame,
|
getTargetFrame,
|
||||||
shouldApplyFrameClip,
|
shouldApplyFrameClip,
|
||||||
} from "@excalidraw/element";
|
} from "@excalidraw/element";
|
||||||
|
|
||||||
import {
|
import { renderElement } from "@excalidraw/element";
|
||||||
getRenderElementWithPositionOverride,
|
|
||||||
getRenderOpacity,
|
|
||||||
renderElement,
|
|
||||||
} from "@excalidraw/element";
|
|
||||||
|
|
||||||
import { getElementAbsoluteCoords } from "@excalidraw/element";
|
import { getElementAbsoluteCoords } from "@excalidraw/element";
|
||||||
|
|
||||||
@@ -175,10 +170,7 @@ const renderLinkIcon = (
|
|||||||
context: CanvasRenderingContext2D,
|
context: CanvasRenderingContext2D,
|
||||||
appState: StaticCanvasAppState,
|
appState: StaticCanvasAppState,
|
||||||
elementsMap: ElementsMap,
|
elementsMap: ElementsMap,
|
||||||
renderConfig: StaticCanvasRenderConfig,
|
|
||||||
) => {
|
) => {
|
||||||
element = getRenderElementWithPositionOverride(element, renderConfig);
|
|
||||||
|
|
||||||
if (element.link && !appState.selectedElementIds[element.id]) {
|
if (element.link && !appState.selectedElementIds[element.id]) {
|
||||||
const [x1, y1, x2, y2] = getElementAbsoluteCoords(element, elementsMap);
|
const [x1, y1, x2, y2] = getElementAbsoluteCoords(element, elementsMap);
|
||||||
const [x, y, width, height] = getLinkHandleFromCoords(
|
const [x, y, width, height] = getLinkHandleFromCoords(
|
||||||
@@ -229,13 +221,7 @@ const renderLinkIcon = (
|
|||||||
|
|
||||||
linkCanvasCacheContext.restore();
|
linkCanvasCacheContext.restore();
|
||||||
}
|
}
|
||||||
context.globalAlpha = getRenderOpacity(
|
context.globalAlpha = element.opacity / 100;
|
||||||
element,
|
|
||||||
renderConfig,
|
|
||||||
getContainingFrame(element, elementsMap),
|
|
||||||
renderConfig.elementsPendingErasure,
|
|
||||||
renderConfig.pendingFlowchartNodes,
|
|
||||||
);
|
|
||||||
context.drawImage(linkCanvas, x - centerX, y - centerY, width, height);
|
context.drawImage(linkCanvas, x - centerX, y - centerY, width, height);
|
||||||
context.restore();
|
context.restore();
|
||||||
}
|
}
|
||||||
@@ -384,7 +370,7 @@ const _renderStaticScene = ({
|
|||||||
context.restore();
|
context.restore();
|
||||||
|
|
||||||
if (!isExporting) {
|
if (!isExporting) {
|
||||||
renderLinkIcon(element, context, appState, elementsMap, renderConfig);
|
renderLinkIcon(element, context, appState, elementsMap);
|
||||||
}
|
}
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
console.error(
|
console.error(
|
||||||
@@ -435,7 +421,7 @@ const _renderStaticScene = ({
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (!isExporting) {
|
if (!isExporting) {
|
||||||
renderLinkIcon(element, context, appState, elementsMap, renderConfig);
|
renderLinkIcon(element, context, appState, elementsMap);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
// - when exporting the whole canvas, we DO NOT apply clipping
|
// - when exporting the whole canvas, we DO NOT apply clipping
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ import type {
|
|||||||
AppClassProperties,
|
AppClassProperties,
|
||||||
AppState,
|
AppState,
|
||||||
EmbedsValidationStatus,
|
EmbedsValidationStatus,
|
||||||
RenderOpacityResolver,
|
|
||||||
ElementsPendingErasure,
|
ElementsPendingErasure,
|
||||||
InteractiveCanvasAppState,
|
InteractiveCanvasAppState,
|
||||||
StaticCanvasAppState,
|
StaticCanvasAppState,
|
||||||
@@ -38,13 +37,6 @@ export type StaticCanvasRenderConfig = {
|
|||||||
elementsPendingErasure: ElementsPendingErasure;
|
elementsPendingErasure: ElementsPendingErasure;
|
||||||
pendingFlowchartNodes: PendingExcalidrawElements | null;
|
pendingFlowchartNodes: PendingExcalidrawElements | null;
|
||||||
theme: AppState["theme"];
|
theme: AppState["theme"];
|
||||||
resolveRenderOpacity?: RenderOpacityResolver;
|
|
||||||
elementOpacityOverrides?: ReadonlyMap<ExcalidrawElement["id"], number>;
|
|
||||||
elementPositionOverrides?: ReadonlyMap<
|
|
||||||
ExcalidrawElement["id"],
|
|
||||||
{ x: number; y: number }
|
|
||||||
>;
|
|
||||||
renderAnimationVersion?: number;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export type SVGRenderConfig = {
|
export type SVGRenderConfig = {
|
||||||
|
|||||||
@@ -857,7 +857,7 @@ describe("repairing bindings", () => {
|
|||||||
endBinding: {
|
endBinding: {
|
||||||
elementId: container.id,
|
elementId: container.id,
|
||||||
fixedPoint: [0.5, 0.5],
|
fixedPoint: [0.5, 0.5],
|
||||||
mode: "inside",
|
mode: "fixed",
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -567,10 +567,6 @@ export type OnExportProgress = {
|
|||||||
progress?: number;
|
progress?: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type RenderOpacityResolver = (
|
|
||||||
element: NonDeletedExcalidrawElement,
|
|
||||||
) => ExcalidrawElement["opacity"] | undefined;
|
|
||||||
|
|
||||||
export interface ExcalidrawProps {
|
export interface ExcalidrawProps {
|
||||||
onChange?: (
|
onChange?: (
|
||||||
elements: readonly OrderedExcalidrawElement[],
|
elements: readonly OrderedExcalidrawElement[],
|
||||||
@@ -686,7 +682,6 @@ export interface ExcalidrawProps {
|
|||||||
element: NonDeleted<ExcalidrawEmbeddableElement>,
|
element: NonDeleted<ExcalidrawEmbeddableElement>,
|
||||||
appState: AppState,
|
appState: AppState,
|
||||||
) => JSX.Element | null;
|
) => JSX.Element | null;
|
||||||
resolveRenderOpacity?: RenderOpacityResolver;
|
|
||||||
aiEnabled?: boolean;
|
aiEnabled?: boolean;
|
||||||
showDeprecatedFonts?: boolean;
|
showDeprecatedFonts?: boolean;
|
||||||
renderScrollbars?: boolean;
|
renderScrollbars?: boolean;
|
||||||
@@ -967,11 +962,6 @@ export interface ExcalidrawImperativeAPI {
|
|||||||
getFiles: () => InstanceType<typeof App>["files"];
|
getFiles: () => InstanceType<typeof App>["files"];
|
||||||
getName: InstanceType<typeof App>["getName"];
|
getName: InstanceType<typeof App>["getName"];
|
||||||
scrollToContent: InstanceType<typeof App>["scrollToContent"];
|
scrollToContent: InstanceType<typeof App>["scrollToContent"];
|
||||||
animateElements: InstanceType<typeof App>["animateElements"];
|
|
||||||
cancelElementAnimation: InstanceType<typeof App>["cancelElementAnimation"];
|
|
||||||
clearElementAnimationOverrides: InstanceType<
|
|
||||||
typeof App
|
|
||||||
>["clearElementAnimationOverrides"];
|
|
||||||
registerAction: (action: Action) => void;
|
registerAction: (action: Action) => void;
|
||||||
refresh: InstanceType<typeof App>["refresh"];
|
refresh: InstanceType<typeof App>["refresh"];
|
||||||
setToast: InstanceType<typeof App>["setToast"];
|
setToast: InstanceType<typeof App>["setToast"];
|
||||||
|
|||||||
Reference in New Issue
Block a user