Compare commits

...

3 Commits

Author SHA1 Message Date
Mark Tolmacs 0f59095395 Merge branch 'master' into mtolmacs/chore/rename-inside-binding
Signed-off-by: Mark Tolmacs <mark@lazycat.hu>
2026-06-04 15:39:23 +00:00
Mark Tolmacs c11532ba5f fix: Restore
Signed-off-by: Mark Tolmacs <mark@lazycat.hu>
2026-02-13 10:43:30 +00:00
Mark Tolmacs 67a75a9542 chore: Rename "inside" to "fixed"
Signed-off-by: Mark Tolmacs <mark@lazycat.hu>
2026-02-13 10:17:17 +00:00
10 changed files with 47 additions and 50 deletions
+4 -4
View File
@@ -125,7 +125,7 @@ const focusPointUpdate = (
if (switchToInsideBinding || boundToSameElement) {
currentBinding = {
...currentBinding,
mode: "inside",
mode: "fixed",
};
} else {
currentBinding = {
@@ -166,7 +166,7 @@ const focusPointUpdate = (
if (switchToInsideBinding || boundToSameElementAfterUpdate) {
adjacentBinding = {
...adjacentBinding,
mode: "inside",
mode: "fixed",
};
} else {
adjacentBinding = {
@@ -256,8 +256,8 @@ export const handleFocusPointDrag = (
// Handle binding mode switch
const newMode =
switchToInsideBinding && arrow[bindingField]?.mode === "orbit"
? "inside"
: !switchToInsideBinding && arrow[bindingField]?.mode === "inside"
? "fixed"
: !switchToInsideBinding && arrow[bindingField]?.mode === "fixed"
? "orbit"
: null;
+22 -25
View File
@@ -328,7 +328,7 @@ const bindingStrategyForNewSimpleArrowEndpointDragging = (
if (hit) {
start = {
element: hit,
mode: "inside",
mode: "fixed",
focusPoint: point,
};
} else {
@@ -353,13 +353,13 @@ const bindingStrategyForNewSimpleArrowEndpointDragging = (
start: isMultiPoint
? { mode: undefined }
: {
mode: "inside",
mode: "fixed",
element: hit,
focusPoint: origin ?? center,
},
end: isMultiPoint
? { 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
? { mode: undefined }
: {
mode: otherElement.id !== hit.id ? "orbit" : "inside",
mode: otherElement.id !== hit.id ? "orbit" : "fixed",
element: otherElement,
focusPoint: origin ?? pointFrom<GlobalPoint>(arrow.x, arrow.y),
},
@@ -402,7 +402,7 @@ const bindingStrategyForNewSimpleArrowEndpointDragging = (
const otherIsInsideBinding =
!!appState.selectedLinearElement?.initialState.arrowStartIsInside;
const other: BindingStrategy = {
mode: otherIsInsideBinding ? "inside" : "orbit",
mode: otherIsInsideBinding ? "fixed" : "orbit",
element: otherElement,
focusPoint: shiftKey
? elementCenterPoint(otherElement, elementsMap)
@@ -416,9 +416,9 @@ const bindingStrategyForNewSimpleArrowEndpointDragging = (
let current: BindingStrategy;
if (hit) {
const isInsideBinding =
globalBindMode === "inside" || globalBindMode === "skip";
globalBindMode === "fixed" || globalBindMode === "skip";
current = {
mode: isInsideBinding && !isNested ? "inside" : "orbit",
mode: isInsideBinding && !isNested ? "fixed" : "orbit",
element: hit,
focusPoint: isInsideBinding || isNested ? point : point,
};
@@ -436,10 +436,10 @@ const bindingStrategyForNewSimpleArrowEndpointDragging = (
if (!arrow.startBinding) {
if (hit) {
const isInsideBinding =
globalBindMode === "inside" || globalBindMode === "skip";
globalBindMode === "fixed" || globalBindMode === "skip";
end = {
mode: isInsideBinding ? "inside" : "orbit",
mode: isInsideBinding ? "fixed" : "orbit",
element: hit,
focusPoint: point,
};
@@ -488,7 +488,7 @@ const bindingStrategyForSimpleArrowEndpointDragging_complex = (
// If the global bind mode is in free binding mode, just bind
// where the pointer is and keep the other end intact
if (globalBindMode === "inside" || globalBindMode === "skip") {
if (globalBindMode === "fixed" || globalBindMode === "skip") {
current = hit
? {
element:
@@ -496,7 +496,7 @@ const bindingStrategyForSimpleArrowEndpointDragging_complex = (
? hit
: oppositeElement,
focusPoint: point,
mode: "inside",
mode: "fixed",
}
: { mode: null };
other =
@@ -514,12 +514,9 @@ const bindingStrategyForSimpleArrowEndpointDragging_complex = (
}
// Already inside binding over the same hit element should remain inside bound
if (
hit.id === currentBinding?.elementId &&
currentBinding.mode === "inside"
) {
if (hit.id === currentBinding?.elementId && currentBinding.mode === "fixed") {
return {
current: { mode: "inside", focusPoint: point, element: hit },
current: { mode: "fixed", focusPoint: point, element: hit },
other,
};
}
@@ -538,7 +535,7 @@ const bindingStrategyForSimpleArrowEndpointDragging_complex = (
// The opposite binding is inside the same element
// eslint-disable-next-line no-else-return
else {
current = { element: hit, mode: "inside", focusPoint: point };
current = { element: hit, mode: "fixed", focusPoint: point };
return { current, other: isMultiPoint ? { mode: undefined } : other };
}
@@ -550,7 +547,7 @@ const bindingStrategyForSimpleArrowEndpointDragging_complex = (
if (isOverlapping && oppositeElement && !otherIsTransparent) {
current = {
element: oppositeElement,
mode: "inside",
mode: "fixed",
focusPoint: point,
};
} else {
@@ -741,7 +738,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
) {
return {
start: {
mode: "inside",
mode: "fixed",
element: hit,
focusPoint: startDragged
? globalPoint
@@ -755,7 +752,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
), // startFixedPoint,
},
end: {
mode: "inside",
mode: "fixed",
element: hit,
focusPoint: endDragged
? globalPoint
@@ -774,7 +771,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
start: startDragged
? hit
? {
mode: "inside",
mode: "fixed",
element: hit,
focusPoint: globalPoint,
}
@@ -783,7 +780,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
end: endDragged
? hit
? {
mode: "inside",
mode: "fixed",
element: hit,
focusPoint: globalPoint,
}
@@ -796,7 +793,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
const current: BindingStrategy = hit
? pointInElement
? {
mode: "inside",
mode: "fixed",
element: hit,
focusPoint: globalPoint,
}
@@ -833,7 +830,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
});
const otherNeverOverride = opts?.newArrow
? appState.selectedLinearElement?.initialState.arrowStartIsInside
: otherBinding?.mode === "inside";
: otherBinding?.mode === "fixed";
const other: BindingStrategy = !otherNeverOverride
? otherBindableElement &&
!otherFocusPointIsInElement &&
@@ -1772,7 +1769,7 @@ export const updateBoundPoint = (
// 0. Short-circuit for inside binding as it doesn't require any
// calculations and is not affected by other bindings
if (binding.mode === "inside") {
if (binding.mode === "fixed") {
return LinearElementEditor.createPointAt(
arrow,
elementsMap,
+1 -1
View File
@@ -762,7 +762,7 @@ export const isPointInElement = (
(isLinearElement(element) || isFreeDrawElement(element)) &&
!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;
}
+5 -5
View File
@@ -1083,7 +1083,7 @@ export class LinearElementEditor {
},
arrowStartIsInside:
!!app.state.newElement &&
(app.state.bindMode === "inside" || app.state.bindMode === "skip"),
(app.state.bindMode === "fixed" || app.state.bindMode === "skip"),
altFocusPoint: null,
},
selectedPointsIndices: [element.points.length - 1],
@@ -1145,7 +1145,7 @@ export class LinearElementEditor {
},
arrowStartIsInside:
!!app.state.newElement &&
(app.state.bindMode === "inside" || app.state.bindMode === "skip"),
(app.state.bindMode === "fixed" || app.state.bindMode === "skip"),
altFocusPoint: null,
},
selectedPointsIndices: nextSelectedPointsIndices,
@@ -2412,7 +2412,7 @@ const pointDraggingUpdates = (
const endLocalPoint = startIsDraggingOverEndElement
? nextArrow.points[nextArrow.points.length - 1]
: endIsDraggingOverStartElement &&
app.state.bindMode !== "inside" &&
app.state.bindMode !== "fixed" &&
getFeatureFlag("COMPLEX_BINDINGS")
? nextArrow.points[0]
: endBindable
@@ -2443,7 +2443,7 @@ const pointDraggingUpdates = (
endIsDraggingOverStartElement && getFeatureFlag("COMPLEX_BINDINGS")
? nextArrow.points[0]
: startIsDraggingOverEndElement &&
app.state.bindMode !== "inside" &&
app.state.bindMode !== "fixed" &&
getFeatureFlag("COMPLEX_BINDINGS")
? endLocalPoint
: startBindable
@@ -2461,7 +2461,7 @@ const pointDraggingUpdates = (
!startIsDraggingOverEndElement &&
!(
endIsDraggingOverStartElement &&
app.state.bindMode !== "inside" &&
app.state.bindMode !== "fixed" &&
getFeatureFlag("COMPLEX_BINDINGS")
) &&
!!endBindable;
+1 -1
View File
@@ -279,7 +279,7 @@ export type ExcalidrawTextElementWithContainer = {
export type FixedPoint = [number, number];
export type BindMode = "inside" | "orbit" | "skip";
export type BindMode = "fixed" | "orbit" | "skip";
export type FixedPointBinding = {
elementId: ExcalidrawBindableElement["id"];
+2 -2
View File
@@ -72,14 +72,14 @@ describe("binding for simple arrows", () => {
expect(startBinding.fixedPoint[0]).toBeLessThanOrEqual(1);
expect(startBinding.fixedPoint[1]).toBeGreaterThanOrEqual(0);
expect(startBinding.fixedPoint[1]).toBeLessThanOrEqual(1);
expect(startBinding.mode).toBe("inside");
expect(startBinding.mode).toBe("fixed");
const endBinding = arrow.endBinding as FixedPointBinding;
expect(endBinding.fixedPoint[0]).toBeGreaterThanOrEqual(0);
expect(endBinding.fixedPoint[0]).toBeLessThanOrEqual(1);
expect(endBinding.fixedPoint[1]).toBeGreaterThanOrEqual(0);
expect(endBinding.fixedPoint[1]).toBeLessThanOrEqual(1);
expect(endBinding.mode).toBe("inside");
expect(endBinding.mode).toBe("fixed");
// Move the bindable
mouse.downAt(100, 150);
@@ -1940,7 +1940,7 @@ export const actionChangeArrowType = register<keyof typeof ARROW_TYPE>({
bindBindingElement(
newElement,
startElement,
appState.bindMode === "inside" ? "inside" : "orbit",
appState.bindMode === "fixed" ? "fixed" : "orbit",
"start",
app.scene,
);
@@ -1954,7 +1954,7 @@ export const actionChangeArrowType = register<keyof typeof ARROW_TYPE>({
bindBindingElement(
newElement,
endElement,
appState.bindMode === "inside" ? "inside" : "orbit",
appState.bindMode === "fixed" ? "fixed" : "orbit",
"end",
app.scene,
);
+5 -5
View File
@@ -1095,7 +1095,7 @@ class App extends React.Component<AppProps, AppState> {
);
this.setState({
bindMode: "inside",
bindMode: "fixed",
selectedLinearElement: {
...this.state.selectedLinearElement,
initialState: {
@@ -1176,16 +1176,16 @@ class App extends React.Component<AppProps, AppState> {
: null;
const isAlreadyInsideBindingToSameElement =
(otherBinding &&
arrow[otherBinding]?.mode === "inside" &&
arrow[otherBinding]?.mode === "fixed" &&
arrow[otherBinding]?.elementId === hoveredElement?.id) ||
(currentBinding &&
arrow[currentBinding]?.mode === "inside" &&
arrow[currentBinding]?.mode === "fixed" &&
hoveredElement?.id === arrow[currentBinding]?.elementId);
if (
currentBinding &&
otherBinding &&
arrow[currentBinding]?.mode === "inside" &&
arrow[currentBinding]?.mode === "fixed" &&
hoveredElement?.id !== arrow[currentBinding]?.elementId &&
arrow[otherBinding]?.elementId !== arrow[currentBinding]?.elementId
) {
@@ -1217,7 +1217,7 @@ class App extends React.Component<AppProps, AppState> {
}
// Clear the inside binding mode too
if (this.state.bindMode === "inside") {
if (this.state.bindMode === "fixed") {
flushSync(() => {
this.setState({
bindMode: "orbit",
+4 -4
View File
@@ -239,8 +239,8 @@ const repairBinding = <T extends ExcalidrawArrowElement>(
if (binding.elementId) {
return {
elementId: binding.elementId,
mode: binding.mode,
fixedPoint: normalizeFixedPoint(binding.fixedPoint),
mode: (binding.mode as string) === "inside" ? "fixed" : binding.mode,
fixedPoint: normalizeFixedPoint(binding.fixedPoint || [0.5, 0.5]),
} as FixedPointBinding | null;
}
return null;
@@ -269,7 +269,7 @@ const repairBinding = <T extends ExcalidrawArrowElement>(
elementsMap,
);
const mode = isPointInElement(p, boundElement, elementsMap)
? "inside"
? "fixed"
: "orbit";
const safeElement = {
...element,
@@ -289,7 +289,7 @@ const repairBinding = <T extends ExcalidrawArrowElement>(
: null,
};
const focusPoint =
mode === "inside"
mode === "fixed"
? p
: projectFixedPointOntoDiagonal(
safeElement,
@@ -857,7 +857,7 @@ describe("repairing bindings", () => {
endBinding: {
elementId: container.id,
fixedPoint: [0.5, 0.5],
mode: "inside",
mode: "fixed",
},
});