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) { 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;
+22 -25
View File
@@ -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,
+1 -1
View File
@@ -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;
} }
+5 -5
View File
@@ -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 -1
View File
@@ -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"];
+2 -2
View File
@@ -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,
); );
+5 -5
View File
@@ -1095,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: {
@@ -1176,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
) { ) {
@@ -1217,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",
+4 -4
View File
@@ -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,
@@ -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",
}, },
}); });