Compare commits
25 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4060682c57 | |||
| 5852d0d410 | |||
| c1e00c44f5 | |||
| ffcb67b21f | |||
| 46ddd60948 | |||
| 89a9badc27 | |||
| 8b3e149db6 | |||
| a70417f23f | |||
| 1c8e8bb0f3 | |||
| 3a5ef4020d | |||
| 063533aede | |||
| b43260d97b | |||
| 83d3943cd0 | |||
| f39ac4a653 | |||
| 54a9826817 | |||
| d29fd62e41 | |||
| b57f3e0096 | |||
| f12ae80ba1 | |||
| f7b537a8b1 | |||
| 94364af68f | |||
| dfa1ce572b | |||
| b552c60714 | |||
| 216afc3625 | |||
| 802cde3501 | |||
| f5cf81ce42 |
@@ -62,7 +62,7 @@ export const AppMainMenu: React.FC<{
|
|||||||
{isDevEnv() && (
|
{isDevEnv() && (
|
||||||
<MainMenu.Item
|
<MainMenu.Item
|
||||||
icon={eyeIcon}
|
icon={eyeIcon}
|
||||||
onClick={() => {
|
onSelect={() => {
|
||||||
if (window.visualDebug) {
|
if (window.visualDebug) {
|
||||||
delete window.visualDebug;
|
delete window.visualDebug;
|
||||||
saveDebugState({ enabled: false });
|
saveDebugState({ enabled: false });
|
||||||
@@ -77,6 +77,7 @@ export const AppMainMenu: React.FC<{
|
|||||||
</MainMenu.Item>
|
</MainMenu.Item>
|
||||||
)}
|
)}
|
||||||
<MainMenu.Separator />
|
<MainMenu.Separator />
|
||||||
|
<MainMenu.DefaultItems.Preferences />
|
||||||
<MainMenu.DefaultItems.ToggleTheme
|
<MainMenu.DefaultItems.ToggleTheme
|
||||||
allowSystemTheme
|
allowSystemTheme
|
||||||
theme={props.theme}
|
theme={props.theme}
|
||||||
|
|||||||
@@ -33,7 +33,15 @@ export const AppWelcomeScreen: React.FC<{
|
|||||||
return bit;
|
return bit;
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
headingContent = t("welcomeScreen.app.center_heading");
|
headingContent = (
|
||||||
|
<>
|
||||||
|
{t("welcomeScreen.app.center_heading")}
|
||||||
|
<br />
|
||||||
|
{t("welcomeScreen.app.center_heading_line2")}
|
||||||
|
<br />
|
||||||
|
{t("welcomeScreen.app.center_heading_line3")}
|
||||||
|
</>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -50,7 +50,11 @@ exports[`Test MobileMenu > should initialize with welcome screen and hide once u
|
|||||||
<div
|
<div
|
||||||
class="welcome-screen-center__heading welcome-screen-decor excalifont"
|
class="welcome-screen-center__heading welcome-screen-decor excalifont"
|
||||||
>
|
>
|
||||||
All your data is saved locally in your browser.
|
Your drawings are saved in your browser's storage.
|
||||||
|
<br />
|
||||||
|
Browser storage can be cleared unexpectedly.
|
||||||
|
<br />
|
||||||
|
Save your work to a file regularly to avoid losing it.
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="welcome-screen-menu"
|
class="welcome-screen-menu"
|
||||||
|
|||||||
@@ -346,7 +346,7 @@ export const normalizeInputColor = (color: string): string | null => {
|
|||||||
if (tc.isValid()) {
|
if (tc.isValid()) {
|
||||||
// testing for `#` first fixes a bug on Electron (more specfically, an
|
// testing for `#` first fixes a bug on Electron (more specfically, an
|
||||||
// Obsidian popout window), where a hex color without `#` is considered valid
|
// Obsidian popout window), where a hex color without `#` is considered valid
|
||||||
if (tc.getFormat() === "hex" && !color.startsWith("#")) {
|
if (["hex", "hex8"].includes(tc.getFormat()) && !color.startsWith("#")) {
|
||||||
return `#${color}`;
|
return `#${color}`;
|
||||||
}
|
}
|
||||||
return color;
|
return color;
|
||||||
|
|||||||
@@ -106,6 +106,7 @@ export const CLASSES = {
|
|||||||
CONVERT_ELEMENT_TYPE_POPUP: "ConvertElementTypePopup",
|
CONVERT_ELEMENT_TYPE_POPUP: "ConvertElementTypePopup",
|
||||||
SHAPE_ACTIONS_THEME_SCOPE: "shape-actions-theme-scope",
|
SHAPE_ACTIONS_THEME_SCOPE: "shape-actions-theme-scope",
|
||||||
FRAME_NAME: "frame-name",
|
FRAME_NAME: "frame-name",
|
||||||
|
DROPDOWN_MENU_EVENT_WRAPPER: "dropdown-menu-event-wrapper",
|
||||||
};
|
};
|
||||||
|
|
||||||
export const FONT_SIZES = {
|
export const FONT_SIZES = {
|
||||||
@@ -251,6 +252,7 @@ export const STRING_MIME_TYPES = {
|
|||||||
json: "application/json",
|
json: "application/json",
|
||||||
// excalidraw data
|
// excalidraw data
|
||||||
excalidraw: "application/vnd.excalidraw+json",
|
excalidraw: "application/vnd.excalidraw+json",
|
||||||
|
excalidrawClipboard: "application/vnd.excalidraw.clipboard+json",
|
||||||
// LEGACY: fully-qualified library JSON data
|
// LEGACY: fully-qualified library JSON data
|
||||||
excalidrawlib: "application/vnd.excalidrawlib+json",
|
excalidrawlib: "application/vnd.excalidrawlib+json",
|
||||||
// list of excalidraw library item ids
|
// list of excalidraw library item ids
|
||||||
|
|||||||
@@ -0,0 +1,558 @@
|
|||||||
|
import { pointDistance, pointFrom, type GlobalPoint } from "@excalidraw/math";
|
||||||
|
import { invariant } from "@excalidraw/common";
|
||||||
|
|
||||||
|
import type { AppState, NullableGridSize } from "@excalidraw/excalidraw/types";
|
||||||
|
|
||||||
|
import {
|
||||||
|
bindBindingElement,
|
||||||
|
calculateFixedPointForNonElbowArrowBinding,
|
||||||
|
FOCUS_POINT_SIZE,
|
||||||
|
getBindingGap,
|
||||||
|
getGlobalFixedPointForBindableElement,
|
||||||
|
isBindingEnabled,
|
||||||
|
maxBindingDistance_simple,
|
||||||
|
unbindBindingElement,
|
||||||
|
updateBoundPoint,
|
||||||
|
} from "../binding";
|
||||||
|
import {
|
||||||
|
isBindableElement,
|
||||||
|
isBindingElement,
|
||||||
|
isElbowArrow,
|
||||||
|
} from "../typeChecks";
|
||||||
|
import { LinearElementEditor } from "../linearElementEditor";
|
||||||
|
import { getHoveredElementForFocusPoint, hitElementItself } from "../collision";
|
||||||
|
import { moveArrowAboveBindable } from "../zindex";
|
||||||
|
|
||||||
|
import type {
|
||||||
|
ElementsMap,
|
||||||
|
ExcalidrawArrowElement,
|
||||||
|
ExcalidrawBindableElement,
|
||||||
|
NonDeletedSceneElementsMap,
|
||||||
|
PointsPositionUpdates,
|
||||||
|
} from "../types";
|
||||||
|
|
||||||
|
import type { Scene } from "../Scene";
|
||||||
|
|
||||||
|
export const isFocusPointVisible = (
|
||||||
|
focusPoint: GlobalPoint,
|
||||||
|
arrow: ExcalidrawArrowElement,
|
||||||
|
bindableElement: ExcalidrawBindableElement,
|
||||||
|
elementsMap: ElementsMap,
|
||||||
|
appState: {
|
||||||
|
isBindingEnabled: AppState["isBindingEnabled"];
|
||||||
|
zoom: AppState["zoom"];
|
||||||
|
},
|
||||||
|
startOrEnd: "start" | "end",
|
||||||
|
ignoreOverlap = false,
|
||||||
|
): boolean => {
|
||||||
|
// No focus point management for elbow arrows, because elbow arrows
|
||||||
|
// always have their focus point at the arrow point itself
|
||||||
|
if (
|
||||||
|
isElbowArrow(arrow) ||
|
||||||
|
!isBindingEnabled(appState) ||
|
||||||
|
arrow.points.length !== 2
|
||||||
|
) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Avoid showing the focus point indicator if the focus point is essentially
|
||||||
|
// on top of the arrow point it belongs to itself, if not ignoring specifically
|
||||||
|
if (!ignoreOverlap) {
|
||||||
|
const associatedPointIdx =
|
||||||
|
arrow.startBinding?.elementId === bindableElement.id
|
||||||
|
? 0
|
||||||
|
: arrow.points.length - 1;
|
||||||
|
const associatedArrowPoint =
|
||||||
|
LinearElementEditor.getPointAtIndexGlobalCoordinates(
|
||||||
|
arrow,
|
||||||
|
associatedPointIdx,
|
||||||
|
elementsMap,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (
|
||||||
|
pointDistance(focusPoint, associatedArrowPoint) <
|
||||||
|
(FOCUS_POINT_SIZE * 1.5) / appState.zoom.value
|
||||||
|
) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const arrowPoint = LinearElementEditor.getPointAtIndexGlobalCoordinates(
|
||||||
|
arrow,
|
||||||
|
startOrEnd === "end" ? arrow.points.length - 1 : 0,
|
||||||
|
elementsMap,
|
||||||
|
);
|
||||||
|
|
||||||
|
// Check if the focus point is within the element's shape bounds
|
||||||
|
// Endpoint dragging takes precedence
|
||||||
|
return (
|
||||||
|
pointDistance(focusPoint, arrowPoint) >=
|
||||||
|
(FOCUS_POINT_SIZE * 1.5) / appState.zoom.value &&
|
||||||
|
hitElementItself({
|
||||||
|
element: bindableElement,
|
||||||
|
elementsMap,
|
||||||
|
point: focusPoint,
|
||||||
|
threshold: getBindingGap(bindableElement, arrow),
|
||||||
|
overrideShouldTestInside: true,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
// Updates the arrow endpoints in "orbit" configuration
|
||||||
|
const focusPointUpdate = (
|
||||||
|
arrow: ExcalidrawArrowElement,
|
||||||
|
bindableElement: ExcalidrawBindableElement | null,
|
||||||
|
isStartBinding: boolean,
|
||||||
|
elementsMap: NonDeletedSceneElementsMap,
|
||||||
|
scene: Scene,
|
||||||
|
appState: AppState,
|
||||||
|
switchToInsideBinding: boolean,
|
||||||
|
) => {
|
||||||
|
const pointUpdates = new Map();
|
||||||
|
|
||||||
|
const bindingField = isStartBinding ? "startBinding" : "endBinding";
|
||||||
|
const adjacentBindingField = isStartBinding ? "endBinding" : "startBinding";
|
||||||
|
let currentBinding = arrow[bindingField];
|
||||||
|
let adjacentBinding = arrow[adjacentBindingField];
|
||||||
|
|
||||||
|
// Update the dragged focus point related end
|
||||||
|
if (currentBinding && bindableElement) {
|
||||||
|
// Update the targeted bindings
|
||||||
|
const boundToSameElement =
|
||||||
|
bindableElement &&
|
||||||
|
adjacentBinding &&
|
||||||
|
currentBinding.elementId === adjacentBinding.elementId;
|
||||||
|
if (switchToInsideBinding || boundToSameElement) {
|
||||||
|
currentBinding = {
|
||||||
|
...currentBinding,
|
||||||
|
mode: "inside",
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
currentBinding = {
|
||||||
|
...currentBinding,
|
||||||
|
mode: "orbit",
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const pointIndex = isStartBinding ? 0 : arrow.points.length - 1;
|
||||||
|
const newPoint = updateBoundPoint(
|
||||||
|
arrow,
|
||||||
|
bindingField as "startBinding" | "endBinding",
|
||||||
|
currentBinding,
|
||||||
|
bindableElement,
|
||||||
|
elementsMap,
|
||||||
|
true,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (newPoint) {
|
||||||
|
pointUpdates.set(pointIndex, { point: newPoint });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Also update the adjacent end if it has a binding
|
||||||
|
if (adjacentBinding && adjacentBinding.mode === "orbit") {
|
||||||
|
const adjacentBindableElement = elementsMap.get(
|
||||||
|
adjacentBinding.elementId,
|
||||||
|
) as ExcalidrawBindableElement;
|
||||||
|
|
||||||
|
if (
|
||||||
|
adjacentBindableElement &&
|
||||||
|
isBindableElement(adjacentBindableElement) &&
|
||||||
|
isBindingEnabled(appState)
|
||||||
|
) {
|
||||||
|
// Same shape bound on both ends
|
||||||
|
const boundToSameElementAfterUpdate =
|
||||||
|
bindableElement && adjacentBinding.elementId === bindableElement.id;
|
||||||
|
if (switchToInsideBinding || boundToSameElementAfterUpdate) {
|
||||||
|
adjacentBinding = {
|
||||||
|
...adjacentBinding,
|
||||||
|
mode: "inside",
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
adjacentBinding = {
|
||||||
|
...adjacentBinding,
|
||||||
|
mode: "orbit",
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const adjacentPointIndex = isStartBinding ? arrow.points.length - 1 : 0;
|
||||||
|
const adjacentNewPoint = updateBoundPoint(
|
||||||
|
arrow,
|
||||||
|
adjacentBindingField,
|
||||||
|
adjacentBinding,
|
||||||
|
adjacentBindableElement,
|
||||||
|
elementsMap,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (adjacentNewPoint) {
|
||||||
|
pointUpdates.set(adjacentPointIndex, {
|
||||||
|
point: adjacentNewPoint,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pointUpdates.size > 0) {
|
||||||
|
LinearElementEditor.movePoints(arrow, scene, pointUpdates, {
|
||||||
|
[bindingField]: currentBinding,
|
||||||
|
[adjacentBindingField]: adjacentBinding,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const handleFocusPointDrag = (
|
||||||
|
linearElementEditor: LinearElementEditor,
|
||||||
|
elementsMap: NonDeletedSceneElementsMap,
|
||||||
|
pointerCoords: { x: number; y: number },
|
||||||
|
scene: Scene,
|
||||||
|
appState: AppState,
|
||||||
|
gridSize: NullableGridSize,
|
||||||
|
switchToInsideBinding: boolean,
|
||||||
|
) => {
|
||||||
|
const arrow = LinearElementEditor.getElement(
|
||||||
|
linearElementEditor.elementId,
|
||||||
|
elementsMap,
|
||||||
|
) as any;
|
||||||
|
|
||||||
|
// Sanity checks
|
||||||
|
if (
|
||||||
|
!arrow ||
|
||||||
|
!isBindingElement(arrow) ||
|
||||||
|
isElbowArrow(arrow) ||
|
||||||
|
!linearElementEditor.hoveredFocusPointBinding ||
|
||||||
|
!linearElementEditor.draggedFocusPointBinding
|
||||||
|
) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const isStartBinding =
|
||||||
|
linearElementEditor.draggedFocusPointBinding === "start";
|
||||||
|
const binding = isStartBinding ? arrow.startBinding : arrow.endBinding;
|
||||||
|
const { x: offsetX, y: offsetY } = linearElementEditor.pointerOffset;
|
||||||
|
const point = pointFrom<GlobalPoint>(
|
||||||
|
pointerCoords.x - offsetX,
|
||||||
|
pointerCoords.y - offsetY,
|
||||||
|
);
|
||||||
|
const bindingField = isStartBinding ? "startBinding" : "endBinding";
|
||||||
|
const hit = getHoveredElementForFocusPoint(
|
||||||
|
point,
|
||||||
|
arrow,
|
||||||
|
scene.getNonDeletedElements(),
|
||||||
|
elementsMap,
|
||||||
|
maxBindingDistance_simple(appState.zoom),
|
||||||
|
);
|
||||||
|
|
||||||
|
// Hovering a bindable element
|
||||||
|
if (hit && isBindingEnabled(appState)) {
|
||||||
|
// Break existing binding if bound to another shape or if binding is disabled
|
||||||
|
if (arrow[bindingField] && hit.id !== binding?.elementId) {
|
||||||
|
unbindBindingElement(
|
||||||
|
arrow,
|
||||||
|
linearElementEditor.draggedFocusPointBinding,
|
||||||
|
scene,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle binding mode switch
|
||||||
|
const newMode =
|
||||||
|
switchToInsideBinding && arrow[bindingField]?.mode === "orbit"
|
||||||
|
? "inside"
|
||||||
|
: !switchToInsideBinding && arrow[bindingField]?.mode === "inside"
|
||||||
|
? "orbit"
|
||||||
|
: null;
|
||||||
|
|
||||||
|
// If no existing binding, create it
|
||||||
|
if (!arrow[bindingField] || newMode) {
|
||||||
|
// Create a new binding if none exists
|
||||||
|
bindBindingElement(
|
||||||
|
arrow,
|
||||||
|
hit,
|
||||||
|
newMode || "orbit",
|
||||||
|
linearElementEditor.draggedFocusPointBinding,
|
||||||
|
scene,
|
||||||
|
point,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update the binding's fixed point
|
||||||
|
scene.mutateElement(arrow, {
|
||||||
|
[bindingField]: {
|
||||||
|
...arrow[bindingField],
|
||||||
|
elementId: hit.id,
|
||||||
|
mode: newMode || arrow[bindingField]?.mode || "orbit",
|
||||||
|
...calculateFixedPointForNonElbowArrowBinding(
|
||||||
|
arrow,
|
||||||
|
hit,
|
||||||
|
linearElementEditor.draggedFocusPointBinding,
|
||||||
|
elementsMap,
|
||||||
|
point,
|
||||||
|
),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// Not hovering any bindable element, move the arrow endpoint
|
||||||
|
const pointUpdates: PointsPositionUpdates = new Map();
|
||||||
|
const pointIndex = isStartBinding ? 0 : arrow.points.length - 1;
|
||||||
|
pointUpdates.set(pointIndex, {
|
||||||
|
point: LinearElementEditor.createPointAt(
|
||||||
|
arrow,
|
||||||
|
elementsMap,
|
||||||
|
point[0],
|
||||||
|
point[1],
|
||||||
|
gridSize,
|
||||||
|
),
|
||||||
|
});
|
||||||
|
LinearElementEditor.movePoints(arrow, scene, pointUpdates);
|
||||||
|
if (arrow[bindingField]) {
|
||||||
|
unbindBindingElement(arrow, isStartBinding ? "start" : "end", scene);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update the arrow endpoints
|
||||||
|
focusPointUpdate(
|
||||||
|
arrow,
|
||||||
|
hit,
|
||||||
|
isStartBinding,
|
||||||
|
elementsMap,
|
||||||
|
scene,
|
||||||
|
appState,
|
||||||
|
switchToInsideBinding,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (hit && isBindingEnabled(appState)) {
|
||||||
|
moveArrowAboveBindable(
|
||||||
|
point,
|
||||||
|
arrow,
|
||||||
|
scene.getElementsIncludingDeleted(),
|
||||||
|
elementsMap,
|
||||||
|
scene,
|
||||||
|
hit,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const handleFocusPointPointerDown = (
|
||||||
|
arrow: ExcalidrawArrowElement,
|
||||||
|
pointerDownState: { origin: { x: number; y: number } },
|
||||||
|
elementsMap: NonDeletedSceneElementsMap,
|
||||||
|
appState: AppState,
|
||||||
|
): {
|
||||||
|
hitFocusPoint: "start" | "end" | null;
|
||||||
|
pointerOffset: { x: number; y: number };
|
||||||
|
} => {
|
||||||
|
const pointerPos = pointFrom(
|
||||||
|
pointerDownState.origin.x,
|
||||||
|
pointerDownState.origin.y,
|
||||||
|
);
|
||||||
|
const hitThreshold = (FOCUS_POINT_SIZE * 1.5) / appState.zoom.value;
|
||||||
|
|
||||||
|
// Check start binding focus point
|
||||||
|
if (arrow.startBinding?.elementId) {
|
||||||
|
const bindableElement = elementsMap.get(arrow.startBinding.elementId);
|
||||||
|
if (
|
||||||
|
bindableElement &&
|
||||||
|
isBindableElement(bindableElement) &&
|
||||||
|
!bindableElement.isDeleted
|
||||||
|
) {
|
||||||
|
const focusPoint = getGlobalFixedPointForBindableElement(
|
||||||
|
arrow.startBinding.fixedPoint,
|
||||||
|
bindableElement,
|
||||||
|
elementsMap,
|
||||||
|
);
|
||||||
|
if (
|
||||||
|
isFocusPointVisible(
|
||||||
|
focusPoint,
|
||||||
|
arrow,
|
||||||
|
bindableElement,
|
||||||
|
elementsMap,
|
||||||
|
appState,
|
||||||
|
"start",
|
||||||
|
) &&
|
||||||
|
pointDistance(pointerPos, focusPoint) <= hitThreshold
|
||||||
|
) {
|
||||||
|
return {
|
||||||
|
hitFocusPoint: "start",
|
||||||
|
pointerOffset: {
|
||||||
|
x: pointerPos[0] - focusPoint[0],
|
||||||
|
y: pointerPos[1] - focusPoint[1],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check end binding focus point (only if start not already hit)
|
||||||
|
if (arrow.endBinding?.elementId) {
|
||||||
|
const bindableElement = elementsMap.get(arrow.endBinding.elementId);
|
||||||
|
if (
|
||||||
|
bindableElement &&
|
||||||
|
isBindableElement(bindableElement) &&
|
||||||
|
!bindableElement.isDeleted
|
||||||
|
) {
|
||||||
|
const focusPoint = getGlobalFixedPointForBindableElement(
|
||||||
|
arrow.endBinding.fixedPoint,
|
||||||
|
bindableElement,
|
||||||
|
elementsMap,
|
||||||
|
);
|
||||||
|
if (
|
||||||
|
isFocusPointVisible(
|
||||||
|
focusPoint,
|
||||||
|
arrow,
|
||||||
|
bindableElement,
|
||||||
|
elementsMap,
|
||||||
|
appState,
|
||||||
|
"end",
|
||||||
|
) &&
|
||||||
|
pointDistance(pointerPos, focusPoint) <= hitThreshold
|
||||||
|
) {
|
||||||
|
return {
|
||||||
|
hitFocusPoint: "end",
|
||||||
|
pointerOffset: {
|
||||||
|
x: pointerPos[0] - focusPoint[0],
|
||||||
|
y: pointerPos[1] - focusPoint[1],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
hitFocusPoint: null,
|
||||||
|
pointerOffset: { x: 0, y: 0 },
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export const handleFocusPointPointerUp = (
|
||||||
|
linearElementEditor: LinearElementEditor,
|
||||||
|
scene: Scene,
|
||||||
|
) => {
|
||||||
|
invariant(
|
||||||
|
linearElementEditor.draggedFocusPointBinding,
|
||||||
|
"Must have a dragged focus point at pointer release",
|
||||||
|
);
|
||||||
|
|
||||||
|
const arrow = LinearElementEditor.getElement<ExcalidrawArrowElement>(
|
||||||
|
linearElementEditor.elementId,
|
||||||
|
scene.getNonDeletedElementsMap(),
|
||||||
|
);
|
||||||
|
invariant(arrow, "Arrow must be in the scene");
|
||||||
|
|
||||||
|
// Clean up
|
||||||
|
const bindingKey =
|
||||||
|
linearElementEditor.draggedFocusPointBinding === "start"
|
||||||
|
? "startBinding"
|
||||||
|
: "endBinding";
|
||||||
|
const otherBindingKey =
|
||||||
|
linearElementEditor.draggedFocusPointBinding === "start"
|
||||||
|
? "endBinding"
|
||||||
|
: "startBinding";
|
||||||
|
const boundElementId = arrow[bindingKey]?.elementId;
|
||||||
|
const otherBoundElementId = arrow[otherBindingKey]?.elementId;
|
||||||
|
const oldBoundElement =
|
||||||
|
boundElementId &&
|
||||||
|
scene
|
||||||
|
.getNonDeletedElements()
|
||||||
|
.find(
|
||||||
|
(element) =>
|
||||||
|
element.id !== boundElementId &&
|
||||||
|
element.id !== otherBoundElementId &&
|
||||||
|
isBindableElement(element) &&
|
||||||
|
element.boundElements?.find(({ id }) => id === arrow.id),
|
||||||
|
);
|
||||||
|
if (oldBoundElement) {
|
||||||
|
scene.mutateElement(oldBoundElement, {
|
||||||
|
boundElements: oldBoundElement.boundElements?.filter(
|
||||||
|
({ id }) => id !== arrow.id,
|
||||||
|
),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Record the new bound element
|
||||||
|
const boundElement =
|
||||||
|
boundElementId && scene.getNonDeletedElementsMap().get(boundElementId);
|
||||||
|
if (boundElement) {
|
||||||
|
scene.mutateElement(boundElement, {
|
||||||
|
boundElements: [
|
||||||
|
...(boundElement.boundElements || [])?.filter(
|
||||||
|
({ id }) => id !== arrow.id,
|
||||||
|
),
|
||||||
|
{
|
||||||
|
id: arrow.id,
|
||||||
|
type: "arrow",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const handleFocusPointHover = (
|
||||||
|
arrow: ExcalidrawArrowElement,
|
||||||
|
scenePointerX: number,
|
||||||
|
scenePointerY: number,
|
||||||
|
scene: Scene,
|
||||||
|
appState: AppState,
|
||||||
|
): "start" | "end" | null => {
|
||||||
|
const elementsMap = scene.getNonDeletedElementsMap();
|
||||||
|
const pointerPos = pointFrom(scenePointerX, scenePointerY);
|
||||||
|
const hitThreshold = (FOCUS_POINT_SIZE * 1.5) / appState.zoom.value;
|
||||||
|
|
||||||
|
// Check start binding focus point
|
||||||
|
if (arrow.startBinding?.elementId) {
|
||||||
|
const bindableElement = elementsMap.get(arrow.startBinding.elementId);
|
||||||
|
if (
|
||||||
|
bindableElement &&
|
||||||
|
isBindableElement(bindableElement) &&
|
||||||
|
!bindableElement.isDeleted
|
||||||
|
) {
|
||||||
|
const focusPoint = getGlobalFixedPointForBindableElement(
|
||||||
|
arrow.startBinding.fixedPoint,
|
||||||
|
bindableElement,
|
||||||
|
elementsMap,
|
||||||
|
);
|
||||||
|
if (
|
||||||
|
isFocusPointVisible(
|
||||||
|
focusPoint,
|
||||||
|
arrow,
|
||||||
|
bindableElement,
|
||||||
|
elementsMap,
|
||||||
|
appState,
|
||||||
|
"start",
|
||||||
|
) &&
|
||||||
|
pointDistance(pointerPos, focusPoint) <= hitThreshold
|
||||||
|
) {
|
||||||
|
return "start";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check end binding focus point (only if start not already hovered)
|
||||||
|
if (arrow.endBinding?.elementId) {
|
||||||
|
const bindableElement = elementsMap.get(arrow.endBinding.elementId);
|
||||||
|
if (
|
||||||
|
bindableElement &&
|
||||||
|
isBindableElement(bindableElement) &&
|
||||||
|
!bindableElement.isDeleted
|
||||||
|
) {
|
||||||
|
const focusPoint = getGlobalFixedPointForBindableElement(
|
||||||
|
arrow.endBinding.fixedPoint,
|
||||||
|
bindableElement,
|
||||||
|
elementsMap,
|
||||||
|
);
|
||||||
|
if (
|
||||||
|
isFocusPointVisible(
|
||||||
|
focusPoint,
|
||||||
|
arrow,
|
||||||
|
bindableElement,
|
||||||
|
elementsMap,
|
||||||
|
appState,
|
||||||
|
"end",
|
||||||
|
) &&
|
||||||
|
pointDistance(pointerPos, focusPoint) <= hitThreshold
|
||||||
|
) {
|
||||||
|
return "end";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
};
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
import type { App } from "@excalidraw/excalidraw/types";
|
||||||
|
|
||||||
|
import { LinearElementEditor } from "../linearElementEditor";
|
||||||
|
|
||||||
|
import { handleFocusPointDrag } from "./focus";
|
||||||
|
|
||||||
|
export const maybeHandleArrowPointlikeDrag = ({
|
||||||
|
app,
|
||||||
|
event,
|
||||||
|
}: {
|
||||||
|
app: App;
|
||||||
|
event: KeyboardEvent | React.KeyboardEvent<Element> | PointerEvent;
|
||||||
|
}): boolean => {
|
||||||
|
const appState = app.state;
|
||||||
|
if (appState.selectedLinearElement && app.lastPointerMoveCoords) {
|
||||||
|
// Update focus point status if the binding mode is changing
|
||||||
|
if (appState.selectedLinearElement.draggedFocusPointBinding) {
|
||||||
|
handleFocusPointDrag(
|
||||||
|
appState.selectedLinearElement,
|
||||||
|
app.scene.getNonDeletedElementsMap(),
|
||||||
|
app.lastPointerMoveCoords,
|
||||||
|
app.scene,
|
||||||
|
appState,
|
||||||
|
app.getEffectiveGridSize(),
|
||||||
|
event.altKey,
|
||||||
|
);
|
||||||
|
return true;
|
||||||
|
} else if (
|
||||||
|
appState.selectedLinearElement.hoverPointIndex !== null &&
|
||||||
|
app.lastPointerMoveEvent &&
|
||||||
|
appState.selectedLinearElement.initialState.lastClickedPoint >= 0 &&
|
||||||
|
appState.selectedLinearElement.isDragging
|
||||||
|
) {
|
||||||
|
LinearElementEditor.handlePointDragging(
|
||||||
|
app.lastPointerMoveEvent,
|
||||||
|
app,
|
||||||
|
app.lastPointerMoveCoords.x,
|
||||||
|
app.lastPointerMoveCoords.y,
|
||||||
|
appState.selectedLinearElement,
|
||||||
|
);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
};
|
||||||
+303
-186
@@ -27,14 +27,11 @@ import type { AppState } from "@excalidraw/excalidraw/types";
|
|||||||
import type { MapEntry, Mutable } from "@excalidraw/common/utility-types";
|
import type { MapEntry, Mutable } from "@excalidraw/common/utility-types";
|
||||||
import type { Bounds } from "@excalidraw/common";
|
import type { Bounds } from "@excalidraw/common";
|
||||||
|
|
||||||
import {
|
import { getCenterForBounds } from "./bounds";
|
||||||
doBoundsIntersect,
|
|
||||||
getCenterForBounds,
|
|
||||||
getElementBounds,
|
|
||||||
} from "./bounds";
|
|
||||||
import {
|
import {
|
||||||
getAllHoveredElementAtPoint,
|
getAllHoveredElementAtPoint,
|
||||||
getHoveredElementForBinding,
|
getHoveredElementForBinding,
|
||||||
|
hitElementItself,
|
||||||
intersectElementWithLineSegment,
|
intersectElementWithLineSegment,
|
||||||
isBindableElementInsideOtherBindable,
|
isBindableElementInsideOtherBindable,
|
||||||
isPointInElement,
|
isPointInElement,
|
||||||
@@ -113,8 +110,10 @@ export type BindingStrategy =
|
|||||||
*
|
*
|
||||||
* IMPORTANT: currently must be > 0 (this also applies to the computed gap)
|
* IMPORTANT: currently must be > 0 (this also applies to the computed gap)
|
||||||
*/
|
*/
|
||||||
export const BASE_BINDING_GAP = 10;
|
export const BASE_BINDING_GAP = 5;
|
||||||
export const BASE_BINDING_GAP_ELBOW = 5;
|
export const BASE_BINDING_GAP_ELBOW = 5;
|
||||||
|
export const BASE_ARROW_MIN_LENGTH = 10;
|
||||||
|
export const FOCUS_POINT_SIZE = 10 / 1.5;
|
||||||
|
|
||||||
export const getBindingGap = (
|
export const getBindingGap = (
|
||||||
bindTarget: ExcalidrawBindableElement,
|
bindTarget: ExcalidrawBindableElement,
|
||||||
@@ -144,7 +143,9 @@ export const shouldEnableBindingForPointerEvent = (
|
|||||||
return !event[KEYS.CTRL_OR_CMD];
|
return !event[KEYS.CTRL_OR_CMD];
|
||||||
};
|
};
|
||||||
|
|
||||||
export const isBindingEnabled = (appState: AppState): boolean => {
|
export const isBindingEnabled = (appState: {
|
||||||
|
isBindingEnabled: AppState["isBindingEnabled"];
|
||||||
|
}): boolean => {
|
||||||
return appState.isBindingEnabled;
|
return appState.isBindingEnabled;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -258,7 +259,7 @@ const bindingStrategyForElbowArrowEndpointDragging = (
|
|||||||
globalPoint,
|
globalPoint,
|
||||||
elements,
|
elements,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
(element) => maxBindingDistance_simple(zoom),
|
maxBindingDistance_simple(zoom),
|
||||||
);
|
);
|
||||||
|
|
||||||
const current = hit
|
const current = hit
|
||||||
@@ -683,7 +684,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
|
|||||||
globalPoint,
|
globalPoint,
|
||||||
elements,
|
elements,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
(e) => maxBindingDistance_simple(appState.zoom),
|
maxBindingDistance_simple(appState.zoom),
|
||||||
);
|
);
|
||||||
const pointInElement =
|
const pointInElement =
|
||||||
hit &&
|
hit &&
|
||||||
@@ -710,7 +711,13 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
|
|||||||
const otherFocusPointIsInElement =
|
const otherFocusPointIsInElement =
|
||||||
otherBindableElement &&
|
otherBindableElement &&
|
||||||
otherFocusPoint &&
|
otherFocusPoint &&
|
||||||
isPointInElement(otherFocusPoint, otherBindableElement, elementsMap);
|
hitElementItself({
|
||||||
|
point: otherFocusPoint,
|
||||||
|
element: otherBindableElement,
|
||||||
|
elementsMap,
|
||||||
|
threshold: 0,
|
||||||
|
overrideShouldTestInside: true,
|
||||||
|
});
|
||||||
|
|
||||||
// Handle outside-outside binding to the same element
|
// Handle outside-outside binding to the same element
|
||||||
if (otherBinding && otherBinding.elementId === hit?.id) {
|
if (otherBinding && otherBinding.elementId === hit?.id) {
|
||||||
@@ -790,6 +797,7 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
|
|||||||
hit,
|
hit,
|
||||||
startDragged ? "start" : "end",
|
startDragged ? "start" : "end",
|
||||||
elementsMap,
|
elementsMap,
|
||||||
|
appState.zoom,
|
||||||
) || globalPoint,
|
) || globalPoint,
|
||||||
}
|
}
|
||||||
: { mode: null };
|
: { mode: null };
|
||||||
@@ -799,11 +807,24 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
|
|||||||
startDragged ? -1 : 0,
|
startDragged ? -1 : 0,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
);
|
);
|
||||||
|
const pointIsCloseToOtherElement =
|
||||||
const other: BindingStrategy =
|
otherFocusPoint &&
|
||||||
otherBindableElement &&
|
otherBindableElement &&
|
||||||
!otherFocusPointIsInElement &&
|
hitElementItself({
|
||||||
appState.selectedLinearElement?.initialState.altFocusPoint
|
point: globalPoint,
|
||||||
|
element: otherBindableElement,
|
||||||
|
elementsMap,
|
||||||
|
threshold: maxBindingDistance_simple(appState.zoom),
|
||||||
|
overrideShouldTestInside: true,
|
||||||
|
});
|
||||||
|
const otherNeverOverride = opts?.newArrow
|
||||||
|
? appState.selectedLinearElement?.initialState.arrowStartIsInside
|
||||||
|
: otherBinding?.mode === "inside";
|
||||||
|
const other: BindingStrategy = !otherNeverOverride
|
||||||
|
? otherBindableElement &&
|
||||||
|
!otherFocusPointIsInElement &&
|
||||||
|
!pointIsCloseToOtherElement &&
|
||||||
|
appState.selectedLinearElement?.initialState.altFocusPoint
|
||||||
? {
|
? {
|
||||||
mode: "orbit",
|
mode: "orbit",
|
||||||
element: otherBindableElement,
|
element: otherBindableElement,
|
||||||
@@ -820,9 +841,11 @@ const getBindingStrategyForDraggingBindingElementEndpoints_simple = (
|
|||||||
otherBindableElement,
|
otherBindableElement,
|
||||||
startDragged ? "end" : "start",
|
startDragged ? "end" : "start",
|
||||||
elementsMap,
|
elementsMap,
|
||||||
|
appState.zoom,
|
||||||
) || otherEndpoint,
|
) || otherEndpoint,
|
||||||
}
|
}
|
||||||
: { mode: undefined };
|
: { mode: undefined }
|
||||||
|
: { mode: undefined };
|
||||||
|
|
||||||
return {
|
return {
|
||||||
start: startDragged ? current : other,
|
start: startDragged ? current : other,
|
||||||
@@ -1086,7 +1109,7 @@ export const updateBoundElements = (
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
boundElementsVisitor(elementsMap, changedElement, (element) => {
|
const visitor = (element: ExcalidrawElement | undefined) => {
|
||||||
if (!isArrowElement(element) || element.isDeleted) {
|
if (!isArrowElement(element) || element.isDeleted) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1158,7 +1181,71 @@ export const updateBoundElements = (
|
|||||||
if (boundText && !boundText.isDeleted) {
|
if (boundText && !boundText.isDeleted) {
|
||||||
handleBindTextResize(element, scene, false);
|
handleBindTextResize(element, scene, false);
|
||||||
}
|
}
|
||||||
});
|
};
|
||||||
|
|
||||||
|
boundElementsVisitor(elementsMap, changedElement, visitor);
|
||||||
|
};
|
||||||
|
|
||||||
|
const updateArrowBindings = (
|
||||||
|
latestElement: ExcalidrawArrowElement,
|
||||||
|
startOrEnd: "startBinding" | "endBinding",
|
||||||
|
elementsMap: NonDeletedSceneElementsMap,
|
||||||
|
scene: Scene,
|
||||||
|
appState: AppState,
|
||||||
|
) => {
|
||||||
|
invariant(
|
||||||
|
!isElbowArrow(latestElement),
|
||||||
|
"Elbow arrows not supported for indirect updates",
|
||||||
|
);
|
||||||
|
|
||||||
|
const binding = latestElement[startOrEnd];
|
||||||
|
const bindableElement =
|
||||||
|
binding &&
|
||||||
|
(elementsMap.get(binding.elementId) as ExcalidrawBindableElement);
|
||||||
|
const point = LinearElementEditor.getPointAtIndexGlobalCoordinates(
|
||||||
|
latestElement,
|
||||||
|
startOrEnd === "startBinding" ? 0 : -1,
|
||||||
|
elementsMap,
|
||||||
|
);
|
||||||
|
const hit =
|
||||||
|
bindableElement &&
|
||||||
|
hitElementItself({
|
||||||
|
element: bindableElement,
|
||||||
|
point,
|
||||||
|
elementsMap,
|
||||||
|
threshold: maxBindingDistance_simple(appState.zoom),
|
||||||
|
});
|
||||||
|
const strategyName = startOrEnd === "startBinding" ? "start" : "end";
|
||||||
|
unbindBindingElement(latestElement, strategyName, scene);
|
||||||
|
if (hit) {
|
||||||
|
const pointIdx =
|
||||||
|
startOrEnd === "startBinding" ? 0 : latestElement.points.length - 1;
|
||||||
|
const localPoint = latestElement.points[pointIdx];
|
||||||
|
const strategy =
|
||||||
|
getBindingStrategyForDraggingBindingElementEndpoints_simple(
|
||||||
|
latestElement,
|
||||||
|
new Map([[pointIdx, { point: localPoint }]]),
|
||||||
|
point[0],
|
||||||
|
point[1],
|
||||||
|
elementsMap,
|
||||||
|
scene.getNonDeletedElements(),
|
||||||
|
appState,
|
||||||
|
);
|
||||||
|
if (
|
||||||
|
strategy[strategyName] &&
|
||||||
|
strategy[strategyName].element?.id === bindableElement.id &&
|
||||||
|
strategy[strategyName].mode
|
||||||
|
) {
|
||||||
|
bindBindingElement(
|
||||||
|
latestElement,
|
||||||
|
bindableElement,
|
||||||
|
strategy[strategyName].mode,
|
||||||
|
strategyName,
|
||||||
|
scene,
|
||||||
|
strategy[strategyName].focusPoint,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export const updateBindings = (
|
export const updateBindings = (
|
||||||
@@ -1171,14 +1258,27 @@ export const updateBindings = (
|
|||||||
},
|
},
|
||||||
) => {
|
) => {
|
||||||
if (isArrowElement(latestElement)) {
|
if (isArrowElement(latestElement)) {
|
||||||
bindOrUnbindBindingElement(
|
const elementsMap = scene.getNonDeletedElementsMap();
|
||||||
latestElement,
|
|
||||||
new Map(),
|
if (latestElement.startBinding) {
|
||||||
Infinity,
|
updateArrowBindings(
|
||||||
Infinity,
|
latestElement,
|
||||||
scene,
|
"startBinding",
|
||||||
appState,
|
elementsMap,
|
||||||
);
|
scene,
|
||||||
|
appState,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (latestElement.endBinding) {
|
||||||
|
updateArrowBindings(
|
||||||
|
latestElement,
|
||||||
|
"endBinding",
|
||||||
|
elementsMap,
|
||||||
|
scene,
|
||||||
|
appState,
|
||||||
|
);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
updateBoundElements(latestElement, scene, {
|
updateBoundElements(latestElement, scene, {
|
||||||
...options,
|
...options,
|
||||||
@@ -1292,14 +1392,16 @@ export const bindPointToSnapToElementOutline = (
|
|||||||
headingForPointFromElement(bindableElement, aabb, point),
|
headingForPointFromElement(bindableElement, aabb, point),
|
||||||
);
|
);
|
||||||
const snapPoint = snapToMid(
|
const snapPoint = snapToMid(
|
||||||
arrowElement,
|
|
||||||
bindableElement,
|
bindableElement,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
edgePoint,
|
edgePoint,
|
||||||
|
0.05,
|
||||||
|
arrowElement,
|
||||||
);
|
);
|
||||||
|
const resolved = snapPoint || point;
|
||||||
const otherPoint = pointFrom<GlobalPoint>(
|
const otherPoint = pointFrom<GlobalPoint>(
|
||||||
isHorizontal ? bindableCenter[0] : snapPoint[0],
|
isHorizontal ? bindableCenter[0] : resolved[0],
|
||||||
!isHorizontal ? bindableCenter[1] : snapPoint[1],
|
!isHorizontal ? bindableCenter[1] : resolved[1],
|
||||||
);
|
);
|
||||||
const intersector =
|
const intersector =
|
||||||
customIntersector ??
|
customIntersector ??
|
||||||
@@ -1307,7 +1409,7 @@ export const bindPointToSnapToElementOutline = (
|
|||||||
otherPoint,
|
otherPoint,
|
||||||
pointFromVector(
|
pointFromVector(
|
||||||
vectorScale(
|
vectorScale(
|
||||||
vectorNormalize(vectorFromPoint(snapPoint, otherPoint)),
|
vectorNormalize(vectorFromPoint(resolved, otherPoint)),
|
||||||
Math.max(bindableElement.width, bindableElement.height) * 2,
|
Math.max(bindableElement.width, bindableElement.height) * 2,
|
||||||
),
|
),
|
||||||
otherPoint,
|
otherPoint,
|
||||||
@@ -1322,14 +1424,14 @@ export const bindPointToSnapToElementOutline = (
|
|||||||
|
|
||||||
if (!intersection) {
|
if (!intersection) {
|
||||||
const anotherPoint = pointFrom<GlobalPoint>(
|
const anotherPoint = pointFrom<GlobalPoint>(
|
||||||
!isHorizontal ? bindableCenter[0] : snapPoint[0],
|
!isHorizontal ? bindableCenter[0] : resolved[0],
|
||||||
isHorizontal ? bindableCenter[1] : snapPoint[1],
|
isHorizontal ? bindableCenter[1] : resolved[1],
|
||||||
);
|
);
|
||||||
const anotherIntersector = lineSegment(
|
const anotherIntersector = lineSegment(
|
||||||
anotherPoint,
|
anotherPoint,
|
||||||
pointFromVector(
|
pointFromVector(
|
||||||
vectorScale(
|
vectorScale(
|
||||||
vectorNormalize(vectorFromPoint(snapPoint, anotherPoint)),
|
vectorNormalize(vectorFromPoint(resolved, anotherPoint)),
|
||||||
Math.max(bindableElement.width, bindableElement.height) * 2,
|
Math.max(bindableElement.width, bindableElement.height) * 2,
|
||||||
),
|
),
|
||||||
anotherPoint,
|
anotherPoint,
|
||||||
@@ -1476,18 +1578,18 @@ export const avoidRectangularCorner = (
|
|||||||
return p;
|
return p;
|
||||||
};
|
};
|
||||||
|
|
||||||
const snapToMid = (
|
export const snapToMid = (
|
||||||
arrowElement: ExcalidrawArrowElement,
|
|
||||||
bindTarget: ExcalidrawBindableElement,
|
bindTarget: ExcalidrawBindableElement,
|
||||||
elementsMap: ElementsMap,
|
elementsMap: ElementsMap,
|
||||||
p: GlobalPoint,
|
p: GlobalPoint,
|
||||||
tolerance: number = 0.05,
|
tolerance: number = 0.05,
|
||||||
): GlobalPoint => {
|
arrowElement?: ExcalidrawArrowElement,
|
||||||
|
): GlobalPoint | undefined => {
|
||||||
const { x, y, width, height, angle } = bindTarget;
|
const { x, y, width, height, angle } = bindTarget;
|
||||||
const center = elementCenterPoint(bindTarget, elementsMap, -0.1, -0.1);
|
const center = elementCenterPoint(bindTarget, elementsMap, -0.1, -0.1);
|
||||||
const nonRotated = pointRotateRads(p, center, -angle as Radians);
|
const nonRotated = pointRotateRads(p, center, -angle as Radians);
|
||||||
|
|
||||||
const bindingGap = getBindingGap(bindTarget, arrowElement);
|
const bindingGap = arrowElement ? getBindingGap(bindTarget, arrowElement) : 0;
|
||||||
|
|
||||||
// snap-to-center point is adaptive to element size, but we don't want to go
|
// snap-to-center point is adaptive to element size, but we don't want to go
|
||||||
// above and below certain px distance
|
// above and below certain px distance
|
||||||
@@ -1496,7 +1598,7 @@ const snapToMid = (
|
|||||||
|
|
||||||
// Too close to the center makes it hard to resolve direction precisely
|
// Too close to the center makes it hard to resolve direction precisely
|
||||||
if (pointDistance(center, nonRotated) < bindingGap) {
|
if (pointDistance(center, nonRotated) < bindingGap) {
|
||||||
return p;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
@@ -1505,8 +1607,8 @@ const snapToMid = (
|
|||||||
nonRotated[1] < center[1] + verticalThreshold
|
nonRotated[1] < center[1] + verticalThreshold
|
||||||
) {
|
) {
|
||||||
// LEFT
|
// LEFT
|
||||||
return pointRotateRads<GlobalPoint>(
|
return pointRotateRads(
|
||||||
pointFrom(x - bindingGap, center[1]),
|
pointFrom<GlobalPoint>(x - bindingGap, center[1]),
|
||||||
center,
|
center,
|
||||||
angle,
|
angle,
|
||||||
);
|
);
|
||||||
@@ -1516,7 +1618,11 @@ const snapToMid = (
|
|||||||
nonRotated[0] < center[0] + horizontalThreshold
|
nonRotated[0] < center[0] + horizontalThreshold
|
||||||
) {
|
) {
|
||||||
// TOP
|
// TOP
|
||||||
return pointRotateRads(pointFrom(center[0], y - bindingGap), center, angle);
|
return pointRotateRads(
|
||||||
|
pointFrom<GlobalPoint>(center[0], y - bindingGap),
|
||||||
|
center,
|
||||||
|
angle,
|
||||||
|
);
|
||||||
} else if (
|
} else if (
|
||||||
nonRotated[0] >= x + width / 2 &&
|
nonRotated[0] >= x + width / 2 &&
|
||||||
nonRotated[1] > center[1] - verticalThreshold &&
|
nonRotated[1] > center[1] - verticalThreshold &&
|
||||||
@@ -1524,7 +1630,7 @@ const snapToMid = (
|
|||||||
) {
|
) {
|
||||||
// RIGHT
|
// RIGHT
|
||||||
return pointRotateRads(
|
return pointRotateRads(
|
||||||
pointFrom(x + width + bindingGap, center[1]),
|
pointFrom<GlobalPoint>(x + width + bindingGap, center[1]),
|
||||||
center,
|
center,
|
||||||
angle,
|
angle,
|
||||||
);
|
);
|
||||||
@@ -1535,7 +1641,7 @@ const snapToMid = (
|
|||||||
) {
|
) {
|
||||||
// DOWN
|
// DOWN
|
||||||
return pointRotateRads(
|
return pointRotateRads(
|
||||||
pointFrom(center[0], y + height + bindingGap),
|
pointFrom<GlobalPoint>(center[0], y + height + bindingGap),
|
||||||
center,
|
center,
|
||||||
angle,
|
angle,
|
||||||
);
|
);
|
||||||
@@ -1584,13 +1690,44 @@ const snapToMid = (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return p;
|
return undefined;
|
||||||
};
|
};
|
||||||
|
|
||||||
const compareElementArea = (
|
const extractBinding = (
|
||||||
a: ExcalidrawBindableElement,
|
arrow: ExcalidrawArrowElement,
|
||||||
b: ExcalidrawBindableElement,
|
startOrEnd: "startBinding" | "endBinding",
|
||||||
) => b.width ** 2 + b.height ** 2 - (a.width ** 2 + a.height ** 2);
|
elementsMap: ElementsMap,
|
||||||
|
) => {
|
||||||
|
const binding = arrow[startOrEnd];
|
||||||
|
if (!binding) {
|
||||||
|
return {
|
||||||
|
element: null,
|
||||||
|
fixedPoint: null,
|
||||||
|
focusPoint: null,
|
||||||
|
binding,
|
||||||
|
mode: null,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const element = elementsMap.get(
|
||||||
|
binding.elementId,
|
||||||
|
) as ExcalidrawBindableElement;
|
||||||
|
|
||||||
|
return {
|
||||||
|
element,
|
||||||
|
fixedPoint: binding.fixedPoint,
|
||||||
|
focusPoint: getGlobalFixedPointForBindableElement(
|
||||||
|
normalizeFixedPoint(binding.fixedPoint),
|
||||||
|
element,
|
||||||
|
elementsMap,
|
||||||
|
),
|
||||||
|
binding,
|
||||||
|
mode: binding.mode,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const elementArea = (element: ExcalidrawBindableElement) =>
|
||||||
|
element.width * element.height;
|
||||||
|
|
||||||
export const updateBoundPoint = (
|
export const updateBoundPoint = (
|
||||||
arrow: NonDeleted<ExcalidrawArrowElement>,
|
arrow: NonDeleted<ExcalidrawArrowElement>,
|
||||||
@@ -1598,7 +1735,7 @@ export const updateBoundPoint = (
|
|||||||
binding: FixedPointBinding | null | undefined,
|
binding: FixedPointBinding | null | undefined,
|
||||||
bindableElement: ExcalidrawBindableElement,
|
bindableElement: ExcalidrawBindableElement,
|
||||||
elementsMap: ElementsMap,
|
elementsMap: ElementsMap,
|
||||||
customIntersector?: LineSegment<GlobalPoint>,
|
dragging?: boolean,
|
||||||
): LocalPoint | null => {
|
): LocalPoint | null => {
|
||||||
if (
|
if (
|
||||||
binding == null ||
|
binding == null ||
|
||||||
@@ -1613,152 +1750,136 @@ export const updateBoundPoint = (
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const global = getGlobalFixedPointForBindableElement(
|
const focusPoint = getGlobalFixedPointForBindableElement(
|
||||||
normalizeFixedPoint(binding.fixedPoint),
|
normalizeFixedPoint(binding.fixedPoint),
|
||||||
bindableElement,
|
bindableElement,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
);
|
);
|
||||||
const pointIndex =
|
|
||||||
startOrEnd === "startBinding" ? 0 : arrow.points.length - 1;
|
|
||||||
const elbowed = isElbowArrow(arrow);
|
|
||||||
const otherBinding =
|
|
||||||
startOrEnd === "startBinding" ? arrow.endBinding : arrow.startBinding;
|
|
||||||
const otherBindableElement =
|
|
||||||
otherBinding &&
|
|
||||||
(elementsMap.get(otherBinding.elementId)! as ExcalidrawBindableElement);
|
|
||||||
const bounds = getElementBounds(bindableElement, elementsMap);
|
|
||||||
const otherBounds =
|
|
||||||
otherBindableElement && getElementBounds(otherBindableElement, elementsMap);
|
|
||||||
const isLargerThanOther =
|
|
||||||
otherBindableElement &&
|
|
||||||
compareElementArea(bindableElement, otherBindableElement) <
|
|
||||||
// if both shapes the same size, pretend the other is larger
|
|
||||||
(startOrEnd === "endBinding" ? 1 : 0);
|
|
||||||
const isOverlapping = otherBounds && doBoundsIntersect(bounds, otherBounds);
|
|
||||||
|
|
||||||
// GOAL: If the arrow becomes too short, we want to jump the arrow endpoints
|
// 0. Short-circuit for inside binding as it doesn't require any
|
||||||
// to the exact focus points on the elements.
|
// calculations and is not affected by other bindings
|
||||||
// INTUITION: We're not interested in the exacts length of the arrow (which
|
if (binding.mode === "inside") {
|
||||||
// will change if we change where we route it), we want to know the length of
|
return LinearElementEditor.createPointAt(
|
||||||
// the part which lies outside of both shapes and consider that as a trigger
|
|
||||||
// to change where we point the arrow. Avoids jumping the arrow in and out
|
|
||||||
// at every frame.
|
|
||||||
let arrowTooShort = false;
|
|
||||||
if (
|
|
||||||
!isOverlapping &&
|
|
||||||
!elbowed &&
|
|
||||||
arrow.startBinding &&
|
|
||||||
arrow.endBinding &&
|
|
||||||
otherBindableElement &&
|
|
||||||
arrow.points.length === 2
|
|
||||||
) {
|
|
||||||
const startFocusPoint = getGlobalFixedPointForBindableElement(
|
|
||||||
arrow.startBinding.fixedPoint,
|
|
||||||
startOrEnd === "startBinding" ? bindableElement : otherBindableElement,
|
|
||||||
elementsMap,
|
|
||||||
);
|
|
||||||
const endFocusPoint = getGlobalFixedPointForBindableElement(
|
|
||||||
arrow.endBinding.fixedPoint,
|
|
||||||
startOrEnd === "endBinding" ? bindableElement : otherBindableElement,
|
|
||||||
elementsMap,
|
|
||||||
);
|
|
||||||
const segment = lineSegment(startFocusPoint, endFocusPoint);
|
|
||||||
const startIntersection = intersectElementWithLineSegment(
|
|
||||||
startOrEnd === "endBinding" ? bindableElement : otherBindableElement,
|
|
||||||
elementsMap,
|
|
||||||
segment,
|
|
||||||
0,
|
|
||||||
true,
|
|
||||||
);
|
|
||||||
const endIntersection = intersectElementWithLineSegment(
|
|
||||||
startOrEnd === "startBinding" ? bindableElement : otherBindableElement,
|
|
||||||
elementsMap,
|
|
||||||
segment,
|
|
||||||
0,
|
|
||||||
true,
|
|
||||||
);
|
|
||||||
if (startIntersection.length > 0 && endIntersection.length > 0) {
|
|
||||||
const len = pointDistance(startIntersection[0], endIntersection[0]);
|
|
||||||
arrowTooShort = len < 40;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const isNested = (arrowTooShort || isOverlapping) && isLargerThanOther;
|
|
||||||
|
|
||||||
let _customIntersector = customIntersector;
|
|
||||||
if (!elbowed && !_customIntersector) {
|
|
||||||
const [x1, y1, x2, y2] = LinearElementEditor.getElementAbsoluteCoords(
|
|
||||||
arrow,
|
arrow,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
);
|
focusPoint[0],
|
||||||
const center = pointFrom<GlobalPoint>((x1 + x2) / 2, (y1 + y2) / 2);
|
focusPoint[1],
|
||||||
const edgePoint = isRectanguloidElement(bindableElement)
|
null,
|
||||||
? avoidRectangularCorner(arrow, bindableElement, elementsMap, global)
|
|
||||||
: global;
|
|
||||||
const adjacentPoint = pointRotateRads(
|
|
||||||
pointFrom<GlobalPoint>(
|
|
||||||
arrow.x +
|
|
||||||
arrow.points[pointIndex === 0 ? 1 : arrow.points.length - 2][0],
|
|
||||||
arrow.y +
|
|
||||||
arrow.points[pointIndex === 0 ? 1 : arrow.points.length - 2][1],
|
|
||||||
),
|
|
||||||
center,
|
|
||||||
arrow.angle as Radians,
|
|
||||||
);
|
|
||||||
const bindingGap = getBindingGap(bindableElement, arrow);
|
|
||||||
const halfVector = vectorScale(
|
|
||||||
vectorNormalize(vectorFromPoint(edgePoint, adjacentPoint)),
|
|
||||||
pointDistance(edgePoint, adjacentPoint) +
|
|
||||||
Math.max(bindableElement.width, bindableElement.height) +
|
|
||||||
bindingGap * 2,
|
|
||||||
);
|
|
||||||
_customIntersector = lineSegment(
|
|
||||||
pointFromVector(halfVector, adjacentPoint),
|
|
||||||
pointFromVector(vectorScale(halfVector, -1), adjacentPoint),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const maybeOutlineGlobal =
|
const { element: otherBindable, focusPoint: otherFocusPoint } =
|
||||||
binding.mode === "orbit" && bindableElement
|
extractBinding(
|
||||||
? isNested
|
arrow,
|
||||||
? global
|
startOrEnd === "startBinding" ? "endBinding" : "startBinding",
|
||||||
: bindPointToSnapToElementOutline(
|
elementsMap,
|
||||||
{
|
);
|
||||||
...arrow,
|
const otherArrowPoint = LinearElementEditor.getPointAtIndexGlobalCoordinates(
|
||||||
points: [
|
arrow,
|
||||||
pointIndex === 0
|
startOrEnd === "startBinding" ? -1 : 0,
|
||||||
? LinearElementEditor.createPointAt(
|
elementsMap,
|
||||||
arrow,
|
);
|
||||||
elementsMap,
|
const otherFocusPointOrArrowPoint = otherFocusPoint || otherArrowPoint;
|
||||||
global[0],
|
const intersector =
|
||||||
global[1],
|
otherFocusPointOrArrowPoint &&
|
||||||
null,
|
lineSegment(focusPoint, otherFocusPointOrArrowPoint);
|
||||||
)
|
const otherOutlinePoint =
|
||||||
: arrow.points[0],
|
otherBindable &&
|
||||||
...arrow.points.slice(1, -1),
|
intersector &&
|
||||||
pointIndex === arrow.points.length - 1
|
intersectElementWithLineSegment(
|
||||||
? LinearElementEditor.createPointAt(
|
otherBindable,
|
||||||
arrow,
|
elementsMap,
|
||||||
elementsMap,
|
intersector,
|
||||||
global[0],
|
getBindingGap(otherBindable, arrow),
|
||||||
global[1],
|
).sort(
|
||||||
null,
|
(a, b) => pointDistanceSq(a, focusPoint) - pointDistanceSq(b, focusPoint),
|
||||||
)
|
)[0];
|
||||||
: arrow.points[arrow.points.length - 1],
|
const outlinePoint =
|
||||||
],
|
intersector &&
|
||||||
},
|
intersectElementWithLineSegment(
|
||||||
bindableElement,
|
bindableElement,
|
||||||
pointIndex === 0 ? "start" : "end",
|
elementsMap,
|
||||||
elementsMap,
|
intersector,
|
||||||
_customIntersector,
|
getBindingGap(bindableElement, arrow),
|
||||||
)
|
).sort(
|
||||||
: global;
|
(a, b) =>
|
||||||
|
pointDistanceSq(a, otherFocusPointOrArrowPoint) -
|
||||||
|
pointDistanceSq(b, otherFocusPointOrArrowPoint),
|
||||||
|
)[0];
|
||||||
|
const startHasArrowhead = arrow.startArrowhead !== null;
|
||||||
|
const endHasArrowhead = arrow.endArrowhead !== null;
|
||||||
|
const resolvedTarget =
|
||||||
|
(!startHasArrowhead && !endHasArrowhead) ||
|
||||||
|
(startOrEnd === "startBinding" && startHasArrowhead) ||
|
||||||
|
(startOrEnd === "endBinding" && endHasArrowhead)
|
||||||
|
? focusPoint
|
||||||
|
: outlinePoint || focusPoint;
|
||||||
|
|
||||||
|
// 1. Handle case when the outline point (or focus point) is inside
|
||||||
|
// the other shape by short-circuiting to the focus point, otherwise
|
||||||
|
// the arrow would invert
|
||||||
|
if (
|
||||||
|
otherBindable &&
|
||||||
|
outlinePoint &&
|
||||||
|
!dragging &&
|
||||||
|
// Arbitrary threshold to handle wireframing use cases
|
||||||
|
elementArea(otherBindable) < elementArea(bindableElement) * 2 &&
|
||||||
|
hitElementItself({
|
||||||
|
element: otherBindable,
|
||||||
|
point: outlinePoint,
|
||||||
|
elementsMap,
|
||||||
|
threshold: getBindingGap(otherBindable, arrow),
|
||||||
|
overrideShouldTestInside: true,
|
||||||
|
})
|
||||||
|
) {
|
||||||
|
return LinearElementEditor.createPointAt(
|
||||||
|
arrow,
|
||||||
|
elementsMap,
|
||||||
|
resolvedTarget[0],
|
||||||
|
resolvedTarget[1],
|
||||||
|
null,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const otherTargetPoint = otherBindable
|
||||||
|
? otherOutlinePoint || otherFocusPoint || otherArrowPoint
|
||||||
|
: otherArrowPoint;
|
||||||
|
const arrowTooShort =
|
||||||
|
pointDistance(otherTargetPoint, outlinePoint || focusPoint) <=
|
||||||
|
BASE_ARROW_MIN_LENGTH;
|
||||||
|
|
||||||
|
// 2. If the arrow is unconnected at the other end, just check arrow size
|
||||||
|
// and short-circuit to the focus point if the arrow is too short to
|
||||||
|
// avoid inversion
|
||||||
|
if (!otherBindable) {
|
||||||
|
return LinearElementEditor.createPointAt(
|
||||||
|
arrow,
|
||||||
|
elementsMap,
|
||||||
|
arrowTooShort ? focusPoint[0] : outlinePoint?.[0] ?? focusPoint[0],
|
||||||
|
arrowTooShort ? focusPoint[1] : outlinePoint?.[1] ?? focusPoint[1],
|
||||||
|
null,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3. If the arrow is too short while connected on both ends and
|
||||||
|
// the other arrow endpoint will not be inside the bindable, just
|
||||||
|
// check the arrow size and make a decision based on that
|
||||||
|
if (arrowTooShort) {
|
||||||
|
return LinearElementEditor.createPointAt(
|
||||||
|
arrow,
|
||||||
|
elementsMap,
|
||||||
|
resolvedTarget?.[0] || focusPoint[0],
|
||||||
|
resolvedTarget?.[1] || focusPoint[1],
|
||||||
|
null,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 4. In the general case, snap to the outline if possible
|
||||||
return LinearElementEditor.createPointAt(
|
return LinearElementEditor.createPointAt(
|
||||||
arrow,
|
arrow,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
maybeOutlineGlobal[0],
|
outlinePoint?.[0] || focusPoint[0],
|
||||||
maybeOutlineGlobal[1],
|
outlinePoint?.[1] || focusPoint[1],
|
||||||
null,
|
null,
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@@ -1808,7 +1929,7 @@ export const calculateFixedPointForNonElbowArrowBinding = (
|
|||||||
elementsMap: ElementsMap,
|
elementsMap: ElementsMap,
|
||||||
focusPoint?: GlobalPoint,
|
focusPoint?: GlobalPoint,
|
||||||
): { fixedPoint: FixedPoint } => {
|
): { fixedPoint: FixedPoint } => {
|
||||||
const edgePoint = focusPoint
|
const edgePoint: GlobalPoint = focusPoint
|
||||||
? focusPoint
|
? focusPoint
|
||||||
: LinearElementEditor.getPointAtIndexGlobalCoordinates(
|
: LinearElementEditor.getPointAtIndexGlobalCoordinates(
|
||||||
linearElement,
|
linearElement,
|
||||||
@@ -1816,11 +1937,7 @@ export const calculateFixedPointForNonElbowArrowBinding = (
|
|||||||
elementsMap,
|
elementsMap,
|
||||||
);
|
);
|
||||||
|
|
||||||
// Convert the global point to element-local coordinates
|
const elementCenter = elementCenterPoint(hoveredElement, elementsMap);
|
||||||
const elementCenter = pointFrom(
|
|
||||||
hoveredElement.x + hoveredElement.width / 2,
|
|
||||||
hoveredElement.y + hoveredElement.height / 2,
|
|
||||||
);
|
|
||||||
|
|
||||||
// Rotate the point to account for element rotation
|
// Rotate the point to account for element rotation
|
||||||
const nonRotatedPoint = pointRotateRads(
|
const nonRotatedPoint = pointRotateRads(
|
||||||
|
|||||||
@@ -59,8 +59,11 @@ import { LinearElementEditor } from "./linearElementEditor";
|
|||||||
|
|
||||||
import { distanceToElement } from "./distance";
|
import { distanceToElement } from "./distance";
|
||||||
|
|
||||||
|
import { getBindingGap } from "./binding";
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
ElementsMap,
|
ElementsMap,
|
||||||
|
ExcalidrawArrowElement,
|
||||||
ExcalidrawBindableElement,
|
ExcalidrawBindableElement,
|
||||||
ExcalidrawDiamondElement,
|
ExcalidrawDiamondElement,
|
||||||
ExcalidrawElement,
|
ExcalidrawElement,
|
||||||
@@ -290,7 +293,7 @@ export const getAllHoveredElementAtPoint = (
|
|||||||
point: Readonly<GlobalPoint>,
|
point: Readonly<GlobalPoint>,
|
||||||
elements: readonly Ordered<NonDeletedExcalidrawElement>[],
|
elements: readonly Ordered<NonDeletedExcalidrawElement>[],
|
||||||
elementsMap: NonDeletedSceneElementsMap,
|
elementsMap: NonDeletedSceneElementsMap,
|
||||||
toleranceFn?: (element: ExcalidrawBindableElement) => number,
|
tolerance?: number,
|
||||||
): NonDeleted<ExcalidrawBindableElement>[] => {
|
): NonDeleted<ExcalidrawBindableElement>[] => {
|
||||||
const candidateElements: NonDeleted<ExcalidrawBindableElement>[] = [];
|
const candidateElements: NonDeleted<ExcalidrawBindableElement>[] = [];
|
||||||
// We need to to hit testing from front (end of the array) to back (beginning of the array)
|
// We need to to hit testing from front (end of the array) to back (beginning of the array)
|
||||||
@@ -306,7 +309,7 @@ export const getAllHoveredElementAtPoint = (
|
|||||||
|
|
||||||
if (
|
if (
|
||||||
isBindableElement(element, false) &&
|
isBindableElement(element, false) &&
|
||||||
bindingBorderTest(element, point, elementsMap, toleranceFn?.(element))
|
bindingBorderTest(element, point, elementsMap, tolerance)
|
||||||
) {
|
) {
|
||||||
candidateElements.push(element);
|
candidateElements.push(element);
|
||||||
|
|
||||||
@@ -323,13 +326,13 @@ export const getHoveredElementForBinding = (
|
|||||||
point: Readonly<GlobalPoint>,
|
point: Readonly<GlobalPoint>,
|
||||||
elements: readonly Ordered<NonDeletedExcalidrawElement>[],
|
elements: readonly Ordered<NonDeletedExcalidrawElement>[],
|
||||||
elementsMap: NonDeletedSceneElementsMap,
|
elementsMap: NonDeletedSceneElementsMap,
|
||||||
toleranceFn?: (element: ExcalidrawBindableElement) => number,
|
tolerance?: number,
|
||||||
): NonDeleted<ExcalidrawBindableElement> | null => {
|
): NonDeleted<ExcalidrawBindableElement> | null => {
|
||||||
const candidateElements = getAllHoveredElementAtPoint(
|
const candidateElements = getAllHoveredElementAtPoint(
|
||||||
point,
|
point,
|
||||||
elements,
|
elements,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
toleranceFn,
|
tolerance,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!candidateElements || candidateElements.length === 0) {
|
if (!candidateElements || candidateElements.length === 0) {
|
||||||
@@ -348,6 +351,56 @@ export const getHoveredElementForBinding = (
|
|||||||
.pop() as NonDeleted<ExcalidrawBindableElement>;
|
.pop() as NonDeleted<ExcalidrawBindableElement>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const getHoveredElementForFocusPoint = (
|
||||||
|
point: GlobalPoint,
|
||||||
|
arrow: ExcalidrawArrowElement,
|
||||||
|
elements: readonly Ordered<NonDeletedExcalidrawElement>[],
|
||||||
|
elementsMap: NonDeletedSceneElementsMap,
|
||||||
|
tolerance?: number,
|
||||||
|
): ExcalidrawBindableElement | null => {
|
||||||
|
const candidateElements: NonDeleted<ExcalidrawBindableElement>[] = [];
|
||||||
|
// We need to to hit testing from front (end of the array) to back (beginning of the array)
|
||||||
|
// because array is ordered from lower z-index to highest and we want element z-index
|
||||||
|
// with higher z-index
|
||||||
|
for (let index = elements.length - 1; index >= 0; --index) {
|
||||||
|
const element = elements[index];
|
||||||
|
|
||||||
|
invariant(
|
||||||
|
!element.isDeleted,
|
||||||
|
"Elements in the function parameter for getAllElementsAtPositionForBinding() should not contain deleted elements",
|
||||||
|
);
|
||||||
|
|
||||||
|
if (
|
||||||
|
isBindableElement(element, false) &&
|
||||||
|
bindingBorderTest(element, point, elementsMap, tolerance)
|
||||||
|
) {
|
||||||
|
candidateElements.push(element);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!candidateElements || candidateElements.length === 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (candidateElements.length === 1) {
|
||||||
|
return candidateElements[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
const distanceFilteredCandidateElements = candidateElements
|
||||||
|
// Resolve by distance
|
||||||
|
.filter(
|
||||||
|
(el) =>
|
||||||
|
distanceToElement(el, elementsMap, point) <= getBindingGap(el, arrow) ||
|
||||||
|
isPointInElement(point, el, elementsMap),
|
||||||
|
);
|
||||||
|
|
||||||
|
if (distanceFilteredCandidateElements.length === 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return distanceFilteredCandidateElements[0] as NonDeleted<ExcalidrawBindableElement>;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Intersect a line with an element for binding test
|
* Intersect a line with an element for binding test
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -2276,7 +2276,7 @@ const getHoveredElement = (
|
|||||||
origPoint,
|
origPoint,
|
||||||
elements,
|
elements,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
(element) => maxBindingDistance_simple(zoom),
|
maxBindingDistance_simple(zoom),
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ const RE_REDDIT =
|
|||||||
const RE_REDDIT_EMBED =
|
const RE_REDDIT_EMBED =
|
||||||
/^<blockquote[\s\S]*?\shref=["'](https?:\/\/(?:www\.)?reddit\.com\/[^"']*)/i;
|
/^<blockquote[\s\S]*?\shref=["'](https?:\/\/(?:www\.)?reddit\.com\/[^"']*)/i;
|
||||||
|
|
||||||
const parseYouTubeTimestamp = (url: string): number => {
|
const parseYouTubeLikeTimestamp = (url: string): number => {
|
||||||
let timeParam: string | null | undefined;
|
let timeParam: string | null | undefined;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -85,11 +85,57 @@ const parseYouTubeTimestamp = (url: string): number => {
|
|||||||
return parseInt(hours) * 3600 + parseInt(minutes) * 60 + parseInt(seconds);
|
return parseInt(hours) * 3600 + parseInt(minutes) * 60 + parseInt(seconds);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const parseGoogleDriveVideoLink = (
|
||||||
|
url: string,
|
||||||
|
): { fileId: string; resourceKey?: string; timestamp?: number } | null => {
|
||||||
|
try {
|
||||||
|
const urlObj = new URL(url.startsWith("http") ? url : `https://${url}`);
|
||||||
|
const hostname = urlObj.hostname.replace(/^www\./, "");
|
||||||
|
if (hostname !== "drive.google.com") {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
let fileId: string | null = null;
|
||||||
|
const pathMatch = urlObj.pathname.match(/^\/file\/d\/([^/]+)(?:\/|$)/);
|
||||||
|
if (pathMatch?.[1]) {
|
||||||
|
fileId = pathMatch[1];
|
||||||
|
} else if (urlObj.pathname === "/open" || urlObj.pathname === "/uc") {
|
||||||
|
// Shared Drive links can be emitted as:
|
||||||
|
// - /open?id=<fileId> (common "open in Drive" format)
|
||||||
|
// - /uc?...&id=<fileId> (download/export endpoint often seen in copied links)
|
||||||
|
fileId = urlObj.searchParams.get("id");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!fileId || !/^[a-zA-Z0-9_-]+$/.test(fileId)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Some Drive share links include `resourcekey` for access to link-shared
|
||||||
|
// files; preserve it in the preview URL so embeds keep working.
|
||||||
|
const resourceKey = urlObj.searchParams.get("resourcekey");
|
||||||
|
const timestamp = parseYouTubeLikeTimestamp(urlObj.toString());
|
||||||
|
|
||||||
|
return {
|
||||||
|
fileId,
|
||||||
|
resourceKey:
|
||||||
|
resourceKey && /^[a-zA-Z0-9_-]+$/.test(resourceKey)
|
||||||
|
? resourceKey
|
||||||
|
: undefined,
|
||||||
|
// Drive accepts YouTube-like `t` formats (e.g. `t=90`, `t=1m30s`);
|
||||||
|
// normalize to seconds for a stable preview URL.
|
||||||
|
timestamp: timestamp > 0 ? timestamp : undefined,
|
||||||
|
};
|
||||||
|
} catch (error) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const ALLOWED_DOMAINS = new Set([
|
const ALLOWED_DOMAINS = new Set([
|
||||||
"youtube.com",
|
"youtube.com",
|
||||||
"youtu.be",
|
"youtu.be",
|
||||||
"vimeo.com",
|
"vimeo.com",
|
||||||
"player.vimeo.com",
|
"player.vimeo.com",
|
||||||
|
"drive.google.com",
|
||||||
"figma.com",
|
"figma.com",
|
||||||
"link.excalidraw.com",
|
"link.excalidraw.com",
|
||||||
"gist.github.com",
|
"gist.github.com",
|
||||||
@@ -108,6 +154,7 @@ const ALLOW_SAME_ORIGIN = new Set([
|
|||||||
"youtu.be",
|
"youtu.be",
|
||||||
"vimeo.com",
|
"vimeo.com",
|
||||||
"player.vimeo.com",
|
"player.vimeo.com",
|
||||||
|
"drive.google.com",
|
||||||
"figma.com",
|
"figma.com",
|
||||||
"twitter.com",
|
"twitter.com",
|
||||||
"x.com",
|
"x.com",
|
||||||
@@ -142,7 +189,7 @@ export const getEmbedLink = (
|
|||||||
let aspectRatio = { w: 560, h: 840 };
|
let aspectRatio = { w: 560, h: 840 };
|
||||||
const ytLink = link.match(RE_YOUTUBE);
|
const ytLink = link.match(RE_YOUTUBE);
|
||||||
if (ytLink?.[2]) {
|
if (ytLink?.[2]) {
|
||||||
const startTime = parseYouTubeTimestamp(originalLink);
|
const startTime = parseYouTubeLikeTimestamp(originalLink);
|
||||||
const time = startTime > 0 ? `&start=${startTime}` : ``;
|
const time = startTime > 0 ? `&start=${startTime}` : ``;
|
||||||
const isPortrait = link.includes("shorts");
|
const isPortrait = link.includes("shorts");
|
||||||
type = "video";
|
type = "video";
|
||||||
@@ -201,6 +248,36 @@ export const getEmbedLink = (
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const googleDriveVideo = parseGoogleDriveVideoLink(link);
|
||||||
|
if (googleDriveVideo) {
|
||||||
|
type = "video";
|
||||||
|
const searchParams = new URLSearchParams();
|
||||||
|
if (googleDriveVideo.resourceKey) {
|
||||||
|
searchParams.set("resourcekey", googleDriveVideo.resourceKey);
|
||||||
|
}
|
||||||
|
if (googleDriveVideo.timestamp) {
|
||||||
|
searchParams.set("t", `${googleDriveVideo.timestamp}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const search = searchParams.toString();
|
||||||
|
link = `https://drive.google.com/file/d/${googleDriveVideo.fileId}/preview${
|
||||||
|
search ? `?${search}` : ""
|
||||||
|
}`;
|
||||||
|
aspectRatio = { w: 560, h: 315 };
|
||||||
|
embeddedLinkCache.set(originalLink, {
|
||||||
|
link,
|
||||||
|
intrinsicSize: aspectRatio,
|
||||||
|
type,
|
||||||
|
sandbox: { allowSameOrigin },
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
link,
|
||||||
|
intrinsicSize: aspectRatio,
|
||||||
|
type,
|
||||||
|
sandbox: { allowSameOrigin },
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
const figmaLink = link.match(RE_FIGMA);
|
const figmaLink = link.match(RE_FIGMA);
|
||||||
if (figmaLink) {
|
if (figmaLink) {
|
||||||
type = "generic";
|
type = "generic";
|
||||||
|
|||||||
@@ -70,6 +70,7 @@ export * from "./elbowArrow";
|
|||||||
export * from "./elementLink";
|
export * from "./elementLink";
|
||||||
export * from "./embeddable";
|
export * from "./embeddable";
|
||||||
export * from "./flowchart";
|
export * from "./flowchart";
|
||||||
|
export * from "./arrows/focus";
|
||||||
export * from "./fractionalIndex";
|
export * from "./fractionalIndex";
|
||||||
export * from "./frame";
|
export * from "./frame";
|
||||||
export * from "./groups";
|
export * from "./groups";
|
||||||
@@ -97,3 +98,4 @@ export * from "./transformHandles";
|
|||||||
export * from "./typeChecks";
|
export * from "./typeChecks";
|
||||||
export * from "./utils";
|
export * from "./utils";
|
||||||
export * from "./zindex";
|
export * from "./zindex";
|
||||||
|
export * from "./arrows/helpers";
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import {
|
|||||||
vectorFromPoint,
|
vectorFromPoint,
|
||||||
curveLength,
|
curveLength,
|
||||||
curvePointAtLength,
|
curvePointAtLength,
|
||||||
lineSegment,
|
|
||||||
} from "@excalidraw/math";
|
} from "@excalidraw/math";
|
||||||
|
|
||||||
import { getCurvePathOps } from "@excalidraw/utils/shape";
|
import { getCurvePathOps } from "@excalidraw/utils/shape";
|
||||||
@@ -26,6 +25,7 @@ import {
|
|||||||
|
|
||||||
import {
|
import {
|
||||||
deconstructLinearOrFreeDrawElement,
|
deconstructLinearOrFreeDrawElement,
|
||||||
|
getSnapOutlineMidPoint,
|
||||||
isPathALoop,
|
isPathALoop,
|
||||||
moveArrowAboveBindable,
|
moveArrowAboveBindable,
|
||||||
projectFixedPointOntoDiagonal,
|
projectFixedPointOntoDiagonal,
|
||||||
@@ -48,6 +48,7 @@ import {
|
|||||||
calculateFixedPointForNonElbowArrowBinding,
|
calculateFixedPointForNonElbowArrowBinding,
|
||||||
getBindingStrategyForDraggingBindingElementEndpoints,
|
getBindingStrategyForDraggingBindingElementEndpoints,
|
||||||
isBindingEnabled,
|
isBindingEnabled,
|
||||||
|
snapToMid,
|
||||||
updateBoundPoint,
|
updateBoundPoint,
|
||||||
} from "./binding";
|
} from "./binding";
|
||||||
import {
|
import {
|
||||||
@@ -149,6 +150,8 @@ export class LinearElementEditor {
|
|||||||
public readonly pointerOffset: Readonly<{ x: number; y: number }>;
|
public readonly pointerOffset: Readonly<{ x: number; y: number }>;
|
||||||
public readonly hoverPointIndex: number;
|
public readonly hoverPointIndex: number;
|
||||||
public readonly segmentMidPointHoveredCoords: GlobalPoint | null;
|
public readonly segmentMidPointHoveredCoords: GlobalPoint | null;
|
||||||
|
public readonly hoveredFocusPointBinding: "start" | "end" | null;
|
||||||
|
public readonly draggedFocusPointBinding: "start" | "end" | null;
|
||||||
public readonly elbowed: boolean;
|
public readonly elbowed: boolean;
|
||||||
public readonly customLineAngle: number | null;
|
public readonly customLineAngle: number | null;
|
||||||
public readonly isEditing: boolean;
|
public readonly isEditing: boolean;
|
||||||
@@ -194,6 +197,8 @@ export class LinearElementEditor {
|
|||||||
};
|
};
|
||||||
this.hoverPointIndex = -1;
|
this.hoverPointIndex = -1;
|
||||||
this.segmentMidPointHoveredCoords = null;
|
this.segmentMidPointHoveredCoords = null;
|
||||||
|
this.hoveredFocusPointBinding = null;
|
||||||
|
this.draggedFocusPointBinding = null;
|
||||||
this.elbowed = isElbowArrow(element) && element.elbowed;
|
this.elbowed = isElbowArrow(element) && element.elbowed;
|
||||||
this.customLineAngle = null;
|
this.customLineAngle = null;
|
||||||
this.isEditing = isEditing;
|
this.isEditing = isEditing;
|
||||||
@@ -351,6 +356,7 @@ export class LinearElementEditor {
|
|||||||
app,
|
app,
|
||||||
shouldRotateWithDiscreteAngle(event),
|
shouldRotateWithDiscreteAngle(event),
|
||||||
event.altKey,
|
event.altKey,
|
||||||
|
linearElementEditor,
|
||||||
);
|
);
|
||||||
|
|
||||||
LinearElementEditor.movePoints(element, app.scene, positions, {
|
LinearElementEditor.movePoints(element, app.scene, positions, {
|
||||||
@@ -404,13 +410,14 @@ export class LinearElementEditor {
|
|||||||
altFocusPoint:
|
altFocusPoint:
|
||||||
!linearElementEditor.initialState.altFocusPoint &&
|
!linearElementEditor.initialState.altFocusPoint &&
|
||||||
startBindingElement &&
|
startBindingElement &&
|
||||||
updates?.suggestedBinding?.id !== startBindingElement.id
|
updates?.suggestedBinding?.element.id !== startBindingElement.id
|
||||||
? projectFixedPointOntoDiagonal(
|
? projectFixedPointOntoDiagonal(
|
||||||
element,
|
element,
|
||||||
pointFrom<GlobalPoint>(element.x, element.y),
|
pointFrom<GlobalPoint>(element.x, element.y),
|
||||||
startBindingElement,
|
startBindingElement,
|
||||||
"start",
|
"start",
|
||||||
elementsMap,
|
elementsMap,
|
||||||
|
app.state.zoom,
|
||||||
)
|
)
|
||||||
: linearElementEditor.initialState.altFocusPoint,
|
: linearElementEditor.initialState.altFocusPoint,
|
||||||
},
|
},
|
||||||
@@ -528,6 +535,7 @@ export class LinearElementEditor {
|
|||||||
app,
|
app,
|
||||||
shouldRotateWithDiscreteAngle(event) && singlePointDragged,
|
shouldRotateWithDiscreteAngle(event) && singlePointDragged,
|
||||||
event.altKey,
|
event.altKey,
|
||||||
|
linearElementEditor,
|
||||||
);
|
);
|
||||||
|
|
||||||
LinearElementEditor.movePoints(element, app.scene, positions, {
|
LinearElementEditor.movePoints(element, app.scene, positions, {
|
||||||
@@ -603,11 +611,11 @@ export class LinearElementEditor {
|
|||||||
const altFocusPointBindableElement =
|
const altFocusPointBindableElement =
|
||||||
endIsSelected && // The "other" end (i.e. "end") is dragged
|
endIsSelected && // The "other" end (i.e. "end") is dragged
|
||||||
startBindingElement &&
|
startBindingElement &&
|
||||||
updates?.suggestedBinding?.id !== startBindingElement.id // The end point is not hovering the start bindable + it's binding gap
|
updates?.suggestedBinding?.element.id !== startBindingElement.id // The end point is not hovering the start bindable + it's binding gap
|
||||||
? startBindingElement
|
? startBindingElement
|
||||||
: startIsSelected && // The "other" end (i.e. "start") is dragged
|
: startIsSelected && // The "other" end (i.e. "start") is dragged
|
||||||
endBindingElement &&
|
endBindingElement &&
|
||||||
updates?.suggestedBinding?.id !== endBindingElement.id // The start point is not hovering the end bindable + it's binding gap
|
updates?.suggestedBinding?.element.id !== endBindingElement.id // The start point is not hovering the end bindable + it's binding gap
|
||||||
? endBindingElement
|
? endBindingElement
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
@@ -627,6 +635,7 @@ export class LinearElementEditor {
|
|||||||
altFocusPointBindableElement,
|
altFocusPointBindableElement,
|
||||||
"start",
|
"start",
|
||||||
elementsMap,
|
elementsMap,
|
||||||
|
app.state.zoom,
|
||||||
)
|
)
|
||||||
: linearElementEditor.initialState.altFocusPoint,
|
: linearElementEditor.initialState.altFocusPoint,
|
||||||
},
|
},
|
||||||
@@ -2076,6 +2085,7 @@ const pointDraggingUpdates = (
|
|||||||
app: AppClassProperties,
|
app: AppClassProperties,
|
||||||
angleLocked: boolean,
|
angleLocked: boolean,
|
||||||
altKey: boolean,
|
altKey: boolean,
|
||||||
|
linearElementEditor: LinearElementEditor,
|
||||||
): {
|
): {
|
||||||
positions: PointsPositionUpdates;
|
positions: PointsPositionUpdates;
|
||||||
updates?: PointMoveOtherUpdates;
|
updates?: PointMoveOtherUpdates;
|
||||||
@@ -2123,18 +2133,89 @@ const pointDraggingUpdates = (
|
|||||||
);
|
);
|
||||||
|
|
||||||
if (isElbowArrow(element)) {
|
if (isElbowArrow(element)) {
|
||||||
|
const suggestedBindingElement = startIsDragged
|
||||||
|
? start.element
|
||||||
|
: endIsDragged
|
||||||
|
? end.element
|
||||||
|
: null;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
positions: naiveDraggingPoints,
|
positions: naiveDraggingPoints,
|
||||||
updates: {
|
updates: {
|
||||||
suggestedBinding: startIsDragged
|
suggestedBinding: suggestedBindingElement
|
||||||
? start.element
|
? {
|
||||||
: endIsDragged
|
element: suggestedBindingElement,
|
||||||
? end.element
|
midPoint: snapToMid(
|
||||||
|
suggestedBindingElement,
|
||||||
|
elementsMap,
|
||||||
|
pointFrom<GlobalPoint>(
|
||||||
|
scenePointerX - linearElementEditor.pointerOffset.x,
|
||||||
|
scenePointerY - linearElementEditor.pointerOffset.y,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
}
|
||||||
: null,
|
: null,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Handle the case where neither endpoint is being dragged
|
||||||
|
// but we need to update bound endpoints
|
||||||
|
if (!startIsDragged && !endIsDragged) {
|
||||||
|
const nextArrow = {
|
||||||
|
...element,
|
||||||
|
points: element.points.map((p, idx) => {
|
||||||
|
return naiveDraggingPoints.get(idx)?.point ?? p;
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
const positions = new Map(naiveDraggingPoints);
|
||||||
|
|
||||||
|
if (element.startBinding) {
|
||||||
|
const startBindable = elementsMap.get(element.startBinding.elementId) as
|
||||||
|
| ExcalidrawBindableElement
|
||||||
|
| undefined;
|
||||||
|
if (startBindable) {
|
||||||
|
const startPoint =
|
||||||
|
updateBoundPoint(
|
||||||
|
nextArrow,
|
||||||
|
"startBinding",
|
||||||
|
element.startBinding,
|
||||||
|
startBindable,
|
||||||
|
elementsMap,
|
||||||
|
) ?? null;
|
||||||
|
if (startPoint) {
|
||||||
|
positions.set(0, { point: startPoint, isDragging: true });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (element.endBinding) {
|
||||||
|
const endBindable = elementsMap.get(element.endBinding.elementId) as
|
||||||
|
| ExcalidrawBindableElement
|
||||||
|
| undefined;
|
||||||
|
if (endBindable) {
|
||||||
|
const endPoint =
|
||||||
|
updateBoundPoint(
|
||||||
|
nextArrow,
|
||||||
|
"endBinding",
|
||||||
|
element.endBinding,
|
||||||
|
endBindable,
|
||||||
|
elementsMap,
|
||||||
|
) ?? null;
|
||||||
|
if (endPoint) {
|
||||||
|
positions.set(element.points.length - 1, {
|
||||||
|
point: endPoint,
|
||||||
|
isDragging: true,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
positions,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
if (startIsDragged === endIsDragged) {
|
if (startIsDragged === endIsDragged) {
|
||||||
return {
|
return {
|
||||||
positions: naiveDraggingPoints,
|
positions: naiveDraggingPoints,
|
||||||
@@ -2165,7 +2246,20 @@ const pointDraggingUpdates = (
|
|||||||
(updates.startBinding.mode === "orbit" ||
|
(updates.startBinding.mode === "orbit" ||
|
||||||
!getFeatureFlag("COMPLEX_BINDINGS"))
|
!getFeatureFlag("COMPLEX_BINDINGS"))
|
||||||
) {
|
) {
|
||||||
updates.suggestedBinding = start.element;
|
updates.suggestedBinding = start.element
|
||||||
|
? {
|
||||||
|
element: start.element,
|
||||||
|
midPoint: getSnapOutlineMidPoint(
|
||||||
|
pointFrom<GlobalPoint>(
|
||||||
|
scenePointerX - linearElementEditor.pointerOffset.x,
|
||||||
|
scenePointerY - linearElementEditor.pointerOffset.y,
|
||||||
|
),
|
||||||
|
start.element,
|
||||||
|
elementsMap,
|
||||||
|
app.state.zoom,
|
||||||
|
),
|
||||||
|
}
|
||||||
|
: null;
|
||||||
}
|
}
|
||||||
} else if (startIsDragged) {
|
} else if (startIsDragged) {
|
||||||
updates.suggestedBinding = app.state.suggestedBinding;
|
updates.suggestedBinding = app.state.suggestedBinding;
|
||||||
@@ -2191,7 +2285,20 @@ const pointDraggingUpdates = (
|
|||||||
(updates.endBinding.mode === "orbit" ||
|
(updates.endBinding.mode === "orbit" ||
|
||||||
!getFeatureFlag("COMPLEX_BINDINGS"))
|
!getFeatureFlag("COMPLEX_BINDINGS"))
|
||||||
) {
|
) {
|
||||||
updates.suggestedBinding = end.element;
|
updates.suggestedBinding = end.element
|
||||||
|
? {
|
||||||
|
element: end.element,
|
||||||
|
midPoint: getSnapOutlineMidPoint(
|
||||||
|
pointFrom<GlobalPoint>(
|
||||||
|
scenePointerX - linearElementEditor.pointerOffset.x,
|
||||||
|
scenePointerY - linearElementEditor.pointerOffset.y,
|
||||||
|
),
|
||||||
|
end.element,
|
||||||
|
elementsMap,
|
||||||
|
app.state.zoom,
|
||||||
|
),
|
||||||
|
}
|
||||||
|
: null;
|
||||||
}
|
}
|
||||||
} else if (endIsDragged) {
|
} else if (endIsDragged) {
|
||||||
updates.suggestedBinding = app.state.suggestedBinding;
|
updates.suggestedBinding = app.state.suggestedBinding;
|
||||||
@@ -2231,19 +2338,6 @@ const pointDraggingUpdates = (
|
|||||||
: updates.endBinding,
|
: updates.endBinding,
|
||||||
};
|
};
|
||||||
|
|
||||||
// We need to use a custom intersector to ensure that if there is a big "jump"
|
|
||||||
// in the arrow's position, we can position it with outline avoidance
|
|
||||||
// pixel-perfectly and avoid "dancing" arrows.
|
|
||||||
// NOTE: Direction matters here, so we create two intersectors
|
|
||||||
const startCustomIntersector =
|
|
||||||
start.focusPoint && end.focusPoint
|
|
||||||
? lineSegment(start.focusPoint, end.focusPoint)
|
|
||||||
: undefined;
|
|
||||||
const endCustomIntersector =
|
|
||||||
start.focusPoint && end.focusPoint
|
|
||||||
? lineSegment(end.focusPoint, start.focusPoint)
|
|
||||||
: undefined;
|
|
||||||
|
|
||||||
// Needed to handle a special case where an existing arrow is dragged over
|
// Needed to handle a special case where an existing arrow is dragged over
|
||||||
// the same element it is bound to on the other side
|
// the same element it is bound to on the other side
|
||||||
const startIsDraggingOverEndElement =
|
const startIsDraggingOverEndElement =
|
||||||
@@ -2279,7 +2373,7 @@ const pointDraggingUpdates = (
|
|||||||
nextArrow.endBinding,
|
nextArrow.endBinding,
|
||||||
endBindable,
|
endBindable,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
endCustomIntersector,
|
endIsDragged,
|
||||||
) || nextArrow.points[nextArrow.points.length - 1]
|
) || nextArrow.points[nextArrow.points.length - 1]
|
||||||
: nextArrow.points[nextArrow.points.length - 1];
|
: nextArrow.points[nextArrow.points.length - 1];
|
||||||
|
|
||||||
@@ -2302,7 +2396,7 @@ const pointDraggingUpdates = (
|
|||||||
: startIsDraggingOverEndElement &&
|
: startIsDraggingOverEndElement &&
|
||||||
app.state.bindMode !== "inside" &&
|
app.state.bindMode !== "inside" &&
|
||||||
getFeatureFlag("COMPLEX_BINDINGS")
|
getFeatureFlag("COMPLEX_BINDINGS")
|
||||||
? nextArrow.points[nextArrow.points.length - 1]
|
? endLocalPoint
|
||||||
: startBindable
|
: startBindable
|
||||||
? updateBoundPoint(
|
? updateBoundPoint(
|
||||||
element,
|
element,
|
||||||
@@ -2310,15 +2404,18 @@ const pointDraggingUpdates = (
|
|||||||
nextArrow.startBinding,
|
nextArrow.startBinding,
|
||||||
startBindable,
|
startBindable,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
startCustomIntersector,
|
startIsDragged,
|
||||||
) || nextArrow.points[0]
|
) || nextArrow.points[0]
|
||||||
: nextArrow.points[0];
|
: nextArrow.points[0];
|
||||||
|
|
||||||
const endChanged =
|
const endChanged =
|
||||||
pointDistance(
|
!startIsDraggingOverEndElement &&
|
||||||
endLocalPoint,
|
!(
|
||||||
nextArrow.points[nextArrow.points.length - 1],
|
endIsDraggingOverStartElement &&
|
||||||
) !== 0;
|
app.state.bindMode !== "inside" &&
|
||||||
|
getFeatureFlag("COMPLEX_BINDINGS")
|
||||||
|
) &&
|
||||||
|
!!endBindable;
|
||||||
const startChanged =
|
const startChanged =
|
||||||
pointDistance(startLocalPoint, nextArrow.points[0]) !== 0;
|
pointDistance(startLocalPoint, nextArrow.points[0]) !== 0;
|
||||||
|
|
||||||
@@ -2332,13 +2429,7 @@ const pointDraggingUpdates = (
|
|||||||
const indices = Array.from(indicesSet);
|
const indices = Array.from(indicesSet);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
updates:
|
updates,
|
||||||
updates.startBinding || updates.suggestedBinding
|
|
||||||
? {
|
|
||||||
startBinding: updates.startBinding,
|
|
||||||
suggestedBinding: updates.suggestedBinding,
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
positions: new Map(
|
positions: new Map(
|
||||||
indices.map((idx) => {
|
indices.map((idx) => {
|
||||||
return [
|
return [
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ import {
|
|||||||
getVerticalOffset,
|
getVerticalOffset,
|
||||||
invariant,
|
invariant,
|
||||||
applyDarkModeFilter,
|
applyDarkModeFilter,
|
||||||
|
isSafari,
|
||||||
} from "@excalidraw/common";
|
} from "@excalidraw/common";
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
@@ -360,8 +361,9 @@ IMAGE_ERROR_PLACEHOLDER_IMG.src = `data:${MIME_TYPES.svg},${encodeURIComponent(
|
|||||||
const drawImagePlaceholder = (
|
const drawImagePlaceholder = (
|
||||||
element: ExcalidrawImageElement,
|
element: ExcalidrawImageElement,
|
||||||
context: CanvasRenderingContext2D,
|
context: CanvasRenderingContext2D,
|
||||||
|
theme: StaticCanvasRenderConfig["theme"],
|
||||||
) => {
|
) => {
|
||||||
context.fillStyle = "#E7E7E7";
|
context.fillStyle = theme === THEME.DARK ? "#2E2E2E" : "#E7E7E7";
|
||||||
context.fillRect(0, 0, element.width, element.height);
|
context.fillRect(0, 0, element.width, element.height);
|
||||||
|
|
||||||
const imageMinWidthOrHeight = Math.min(element.width, element.height);
|
const imageMinWidthOrHeight = Math.min(element.width, element.height);
|
||||||
@@ -443,13 +445,6 @@ const drawElementOnCanvas = (
|
|||||||
? cacheEntry?.image
|
? cacheEntry?.image
|
||||||
: undefined;
|
: undefined;
|
||||||
|
|
||||||
const shouldInvertImage =
|
|
||||||
renderConfig.theme === THEME.DARK &&
|
|
||||||
cacheEntry?.mimeType === MIME_TYPES.svg;
|
|
||||||
|
|
||||||
if (shouldInvertImage) {
|
|
||||||
context.filter = DARK_THEME_FILTER;
|
|
||||||
}
|
|
||||||
if (img != null && !(img instanceof Promise)) {
|
if (img != null && !(img instanceof Promise)) {
|
||||||
if (element.roundness && context.roundRect) {
|
if (element.roundness && context.roundRect) {
|
||||||
context.beginPath();
|
context.beginPath();
|
||||||
@@ -472,19 +467,78 @@ const drawElementOnCanvas = (
|
|||||||
height: img.naturalHeight,
|
height: img.naturalHeight,
|
||||||
};
|
};
|
||||||
|
|
||||||
context.drawImage(
|
const shouldInvertImage =
|
||||||
img,
|
renderConfig.theme === THEME.DARK &&
|
||||||
x,
|
cacheEntry?.mimeType === MIME_TYPES.svg;
|
||||||
y,
|
|
||||||
width,
|
if (shouldInvertImage && isSafari) {
|
||||||
height,
|
const devicePixelRatio = window.devicePixelRatio || 1;
|
||||||
0 /* hardcoded for the selection box*/,
|
const tempCanvas = document.createElement("canvas");
|
||||||
0,
|
tempCanvas.width = element.width * devicePixelRatio;
|
||||||
element.width,
|
tempCanvas.height = element.height * devicePixelRatio;
|
||||||
element.height,
|
const tempContext = tempCanvas.getContext("2d");
|
||||||
);
|
|
||||||
|
if (tempContext) {
|
||||||
|
tempContext.scale(devicePixelRatio, devicePixelRatio);
|
||||||
|
tempContext.drawImage(
|
||||||
|
img,
|
||||||
|
x,
|
||||||
|
y,
|
||||||
|
width,
|
||||||
|
height,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
element.width,
|
||||||
|
element.height,
|
||||||
|
);
|
||||||
|
|
||||||
|
const imageData = tempContext.getImageData(
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
tempCanvas.width,
|
||||||
|
tempCanvas.height,
|
||||||
|
);
|
||||||
|
|
||||||
|
const data = imageData.data;
|
||||||
|
|
||||||
|
for (let i = 0; i < data.length; i += 4) {
|
||||||
|
data[i] = 255 - data[i];
|
||||||
|
data[i + 1] = 255 - data[i + 1];
|
||||||
|
data[i + 2] = 255 - data[i + 2];
|
||||||
|
}
|
||||||
|
|
||||||
|
tempContext.putImageData(imageData, 0, 0);
|
||||||
|
context.drawImage(
|
||||||
|
tempCanvas,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
tempCanvas.width,
|
||||||
|
tempCanvas.height,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
element.width,
|
||||||
|
element.height,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (shouldInvertImage) {
|
||||||
|
context.filter = DARK_THEME_FILTER;
|
||||||
|
}
|
||||||
|
|
||||||
|
context.drawImage(
|
||||||
|
img,
|
||||||
|
x,
|
||||||
|
y,
|
||||||
|
width,
|
||||||
|
height,
|
||||||
|
0 /* hardcoded for the selection box*/,
|
||||||
|
0,
|
||||||
|
element.width,
|
||||||
|
element.height,
|
||||||
|
);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
drawImagePlaceholder(element, context);
|
drawImagePlaceholder(element, context, renderConfig.theme);
|
||||||
}
|
}
|
||||||
context.restore();
|
context.restore();
|
||||||
break;
|
break;
|
||||||
|
|||||||
+149
-26
@@ -7,6 +7,7 @@ import {
|
|||||||
} from "@excalidraw/common";
|
} from "@excalidraw/common";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
|
bezierEquation,
|
||||||
curve,
|
curve,
|
||||||
curveCatmullRomCubicApproxPoints,
|
curveCatmullRomCubicApproxPoints,
|
||||||
curveOffsetPoints,
|
curveOffsetPoints,
|
||||||
@@ -27,19 +28,30 @@ import {
|
|||||||
|
|
||||||
import type { Curve, LineSegment, LocalPoint } from "@excalidraw/math";
|
import type { Curve, LineSegment, LocalPoint } from "@excalidraw/math";
|
||||||
|
|
||||||
import type { NormalizedZoomValue, Zoom } from "@excalidraw/excalidraw/types";
|
import type {
|
||||||
|
AppState,
|
||||||
|
NormalizedZoomValue,
|
||||||
|
Zoom,
|
||||||
|
} from "@excalidraw/excalidraw/types";
|
||||||
|
|
||||||
import { elementCenterPoint, getDiamondPoints } from "./bounds";
|
import { elementCenterPoint, getDiamondPoints } from "./bounds";
|
||||||
|
|
||||||
import { generateLinearCollisionShape } from "./shape";
|
import { generateLinearCollisionShape } from "./shape";
|
||||||
|
|
||||||
import { isPointInElement } from "./collision";
|
import { hitElementItself, isPointInElement } from "./collision";
|
||||||
import { LinearElementEditor } from "./linearElementEditor";
|
import { LinearElementEditor } from "./linearElementEditor";
|
||||||
import { isRectangularElement } from "./typeChecks";
|
import { isRectangularElement } from "./typeChecks";
|
||||||
|
import { maxBindingDistance_simple } from "./binding";
|
||||||
|
|
||||||
|
import {
|
||||||
|
getGlobalFixedPointForBindableElement,
|
||||||
|
normalizeFixedPoint,
|
||||||
|
} from "./binding";
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
ElementsMap,
|
ElementsMap,
|
||||||
ExcalidrawArrowElement,
|
ExcalidrawArrowElement,
|
||||||
|
ExcalidrawBindableElement,
|
||||||
ExcalidrawDiamondElement,
|
ExcalidrawDiamondElement,
|
||||||
ExcalidrawElement,
|
ExcalidrawElement,
|
||||||
ExcalidrawFreeDrawElement,
|
ExcalidrawFreeDrawElement,
|
||||||
@@ -329,24 +341,10 @@ export function deconstructRectanguloidElement(
|
|||||||
return shape;
|
return shape;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export function getDiamondBaseCorners(
|
||||||
* Get the **unrotated** building components of a diamond element
|
|
||||||
* in the form of line segments and curves as a tuple, in this order.
|
|
||||||
*
|
|
||||||
* @param element The element to deconstruct
|
|
||||||
* @param offset An optional offset
|
|
||||||
* @returns Tuple of line **unrotated** segments (0) and curves (1)
|
|
||||||
*/
|
|
||||||
export function deconstructDiamondElement(
|
|
||||||
element: ExcalidrawDiamondElement,
|
element: ExcalidrawDiamondElement,
|
||||||
offset: number = 0,
|
offset: number = 0,
|
||||||
): [LineSegment<GlobalPoint>[], Curve<GlobalPoint>[]] {
|
): Curve<GlobalPoint>[] {
|
||||||
const cachedShape = getElementShapesCacheEntry(element, offset);
|
|
||||||
|
|
||||||
if (cachedShape) {
|
|
||||||
return cachedShape;
|
|
||||||
}
|
|
||||||
|
|
||||||
const [topX, topY, rightX, rightY, bottomX, bottomY, leftX, leftY] =
|
const [topX, topY, rightX, rightY, bottomX, bottomY, leftX, leftY] =
|
||||||
getDiamondPoints(element);
|
getDiamondPoints(element);
|
||||||
const verticalRadius = element.roundness
|
const verticalRadius = element.roundness
|
||||||
@@ -363,7 +361,7 @@ export function deconstructDiamondElement(
|
|||||||
pointFrom(element.x + leftX, element.y + leftY),
|
pointFrom(element.x + leftX, element.y + leftY),
|
||||||
];
|
];
|
||||||
|
|
||||||
const baseCorners = [
|
return [
|
||||||
curve(
|
curve(
|
||||||
pointFrom<GlobalPoint>(
|
pointFrom<GlobalPoint>(
|
||||||
right[0] - verticalRadius,
|
right[0] - verticalRadius,
|
||||||
@@ -413,6 +411,27 @@ export function deconstructDiamondElement(
|
|||||||
),
|
),
|
||||||
), // TOP
|
), // TOP
|
||||||
];
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the **unrotated** building components of a diamond element
|
||||||
|
* in the form of line segments and curves as a tuple, in this order.
|
||||||
|
*
|
||||||
|
* @param element The element to deconstruct
|
||||||
|
* @param offset An optional offset
|
||||||
|
* @returns Tuple of line **unrotated** segments (0) and curves (1)
|
||||||
|
*/
|
||||||
|
export function deconstructDiamondElement(
|
||||||
|
element: ExcalidrawDiamondElement,
|
||||||
|
offset: number = 0,
|
||||||
|
): [LineSegment<GlobalPoint>[], Curve<GlobalPoint>[]] {
|
||||||
|
const cachedShape = getElementShapesCacheEntry(element, offset);
|
||||||
|
|
||||||
|
if (cachedShape) {
|
||||||
|
return cachedShape;
|
||||||
|
}
|
||||||
|
|
||||||
|
const baseCorners = getDiamondBaseCorners(element, offset);
|
||||||
|
|
||||||
const corners = baseCorners.map(
|
const corners = baseCorners.map(
|
||||||
(corner) =>
|
(corner) =>
|
||||||
@@ -570,28 +589,128 @@ const getDiagonalsForBindableElement = (
|
|||||||
return [diagonalOne, diagonalTwo];
|
return [diagonalOne, diagonalTwo];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const getSnapOutlineMidPoint = (
|
||||||
|
point: GlobalPoint,
|
||||||
|
element: ExcalidrawBindableElement,
|
||||||
|
elementsMap: ElementsMap,
|
||||||
|
zoom: AppState["zoom"],
|
||||||
|
) => {
|
||||||
|
const center = elementCenterPoint(element, elementsMap);
|
||||||
|
const sideMidpoints =
|
||||||
|
element.type === "diamond"
|
||||||
|
? getDiamondBaseCorners(element).map((curve) => {
|
||||||
|
const point = bezierEquation(curve, 0.5);
|
||||||
|
const rotatedPoint = pointRotateRads(point, center, element.angle);
|
||||||
|
|
||||||
|
return pointFrom<GlobalPoint>(rotatedPoint[0], rotatedPoint[1]);
|
||||||
|
})
|
||||||
|
: [
|
||||||
|
// RIGHT midpoint
|
||||||
|
pointRotateRads(
|
||||||
|
pointFrom<GlobalPoint>(
|
||||||
|
element.x + element.width,
|
||||||
|
element.y + element.height / 2,
|
||||||
|
),
|
||||||
|
center,
|
||||||
|
element.angle,
|
||||||
|
),
|
||||||
|
// BOTTOM midpoint
|
||||||
|
pointRotateRads(
|
||||||
|
pointFrom<GlobalPoint>(
|
||||||
|
element.x + element.width / 2,
|
||||||
|
element.y + element.height,
|
||||||
|
),
|
||||||
|
center,
|
||||||
|
element.angle,
|
||||||
|
),
|
||||||
|
// LEFT midpoint
|
||||||
|
pointRotateRads(
|
||||||
|
pointFrom<GlobalPoint>(element.x, element.y + element.height / 2),
|
||||||
|
center,
|
||||||
|
element.angle,
|
||||||
|
),
|
||||||
|
// TOP midpoint
|
||||||
|
pointRotateRads(
|
||||||
|
pointFrom<GlobalPoint>(element.x + element.width / 2, element.y),
|
||||||
|
center,
|
||||||
|
element.angle,
|
||||||
|
),
|
||||||
|
];
|
||||||
|
const candidate = sideMidpoints.find(
|
||||||
|
(midpoint) =>
|
||||||
|
pointDistance(point, midpoint) <=
|
||||||
|
maxBindingDistance_simple(zoom) + element.strokeWidth / 2 &&
|
||||||
|
!hitElementItself({
|
||||||
|
point,
|
||||||
|
element,
|
||||||
|
threshold: 0,
|
||||||
|
elementsMap,
|
||||||
|
overrideShouldTestInside: true,
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
|
||||||
|
return candidate;
|
||||||
|
};
|
||||||
|
|
||||||
export const projectFixedPointOntoDiagonal = (
|
export const projectFixedPointOntoDiagonal = (
|
||||||
arrow: ExcalidrawArrowElement,
|
arrow: ExcalidrawArrowElement,
|
||||||
point: GlobalPoint,
|
point: GlobalPoint,
|
||||||
element: ExcalidrawElement,
|
element: ExcalidrawBindableElement,
|
||||||
startOrEnd: "start" | "end",
|
startOrEnd: "start" | "end",
|
||||||
elementsMap: ElementsMap,
|
elementsMap: ElementsMap,
|
||||||
|
zoom: AppState["zoom"],
|
||||||
): GlobalPoint | null => {
|
): GlobalPoint | null => {
|
||||||
invariant(arrow.points.length >= 2, "Arrow must have at least two points");
|
invariant(arrow.points.length >= 2, "Arrow must have at least two points");
|
||||||
if (arrow.width < 3 && arrow.height < 3) {
|
if (arrow.width < 3 && arrow.height < 3) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const sideMidPoint = getSnapOutlineMidPoint(
|
||||||
|
point,
|
||||||
|
element,
|
||||||
|
elementsMap,
|
||||||
|
zoom,
|
||||||
|
);
|
||||||
|
if (sideMidPoint) {
|
||||||
|
return sideMidPoint;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Do the projection onto the diagonals (or center lines
|
||||||
|
// for non-rectangular shapes)
|
||||||
const [diagonalOne, diagonalTwo] = getDiagonalsForBindableElement(
|
const [diagonalOne, diagonalTwo] = getDiagonalsForBindableElement(
|
||||||
element,
|
element,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
);
|
);
|
||||||
|
|
||||||
const a = LinearElementEditor.getPointAtIndexGlobalCoordinates(
|
// To avoid working with stale arrow state, we use the opposite focus point
|
||||||
|
// of the current endpoint, which will always be unchanged during moving of
|
||||||
|
// the endpoint. This is only needed when the arrow has only two points.
|
||||||
|
let a = LinearElementEditor.getPointAtIndexGlobalCoordinates(
|
||||||
arrow,
|
arrow,
|
||||||
startOrEnd === "start" ? 1 : arrow.points.length - 2,
|
startOrEnd === "start" ? 1 : arrow.points.length - 2,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
);
|
);
|
||||||
|
if (arrow.points.length === 2) {
|
||||||
|
const otherBinding =
|
||||||
|
startOrEnd === "start" ? arrow.endBinding : arrow.startBinding;
|
||||||
|
const otherBindable =
|
||||||
|
otherBinding &&
|
||||||
|
(elementsMap.get(otherBinding.elementId) as
|
||||||
|
| ExcalidrawBindableElement
|
||||||
|
| undefined);
|
||||||
|
const otherFocusPoint =
|
||||||
|
otherBinding &&
|
||||||
|
otherBindable &&
|
||||||
|
getGlobalFixedPointForBindableElement(
|
||||||
|
normalizeFixedPoint(otherBinding.fixedPoint),
|
||||||
|
otherBindable,
|
||||||
|
elementsMap,
|
||||||
|
);
|
||||||
|
if (otherFocusPoint) {
|
||||||
|
a = otherFocusPoint;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const b = pointFromVector<GlobalPoint>(
|
const b = pointFromVector<GlobalPoint>(
|
||||||
vectorScale(
|
vectorScale(
|
||||||
vectorFromPoint(point, a),
|
vectorFromPoint(point, a),
|
||||||
@@ -603,18 +722,22 @@ export const projectFixedPointOntoDiagonal = (
|
|||||||
),
|
),
|
||||||
a,
|
a,
|
||||||
);
|
);
|
||||||
const intersector = lineSegment<GlobalPoint>(point, b);
|
const intersector = lineSegment<GlobalPoint>(b, a);
|
||||||
const p1 = lineSegmentIntersectionPoints(diagonalOne, intersector);
|
const p1 = lineSegmentIntersectionPoints(diagonalOne, intersector);
|
||||||
const p2 = lineSegmentIntersectionPoints(diagonalTwo, intersector);
|
const p2 = lineSegmentIntersectionPoints(diagonalTwo, intersector);
|
||||||
const d1 = p1 && pointDistance(a, p1);
|
const d1 = p1 && pointDistance(a, p1);
|
||||||
const d2 = p2 && pointDistance(a, p2);
|
const d2 = p2 && pointDistance(a, p2);
|
||||||
|
|
||||||
let p = null;
|
let projection = null;
|
||||||
if (d1 != null && d2 != null) {
|
if (d1 != null && d2 != null) {
|
||||||
p = d1 < d2 ? p1 : p2;
|
projection = d1 < d2 ? p1 : p2;
|
||||||
} else {
|
} else {
|
||||||
p = p1 || p2 || null;
|
projection = p1 || p2 || null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return p && isPointInElement(p, element, elementsMap) ? p : null;
|
if (projection && isPointInElement(projection, element, elementsMap)) {
|
||||||
|
return projection;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -156,12 +156,11 @@ export const moveArrowAboveBindable = (
|
|||||||
elements: readonly Ordered<NonDeletedExcalidrawElement>[],
|
elements: readonly Ordered<NonDeletedExcalidrawElement>[],
|
||||||
elementsMap: NonDeletedSceneElementsMap,
|
elementsMap: NonDeletedSceneElementsMap,
|
||||||
scene: Scene,
|
scene: Scene,
|
||||||
|
hit?: NonDeletedExcalidrawElement,
|
||||||
): readonly OrderedExcalidrawElement[] => {
|
): readonly OrderedExcalidrawElement[] => {
|
||||||
const hoveredElement = getHoveredElementForBinding(
|
const hoveredElement = hit
|
||||||
point,
|
? hit
|
||||||
elements,
|
: getHoveredElementForBinding(point, elements, elementsMap);
|
||||||
elementsMap,
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!hoveredElement) {
|
if (!hoveredElement) {
|
||||||
return elements;
|
return elements;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { getEmbedLink } from "../src/embeddable";
|
import { embeddableURLValidator, getEmbedLink } from "../src/embeddable";
|
||||||
|
|
||||||
describe("YouTube timestamp parsing", () => {
|
describe("YouTube timestamp parsing", () => {
|
||||||
it("should parse YouTube URLs with timestamp in seconds", () => {
|
it("should parse YouTube URLs with timestamp in seconds", () => {
|
||||||
@@ -151,3 +151,83 @@ describe("YouTube timestamp parsing", () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("Google Drive video embedding", () => {
|
||||||
|
it.each([
|
||||||
|
{
|
||||||
|
url: "https://drive.google.com/file/d/1AbCdEfGhIjKlMnOpQrStUvWxYz123456/view?usp=sharing",
|
||||||
|
expectedLink:
|
||||||
|
"https://drive.google.com/file/d/1AbCdEfGhIjKlMnOpQrStUvWxYz123456/preview",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "https://drive.google.com/open?id=1AbCdEfGhIjKlMnOpQrStUvWxYz123456",
|
||||||
|
expectedLink:
|
||||||
|
"https://drive.google.com/file/d/1AbCdEfGhIjKlMnOpQrStUvWxYz123456/preview",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "https://drive.google.com/uc?export=download&id=1AbCdEfGhIjKlMnOpQrStUvWxYz123456",
|
||||||
|
expectedLink:
|
||||||
|
"https://drive.google.com/file/d/1AbCdEfGhIjKlMnOpQrStUvWxYz123456/preview",
|
||||||
|
},
|
||||||
|
])("should normalize Google Drive link: $url", ({ url, expectedLink }) => {
|
||||||
|
const result = getEmbedLink(url);
|
||||||
|
|
||||||
|
expect(result).toBeTruthy();
|
||||||
|
expect(result?.type).toBe("video");
|
||||||
|
if (result?.type === "video" || result?.type === "generic") {
|
||||||
|
expect(result.link).toBe(expectedLink);
|
||||||
|
}
|
||||||
|
expect(result?.intrinsicSize).toEqual({ w: 560, h: 315 });
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should preserve resourcekey when available", () => {
|
||||||
|
const url =
|
||||||
|
"https://drive.google.com/file/d/1AbCdEfGhIjKlMnOpQrStUvWxYz123456/view?resourcekey=0-abcdef123456";
|
||||||
|
const result = getEmbedLink(url);
|
||||||
|
|
||||||
|
expect(result).toBeTruthy();
|
||||||
|
expect(result?.type).toBe("video");
|
||||||
|
if (result?.type === "video" || result?.type === "generic") {
|
||||||
|
expect(result.link).toBe(
|
||||||
|
"https://drive.google.com/file/d/1AbCdEfGhIjKlMnOpQrStUvWxYz123456/preview?resourcekey=0-abcdef123456",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should preserve timestamp when available", () => {
|
||||||
|
const url =
|
||||||
|
"https://drive.google.com/file/d/1AbCdEfGhIjKlMnOpQrStUvWxYz123456/view?t=9";
|
||||||
|
const result = getEmbedLink(url);
|
||||||
|
|
||||||
|
expect(result).toBeTruthy();
|
||||||
|
expect(result?.type).toBe("video");
|
||||||
|
if (result?.type === "video" || result?.type === "generic") {
|
||||||
|
expect(result.link).toBe(
|
||||||
|
"https://drive.google.com/file/d/1AbCdEfGhIjKlMnOpQrStUvWxYz123456/preview?t=9",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should preserve resourcekey and timestamp together", () => {
|
||||||
|
const url =
|
||||||
|
"https://drive.google.com/file/d/1AbCdEfGhIjKlMnOpQrStUvWxYz123456/view?resourcekey=0-abcdef123456&t=9";
|
||||||
|
const result = getEmbedLink(url);
|
||||||
|
|
||||||
|
expect(result).toBeTruthy();
|
||||||
|
expect(result?.type).toBe("video");
|
||||||
|
if (result?.type === "video" || result?.type === "generic") {
|
||||||
|
expect(result.link).toBe(
|
||||||
|
"https://drive.google.com/file/d/1AbCdEfGhIjKlMnOpQrStUvWxYz123456/preview?resourcekey=0-abcdef123456&t=9",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should validate Google Drive domain by default", () => {
|
||||||
|
expect(
|
||||||
|
embeddableURLValidator(
|
||||||
|
"https://drive.google.com/file/d/1AbCdEfGhIjKlMnOpQrStUvWxYz123456/view",
|
||||||
|
undefined,
|
||||||
|
),
|
||||||
|
).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|||||||
@@ -378,7 +378,7 @@ describe("Test Linear Elements", () => {
|
|||||||
// drag line from midpoint
|
// drag line from midpoint
|
||||||
drag(midpoint, pointFrom(midpoint[0] + delta, midpoint[1] + delta));
|
drag(midpoint, pointFrom(midpoint[0] + delta, midpoint[1] + delta));
|
||||||
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
||||||
`11`,
|
`12`,
|
||||||
);
|
);
|
||||||
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`7`);
|
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`7`);
|
||||||
|
|
||||||
@@ -419,7 +419,7 @@ describe("Test Linear Elements", () => {
|
|||||||
fireEvent.click(screen.getByTitle("Round"));
|
fireEvent.click(screen.getByTitle("Round"));
|
||||||
|
|
||||||
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
||||||
`9`,
|
`10`,
|
||||||
);
|
);
|
||||||
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`6`);
|
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`6`);
|
||||||
|
|
||||||
@@ -480,7 +480,7 @@ describe("Test Linear Elements", () => {
|
|||||||
drag(startPoint, endPoint);
|
drag(startPoint, endPoint);
|
||||||
|
|
||||||
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
||||||
`11`,
|
`12`,
|
||||||
);
|
);
|
||||||
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`7`);
|
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`7`);
|
||||||
|
|
||||||
@@ -548,7 +548,7 @@ describe("Test Linear Elements", () => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
||||||
`14`,
|
`15`,
|
||||||
);
|
);
|
||||||
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`9`);
|
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`9`);
|
||||||
|
|
||||||
@@ -599,7 +599,7 @@ describe("Test Linear Elements", () => {
|
|||||||
drag(hitCoords, pointFrom(hitCoords[0] - delta, hitCoords[1] - delta));
|
drag(hitCoords, pointFrom(hitCoords[0] - delta, hitCoords[1] - delta));
|
||||||
|
|
||||||
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
||||||
`11`,
|
`12`,
|
||||||
);
|
);
|
||||||
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`7`);
|
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`7`);
|
||||||
|
|
||||||
@@ -640,7 +640,7 @@ describe("Test Linear Elements", () => {
|
|||||||
drag(hitCoords, pointFrom(hitCoords[0] + delta, hitCoords[1] + delta));
|
drag(hitCoords, pointFrom(hitCoords[0] + delta, hitCoords[1] + delta));
|
||||||
|
|
||||||
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
||||||
`11`,
|
`12`,
|
||||||
);
|
);
|
||||||
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`7`);
|
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`7`);
|
||||||
|
|
||||||
@@ -688,7 +688,7 @@ describe("Test Linear Elements", () => {
|
|||||||
deletePoint(points[2]);
|
deletePoint(points[2]);
|
||||||
expect(line.points.length).toEqual(3);
|
expect(line.points.length).toEqual(3);
|
||||||
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
||||||
`17`,
|
`18`,
|
||||||
);
|
);
|
||||||
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`10`);
|
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`10`);
|
||||||
|
|
||||||
@@ -746,7 +746,7 @@ describe("Test Linear Elements", () => {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
||||||
`14`,
|
`15`,
|
||||||
);
|
);
|
||||||
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`9`);
|
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`9`);
|
||||||
expect(line.points.length).toEqual(5);
|
expect(line.points.length).toEqual(5);
|
||||||
@@ -844,7 +844,7 @@ describe("Test Linear Elements", () => {
|
|||||||
drag(hitCoords, pointFrom(hitCoords[0] + delta, hitCoords[1] + delta));
|
drag(hitCoords, pointFrom(hitCoords[0] + delta, hitCoords[1] + delta));
|
||||||
|
|
||||||
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
expect(renderInteractiveScene.mock.calls.length).toMatchInlineSnapshot(
|
||||||
`11`,
|
`12`,
|
||||||
);
|
);
|
||||||
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`7`);
|
expect(renderStaticScene.mock.calls.length).toMatchInlineSnapshot(`7`);
|
||||||
|
|
||||||
@@ -1317,7 +1317,7 @@ describe("Test Linear Elements", () => {
|
|||||||
const textElement = h.elements[2] as ExcalidrawTextElementWithContainer;
|
const textElement = h.elements[2] as ExcalidrawTextElementWithContainer;
|
||||||
|
|
||||||
expect(arrow.endBinding?.elementId).toBe(rect.id);
|
expect(arrow.endBinding?.elementId).toBe(rect.id);
|
||||||
expect(arrow.width).toBeCloseTo(399);
|
expect(arrow.width).toBeCloseTo(404);
|
||||||
expect(rect.x).toBe(400);
|
expect(rect.x).toBe(400);
|
||||||
expect(rect.y).toBe(0);
|
expect(rect.y).toBe(0);
|
||||||
expect(
|
expect(
|
||||||
@@ -1336,7 +1336,7 @@ describe("Test Linear Elements", () => {
|
|||||||
mouse.downAt(rect.x, rect.y);
|
mouse.downAt(rect.x, rect.y);
|
||||||
mouse.moveTo(200, 0);
|
mouse.moveTo(200, 0);
|
||||||
mouse.upAt(200, 0);
|
mouse.upAt(200, 0);
|
||||||
expect(arrow.width).toBeCloseTo(199);
|
expect(arrow.width).toBeCloseTo(204);
|
||||||
expect(rect.x).toBe(200);
|
expect(rect.x).toBe(200);
|
||||||
expect(rect.y).toBe(0);
|
expect(rect.y).toBe(0);
|
||||||
expect(handleBindTextResizeSpy).toHaveBeenCalledWith(
|
expect(handleBindTextResizeSpy).toHaveBeenCalledWith(
|
||||||
|
|||||||
@@ -1350,8 +1350,8 @@ describe("multiple selection", () => {
|
|||||||
|
|
||||||
expect(boundArrow.x).toBeCloseTo(380 * scaleX);
|
expect(boundArrow.x).toBeCloseTo(380 * scaleX);
|
||||||
expect(boundArrow.y).toBeCloseTo(240 * scaleY);
|
expect(boundArrow.y).toBeCloseTo(240 * scaleY);
|
||||||
expect(boundArrow.points[1][0]).toBeCloseTo(59.7979);
|
expect(boundArrow.points[1][0]).toBeCloseTo(63.40354208105561);
|
||||||
expect(boundArrow.points[1][1]).toBeCloseTo(-79.7305);
|
expect(boundArrow.points[1][1]).toBeCloseTo(-84.53805610807356);
|
||||||
|
|
||||||
expect(arrowLabelPos.x + arrowLabel.width / 2).toBeCloseTo(
|
expect(arrowLabelPos.x + arrowLabel.width / 2).toBeCloseTo(
|
||||||
boundArrow.x + boundArrow.points[1][0] / 2,
|
boundArrow.x + boundArrow.points[1][0] / 2,
|
||||||
|
|||||||
@@ -108,7 +108,6 @@ export const actionFinalize = register<FormData>({
|
|||||||
|
|
||||||
return map;
|
return map;
|
||||||
}, new Map()) ?? new Map();
|
}, new Map()) ?? new Map();
|
||||||
|
|
||||||
bindOrUnbindBindingElement(
|
bindOrUnbindBindingElement(
|
||||||
element,
|
element,
|
||||||
draggedPoints,
|
draggedPoints,
|
||||||
|
|||||||
@@ -1555,7 +1555,7 @@ const getArrowheadOptions = (flip: boolean) => {
|
|||||||
value: null,
|
value: null,
|
||||||
text: t("labels.arrowhead_none"),
|
text: t("labels.arrowhead_none"),
|
||||||
keyBinding: "q",
|
keyBinding: "q",
|
||||||
icon: ArrowheadNoneIcon,
|
icon: <ArrowheadNoneIcon flip={flip} />,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: "arrow",
|
value: "arrow",
|
||||||
@@ -1683,7 +1683,8 @@ export const actionChangeArrowhead = register<{
|
|||||||
? element.startArrowhead
|
? element.startArrowhead
|
||||||
: appState.currentItemStartArrowhead,
|
: appState.currentItemStartArrowhead,
|
||||||
true,
|
true,
|
||||||
appState.currentItemStartArrowhead,
|
(hasSelection) =>
|
||||||
|
hasSelection ? null : appState.currentItemStartArrowhead,
|
||||||
)}
|
)}
|
||||||
onChange={(value) => updateData({ position: "start", type: value })}
|
onChange={(value) => updateData({ position: "start", type: value })}
|
||||||
numberOfOptionsToAlwaysShow={4}
|
numberOfOptionsToAlwaysShow={4}
|
||||||
@@ -1700,7 +1701,8 @@ export const actionChangeArrowhead = register<{
|
|||||||
? element.endArrowhead
|
? element.endArrowhead
|
||||||
: appState.currentItemEndArrowhead,
|
: appState.currentItemEndArrowhead,
|
||||||
true,
|
true,
|
||||||
appState.currentItemEndArrowhead,
|
(hasSelection) =>
|
||||||
|
hasSelection ? null : appState.currentItemEndArrowhead,
|
||||||
)}
|
)}
|
||||||
onChange={(value) => updateData({ position: "end", type: value })}
|
onChange={(value) => updateData({ position: "end", type: value })}
|
||||||
numberOfOptionsToAlwaysShow={4}
|
numberOfOptionsToAlwaysShow={4}
|
||||||
|
|||||||
@@ -55,7 +55,8 @@ export type ShortcutName =
|
|||||||
| "saveScene"
|
| "saveScene"
|
||||||
| "imageExport"
|
| "imageExport"
|
||||||
| "commandPalette"
|
| "commandPalette"
|
||||||
| "searchMenu";
|
| "searchMenu"
|
||||||
|
| "toolLock";
|
||||||
|
|
||||||
const shortcutMap: Record<ShortcutName, string[]> = {
|
const shortcutMap: Record<ShortcutName, string[]> = {
|
||||||
toggleTheme: [getShortcutKey("Shift+Alt+D")],
|
toggleTheme: [getShortcutKey("Shift+Alt+D")],
|
||||||
@@ -117,6 +118,7 @@ const shortcutMap: Record<ShortcutName, string[]> = {
|
|||||||
toggleShortcuts: [getShortcutKey("?")],
|
toggleShortcuts: [getShortcutKey("?")],
|
||||||
searchMenu: [getShortcutKey("CtrlOrCmd+F")],
|
searchMenu: [getShortcutKey("CtrlOrCmd+F")],
|
||||||
wrapSelectionInFrame: [],
|
wrapSelectionInFrame: [],
|
||||||
|
toolLock: [getShortcutKey("Q")],
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getShortcutFromShortcutName = (name: ShortcutName, idx = 0) => {
|
export const getShortcutFromShortcutName = (name: ShortcutName, idx = 0) => {
|
||||||
|
|||||||
@@ -204,8 +204,13 @@ export const copyToClipboard = async (
|
|||||||
/** supply if available to make the operation more certain to succeed */
|
/** supply if available to make the operation more certain to succeed */
|
||||||
clipboardEvent?: ClipboardEvent | null,
|
clipboardEvent?: ClipboardEvent | null,
|
||||||
) => {
|
) => {
|
||||||
|
const json = serializeAsClipboardJSON({ elements, files });
|
||||||
|
|
||||||
await copyTextToSystemClipboard(
|
await copyTextToSystemClipboard(
|
||||||
serializeAsClipboardJSON({ elements, files }),
|
{
|
||||||
|
[MIME_TYPES.excalidrawClipboard]: json,
|
||||||
|
[MIME_TYPES.text]: json,
|
||||||
|
},
|
||||||
clipboardEvent,
|
clipboardEvent,
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@@ -401,7 +406,7 @@ export type ParsedDataTransferFile = Extract<
|
|||||||
{ kind: "file" }
|
{ kind: "file" }
|
||||||
>;
|
>;
|
||||||
|
|
||||||
type ParsedDataTranferList = ParsedDataTransferItem[] & {
|
export type ParsedDataTranferList = ParsedDataTransferItem[] & {
|
||||||
/**
|
/**
|
||||||
* Only allows filtering by known `string` data types, since `file`
|
* Only allows filtering by known `string` data types, since `file`
|
||||||
* types can have multiple items of the same type (e.g. multiple image files)
|
* types can have multiple items of the same type (e.g. multiple image files)
|
||||||
@@ -452,6 +457,29 @@ const getDataTransferFiles = function (
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/** @returns list of MIME types, synchronously */
|
||||||
|
export const parseDataTransferEventMimeTypes = (
|
||||||
|
event: ClipboardEvent | DragEvent | React.DragEvent<HTMLDivElement>,
|
||||||
|
): Set<string> => {
|
||||||
|
let items: DataTransferItemList | undefined = undefined;
|
||||||
|
|
||||||
|
if (isClipboardEvent(event)) {
|
||||||
|
items = event.clipboardData?.items;
|
||||||
|
} else {
|
||||||
|
items = event.dataTransfer?.items;
|
||||||
|
}
|
||||||
|
|
||||||
|
const types: Set<string> = new Set();
|
||||||
|
|
||||||
|
for (const item of Array.from(items || [])) {
|
||||||
|
if (!types.has(item.type)) {
|
||||||
|
types.add(item.type);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return types;
|
||||||
|
};
|
||||||
|
|
||||||
export const parseDataTransferEvent = async (
|
export const parseDataTransferEvent = async (
|
||||||
event: ClipboardEvent | DragEvent | React.DragEvent<HTMLDivElement>,
|
event: ClipboardEvent | DragEvent | React.DragEvent<HTMLDivElement>,
|
||||||
): Promise<ParsedDataTranferList> => {
|
): Promise<ParsedDataTranferList> => {
|
||||||
@@ -460,8 +488,7 @@ export const parseDataTransferEvent = async (
|
|||||||
if (isClipboardEvent(event)) {
|
if (isClipboardEvent(event)) {
|
||||||
items = event.clipboardData?.items;
|
items = event.clipboardData?.items;
|
||||||
} else {
|
} else {
|
||||||
const dragEvent = event;
|
items = event.dataTransfer?.items;
|
||||||
items = dragEvent.dataTransfer?.items;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const dataItems = (
|
const dataItems = (
|
||||||
@@ -567,7 +594,7 @@ export const copyBlobToClipboardAsPng = async (blob: Blob | Promise<Blob>) => {
|
|||||||
// ClipboardItem constructor, but throws on an unrelated MIME type error.
|
// ClipboardItem constructor, but throws on an unrelated MIME type error.
|
||||||
// So we need to await this and fallback to awaiting the blob if applicable.
|
// So we need to await this and fallback to awaiting the blob if applicable.
|
||||||
await navigator.clipboard.write([
|
await navigator.clipboard.write([
|
||||||
new window.ClipboardItem({
|
new ClipboardItem({
|
||||||
[MIME_TYPES.png]: blob,
|
[MIME_TYPES.png]: blob,
|
||||||
}),
|
}),
|
||||||
]);
|
]);
|
||||||
@@ -576,7 +603,7 @@ export const copyBlobToClipboardAsPng = async (blob: Blob | Promise<Blob>) => {
|
|||||||
// with resolution value instead
|
// with resolution value instead
|
||||||
if (isPromiseLike(blob)) {
|
if (isPromiseLike(blob)) {
|
||||||
await navigator.clipboard.write([
|
await navigator.clipboard.write([
|
||||||
new window.ClipboardItem({
|
new ClipboardItem({
|
||||||
[MIME_TYPES.png]: await blob,
|
[MIME_TYPES.png]: await blob,
|
||||||
}),
|
}),
|
||||||
]);
|
]);
|
||||||
@@ -586,28 +613,27 @@ export const copyBlobToClipboardAsPng = async (blob: Blob | Promise<Blob>) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export const copyTextToSystemClipboard = async (
|
export const copyTextToSystemClipboard = async <
|
||||||
text: string | null,
|
MimeType extends ValueOf<typeof STRING_MIME_TYPES>,
|
||||||
|
>(
|
||||||
|
text: string | { [K in MimeType]: string } | null,
|
||||||
clipboardEvent?: ClipboardEvent | null,
|
clipboardEvent?: ClipboardEvent | null,
|
||||||
) => {
|
) => {
|
||||||
// (1) first try using Async Clipboard API
|
text = text || "";
|
||||||
if (probablySupportsClipboardWriteText) {
|
|
||||||
try {
|
|
||||||
// NOTE: doesn't work on FF on non-HTTPS domains, or when document
|
|
||||||
// not focused
|
|
||||||
await navigator.clipboard.writeText(text || "");
|
|
||||||
return;
|
|
||||||
} catch (error: any) {
|
|
||||||
console.error(error);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// (2) if fails and we have access to ClipboardEvent, use plain old setData()
|
const entries = Object.entries(
|
||||||
|
typeof text === "string" ? { [MIME_TYPES.text]: text } : text,
|
||||||
|
);
|
||||||
|
|
||||||
|
// (1) if we have clipboardEvent, try using it first as it's the most
|
||||||
|
// versatile
|
||||||
try {
|
try {
|
||||||
if (clipboardEvent) {
|
if (clipboardEvent) {
|
||||||
clipboardEvent.clipboardData?.setData(MIME_TYPES.text, text || "");
|
for (const [mimeType, value] of entries) {
|
||||||
if (clipboardEvent.clipboardData?.getData(MIME_TYPES.text) !== text) {
|
clipboardEvent.clipboardData?.setData(mimeType, value);
|
||||||
throw new Error("Failed to setData on clipboardEvent");
|
if (clipboardEvent.clipboardData?.getData(mimeType) !== value) {
|
||||||
|
throw new Error("Failed to setData on clipboardEvent");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -615,8 +641,26 @@ export const copyTextToSystemClipboard = async (
|
|||||||
console.error(error);
|
console.error(error);
|
||||||
}
|
}
|
||||||
|
|
||||||
// (3) if that fails, use document.execCommand
|
const plainTextEntry = entries.find(
|
||||||
if (!copyTextViaExecCommand(text)) {
|
([mimeType]) => mimeType === MIME_TYPES.text,
|
||||||
|
);
|
||||||
|
|
||||||
|
// (2) if we don't have access to clipboardEvent, or that fails,
|
||||||
|
// at least try setting text/plain via navigator.clipboard.writeText
|
||||||
|
// (navigator.clipboard.write doesn't work with non-standard mime types)
|
||||||
|
if (probablySupportsClipboardWriteText && plainTextEntry) {
|
||||||
|
try {
|
||||||
|
// NOTE: doesn't work on FF on non-HTTPS domains, or when document
|
||||||
|
// not focused
|
||||||
|
await navigator.clipboard.writeText(plainTextEntry[1]);
|
||||||
|
return;
|
||||||
|
} catch (error: any) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// (3) if previous fails, use document.execCommand
|
||||||
|
if (plainTextEntry && !copyTextViaExecCommand(plainTextEntry[1])) {
|
||||||
throw new Error("Error copying to clipboard.");
|
throw new Error("Error copying to clipboard.");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
import { useRef, useState } from "react";
|
import { useRef, useState } from "react";
|
||||||
import * as Popover from "@radix-ui/react-popover";
|
import { Popover } from "radix-ui";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
CLASSES,
|
CLASSES,
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ import {
|
|||||||
pointDistance,
|
pointDistance,
|
||||||
vector,
|
vector,
|
||||||
pointRotateRads,
|
pointRotateRads,
|
||||||
vectorScale,
|
|
||||||
vectorFromPoint,
|
vectorFromPoint,
|
||||||
vectorSubtract,
|
vectorSubtract,
|
||||||
vectorDot,
|
vectorDot,
|
||||||
@@ -250,6 +249,13 @@ import {
|
|||||||
maxBindingDistance_simple,
|
maxBindingDistance_simple,
|
||||||
convertToExcalidrawElements,
|
convertToExcalidrawElements,
|
||||||
type ExcalidrawElementSkeleton,
|
type ExcalidrawElementSkeleton,
|
||||||
|
getSnapOutlineMidPoint,
|
||||||
|
handleFocusPointDrag,
|
||||||
|
handleFocusPointHover,
|
||||||
|
handleFocusPointPointerDown,
|
||||||
|
handleFocusPointPointerUp,
|
||||||
|
maybeHandleArrowPointlikeDrag,
|
||||||
|
getUncroppedWidthAndHeight,
|
||||||
} from "@excalidraw/element";
|
} from "@excalidraw/element";
|
||||||
|
|
||||||
import type { GlobalPoint, LocalPoint, Radians } from "@excalidraw/math";
|
import type { GlobalPoint, LocalPoint, Radians } from "@excalidraw/math";
|
||||||
@@ -436,10 +442,7 @@ 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 {
|
import { isPointHittingLink } from "./hyperlink/helpers";
|
||||||
isPointHittingLink,
|
|
||||||
isPointHittingLinkIcon,
|
|
||||||
} from "./hyperlink/helpers";
|
|
||||||
import { MagicIcon, copyIcon, fullscreenIcon } from "./icons";
|
import { MagicIcon, copyIcon, fullscreenIcon } from "./icons";
|
||||||
import { Toast } from "./Toast";
|
import { Toast } from "./Toast";
|
||||||
|
|
||||||
@@ -643,7 +646,10 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
lastPointerUpEvent: React.PointerEvent<HTMLElement> | PointerEvent | null =
|
lastPointerUpEvent: React.PointerEvent<HTMLElement> | PointerEvent | null =
|
||||||
null;
|
null;
|
||||||
lastPointerMoveEvent: PointerEvent | null = null;
|
lastPointerMoveEvent: PointerEvent | null = null;
|
||||||
|
/** current frame pointer cords */
|
||||||
lastPointerMoveCoords: { x: number; y: number } | null = null;
|
lastPointerMoveCoords: { x: number; y: number } | null = null;
|
||||||
|
/** previous frame pointer coords */
|
||||||
|
previousPointerMoveCoords: { x: number; y: number } | null = null;
|
||||||
lastViewportPosition = { x: 0, y: 0 };
|
lastViewportPosition = { x: 0, y: 0 };
|
||||||
|
|
||||||
animationFrameHandler = new AnimationFrameHandler();
|
animationFrameHandler = new AnimationFrameHandler();
|
||||||
@@ -1201,12 +1207,99 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
return this.iFrameRefs.get(element.id);
|
return this.iFrameRefs.get(element.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
private handleEmbeddableCenterClick(element: ExcalidrawIframeLikeElement) {
|
private handleIframeLikeElementHover = ({
|
||||||
|
hitElement,
|
||||||
|
scenePointer,
|
||||||
|
moveEvent,
|
||||||
|
}: {
|
||||||
|
hitElement: NonDeleted<ExcalidrawElement> | null;
|
||||||
|
scenePointer: { x: number; y: number };
|
||||||
|
moveEvent: React.PointerEvent<HTMLCanvasElement>;
|
||||||
|
}): boolean => {
|
||||||
if (
|
if (
|
||||||
this.state.activeEmbeddable?.element === element &&
|
hitElement &&
|
||||||
|
isIframeLikeElement(hitElement) &&
|
||||||
|
this.isIframeLikeElementCenter(
|
||||||
|
hitElement,
|
||||||
|
moveEvent,
|
||||||
|
scenePointer.x,
|
||||||
|
scenePointer.y,
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
setCursor(this.interactiveCanvas, CURSOR_TYPE.POINTER);
|
||||||
|
this.setState({
|
||||||
|
activeEmbeddable: { element: hitElement, state: "hover" },
|
||||||
|
});
|
||||||
|
return true;
|
||||||
|
} else if (this.state.activeEmbeddable?.state === "hover") {
|
||||||
|
this.setState({ activeEmbeddable: null });
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** @returns true if iframe-like element click handled */
|
||||||
|
private handleIframeLikeCenterClick(): boolean {
|
||||||
|
if (!this.lastPointerDownEvent || !this.lastPointerUpEvent) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const scenePointerStart = viewportCoordsToSceneCoords(
|
||||||
|
{
|
||||||
|
clientX: this.lastPointerDownEvent.clientX,
|
||||||
|
clientY: this.lastPointerDownEvent.clientY,
|
||||||
|
},
|
||||||
|
this.state,
|
||||||
|
);
|
||||||
|
const scenePointerEnd = viewportCoordsToSceneCoords(
|
||||||
|
{
|
||||||
|
clientX: this.lastPointerUpEvent.clientX,
|
||||||
|
clientY: this.lastPointerUpEvent.clientY,
|
||||||
|
},
|
||||||
|
this.state,
|
||||||
|
);
|
||||||
|
|
||||||
|
const hitElementStart = this.getElementAtPosition(
|
||||||
|
scenePointerStart.x,
|
||||||
|
scenePointerStart.y,
|
||||||
|
);
|
||||||
|
|
||||||
|
const hitElementEnd = this.getElementAtPosition(
|
||||||
|
scenePointerEnd.x,
|
||||||
|
scenePointerEnd.y,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (
|
||||||
|
!hitElementStart ||
|
||||||
|
!hitElementEnd ||
|
||||||
|
hitElementStart !== hitElementEnd ||
|
||||||
|
this.lastPointerUpEvent.timeStamp - this.lastPointerDownEvent.timeStamp >
|
||||||
|
300 ||
|
||||||
|
gesture.pointers.size > 1 ||
|
||||||
|
!isIframeLikeElement(hitElementStart) ||
|
||||||
|
!isIframeLikeElement(hitElementEnd) ||
|
||||||
|
!this.isIframeLikeElementCenter(
|
||||||
|
hitElementStart,
|
||||||
|
this.lastPointerUpEvent,
|
||||||
|
scenePointerStart.x,
|
||||||
|
scenePointerStart.y,
|
||||||
|
) ||
|
||||||
|
!this.isIframeLikeElementCenter(
|
||||||
|
hitElementEnd,
|
||||||
|
this.lastPointerUpEvent,
|
||||||
|
scenePointerEnd.x,
|
||||||
|
scenePointerEnd.y,
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const iframeLikeElement = hitElementEnd;
|
||||||
|
|
||||||
|
if (
|
||||||
|
this.state.activeEmbeddable?.element === iframeLikeElement &&
|
||||||
this.state.activeEmbeddable?.state === "active"
|
this.state.activeEmbeddable?.state === "active"
|
||||||
) {
|
) {
|
||||||
return;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// The delay serves two purposes
|
// The delay serves two purposes
|
||||||
@@ -1217,31 +1310,34 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
// in fullscreen mode
|
// in fullscreen mode
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.setState({
|
this.setState({
|
||||||
activeEmbeddable: { element, state: "active" },
|
activeEmbeddable: { element: iframeLikeElement, state: "active" },
|
||||||
selectedElementIds: { [element.id]: true },
|
selectedElementIds: { [iframeLikeElement.id]: true },
|
||||||
newElement: null,
|
newElement: null,
|
||||||
selectionElement: null,
|
selectionElement: null,
|
||||||
});
|
});
|
||||||
}, 100);
|
}, 100);
|
||||||
|
|
||||||
if (isIframeElement(element)) {
|
if (isIframeElement(iframeLikeElement)) {
|
||||||
return;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
const iframe = this.getHTMLIFrameElement(element);
|
const iframe = this.getHTMLIFrameElement(iframeLikeElement);
|
||||||
|
|
||||||
if (!iframe?.contentWindow) {
|
if (!iframe?.contentWindow) {
|
||||||
return;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (iframe.src.includes("youtube")) {
|
if (iframe.src.includes("youtube")) {
|
||||||
const state = YOUTUBE_VIDEO_STATES.get(element.id);
|
const state = YOUTUBE_VIDEO_STATES.get(iframeLikeElement.id);
|
||||||
if (!state) {
|
if (!state) {
|
||||||
YOUTUBE_VIDEO_STATES.set(element.id, YOUTUBE_STATES.UNSTARTED);
|
YOUTUBE_VIDEO_STATES.set(
|
||||||
|
iframeLikeElement.id,
|
||||||
|
YOUTUBE_STATES.UNSTARTED,
|
||||||
|
);
|
||||||
iframe.contentWindow.postMessage(
|
iframe.contentWindow.postMessage(
|
||||||
JSON.stringify({
|
JSON.stringify({
|
||||||
event: "listening",
|
event: "listening",
|
||||||
id: element.id,
|
id: iframeLikeElement.id,
|
||||||
}),
|
}),
|
||||||
"*",
|
"*",
|
||||||
);
|
);
|
||||||
@@ -1278,6 +1374,8 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
"*",
|
"*",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private isIframeLikeElementCenter(
|
private isIframeLikeElementCenter(
|
||||||
@@ -4734,8 +4832,12 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Handle Alt key for bind mode
|
// Handle Alt key for bind mode
|
||||||
if (event.key === KEYS.ALT && getFeatureFlag("COMPLEX_BINDINGS")) {
|
if (event.key === KEYS.ALT) {
|
||||||
this.handleSkipBindMode();
|
if (getFeatureFlag("COMPLEX_BINDINGS")) {
|
||||||
|
this.handleSkipBindMode();
|
||||||
|
} else {
|
||||||
|
maybeHandleArrowPointlikeDrag({ app: this, event });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.actionManager.handleKeyDown(event)) {
|
if (this.actionManager.handleKeyDown(event)) {
|
||||||
@@ -4751,7 +4853,11 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
this.resetDelayedBindMode();
|
this.resetDelayedBindMode();
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setState({ isBindingEnabled: false });
|
flushSync(() => {
|
||||||
|
this.setState({ isBindingEnabled: false });
|
||||||
|
});
|
||||||
|
|
||||||
|
maybeHandleArrowPointlikeDrag({ app: this, event });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isArrowKey(event.key)) {
|
if (isArrowKey(event.key)) {
|
||||||
@@ -5024,6 +5130,11 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
}
|
}
|
||||||
isHoldingSpace = false;
|
isHoldingSpace = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (event.key === KEYS.ALT) {
|
||||||
|
maybeHandleArrowPointlikeDrag({ app: this, event });
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
(event.key === KEYS.ALT && this.state.bindMode === "skip") ||
|
(event.key === KEYS.ALT && this.state.bindMode === "skip") ||
|
||||||
(!event[KEYS.CTRL_OR_CMD] && !isBindingEnabled(this.state))
|
(!event[KEYS.CTRL_OR_CMD] && !isBindingEnabled(this.state))
|
||||||
@@ -5034,7 +5145,7 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Restart the timer if we're creating/editing a linear element and hovering over an element
|
// Restart the timer if we're creating/editing a linear element and hovering over an element
|
||||||
if (this.lastPointerMoveEvent) {
|
if (this.lastPointerMoveEvent && getFeatureFlag("COMPLEX_BINDINGS")) {
|
||||||
const scenePointer = viewportCoordsToSceneCoords(
|
const scenePointer = viewportCoordsToSceneCoords(
|
||||||
{
|
{
|
||||||
clientX: this.lastPointerMoveEvent.clientX,
|
clientX: this.lastPointerMoveEvent.clientX,
|
||||||
@@ -5055,14 +5166,18 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
this.scene.getNonDeletedElementsMap(),
|
this.scene.getNonDeletedElementsMap(),
|
||||||
);
|
);
|
||||||
|
|
||||||
if (isBindingElement(element) && getFeatureFlag("COMPLEX_BINDINGS")) {
|
if (isBindingElement(element)) {
|
||||||
this.handleDelayedBindModeChange(element, hoveredElement);
|
this.handleDelayedBindModeChange(element, hoveredElement);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!event[KEYS.CTRL_OR_CMD] && !this.state.isBindingEnabled) {
|
if (!event[KEYS.CTRL_OR_CMD] && !this.state.isBindingEnabled) {
|
||||||
this.setState({ isBindingEnabled: true });
|
flushSync(() => {
|
||||||
|
this.setState({ isBindingEnabled: true });
|
||||||
|
});
|
||||||
|
|
||||||
|
maybeHandleArrowPointlikeDrag({ app: this, event });
|
||||||
}
|
}
|
||||||
if (isArrowKey(event.key)) {
|
if (isArrowKey(event.key)) {
|
||||||
bindOrUnbindBindingElements(
|
bindOrUnbindBindingElements(
|
||||||
@@ -6375,15 +6490,28 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
// and point
|
// and point
|
||||||
const { newElement } = this.state;
|
const { newElement } = this.state;
|
||||||
if (!newElement && isBindingEnabled(this.state)) {
|
if (!newElement && isBindingEnabled(this.state)) {
|
||||||
|
const globalPoint = pointFrom<GlobalPoint>(
|
||||||
|
scenePointerX,
|
||||||
|
scenePointerY,
|
||||||
|
);
|
||||||
|
const elementsMap = this.scene.getNonDeletedElementsMap();
|
||||||
const hoveredElement = getHoveredElementForBinding(
|
const hoveredElement = getHoveredElementForBinding(
|
||||||
pointFrom<GlobalPoint>(scenePointerX, scenePointerY),
|
globalPoint,
|
||||||
this.scene.getNonDeletedElements(),
|
this.scene.getNonDeletedElements(),
|
||||||
this.scene.getNonDeletedElementsMap(),
|
elementsMap,
|
||||||
(el) => maxBindingDistance_simple(this.state.zoom),
|
maxBindingDistance_simple(this.state.zoom),
|
||||||
);
|
);
|
||||||
if (hoveredElement) {
|
if (hoveredElement) {
|
||||||
this.setState({
|
this.setState({
|
||||||
suggestedBinding: hoveredElement,
|
suggestedBinding: {
|
||||||
|
element: hoveredElement,
|
||||||
|
midPoint: getSnapOutlineMidPoint(
|
||||||
|
globalPoint,
|
||||||
|
hoveredElement,
|
||||||
|
elementsMap,
|
||||||
|
this.state.zoom,
|
||||||
|
),
|
||||||
|
},
|
||||||
});
|
});
|
||||||
} else if (this.state.suggestedBinding) {
|
} else if (this.state.suggestedBinding) {
|
||||||
this.setState({
|
this.setState({
|
||||||
@@ -6410,7 +6538,7 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
pointFrom<GlobalPoint>(scenePointerX, scenePointerY),
|
pointFrom<GlobalPoint>(scenePointerX, scenePointerY),
|
||||||
this.scene.getNonDeletedElements(),
|
this.scene.getNonDeletedElements(),
|
||||||
this.scene.getNonDeletedElementsMap(),
|
this.scene.getNonDeletedElementsMap(),
|
||||||
(el) => maxBindingDistance_simple(this.state.zoom),
|
maxBindingDistance_simple(this.state.zoom),
|
||||||
);
|
);
|
||||||
if (hoveredElement) {
|
if (hoveredElement) {
|
||||||
this.actionManager.executeAction(actionFinalize, "ui", {
|
this.actionManager.executeAction(actionFinalize, "ui", {
|
||||||
@@ -6564,26 +6692,33 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
pointFrom<GlobalPoint>(scenePointerX, scenePointerY),
|
pointFrom<GlobalPoint>(scenePointerX, scenePointerY),
|
||||||
this.scene.getNonDeletedElements(),
|
this.scene.getNonDeletedElements(),
|
||||||
this.scene.getNonDeletedElementsMap(),
|
this.scene.getNonDeletedElementsMap(),
|
||||||
(el) => maxBindingDistance_simple(this.state.zoom),
|
maxBindingDistance_simple(this.state.zoom),
|
||||||
);
|
);
|
||||||
if (
|
const scenePointer = pointFrom<GlobalPoint>(scenePointerX, scenePointerY);
|
||||||
hit &&
|
const elementsMap = this.scene.getNonDeletedElementsMap();
|
||||||
!isPointInElement(
|
if (hit && !isPointInElement(scenePointer, hit, elementsMap)) {
|
||||||
pointFrom<GlobalPoint>(scenePointerX, scenePointerY),
|
|
||||||
hit,
|
|
||||||
this.scene.getNonDeletedElementsMap(),
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
this.setState({
|
this.setState({
|
||||||
suggestedBinding: hit,
|
suggestedBinding: {
|
||||||
|
element: hit,
|
||||||
|
midPoint: getSnapOutlineMidPoint(
|
||||||
|
scenePointer,
|
||||||
|
hit,
|
||||||
|
elementsMap,
|
||||||
|
this.state.zoom,
|
||||||
|
),
|
||||||
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const hasDeselectedButton = Boolean(event.buttons);
|
const isPressingAnyButton = Boolean(event.buttons);
|
||||||
|
const isLaserTool = this.state.activeTool.type === "laser";
|
||||||
if (
|
if (
|
||||||
hasDeselectedButton ||
|
isPressingAnyButton ||
|
||||||
(this.state.activeTool.type !== "selection" &&
|
// checking against laser so that if you mouseover with a laser tool
|
||||||
|
// over a link/embeddable, we change the cursor
|
||||||
|
(!isLaserTool &&
|
||||||
|
this.state.activeTool.type !== "selection" &&
|
||||||
this.state.activeTool.type !== "lasso" &&
|
this.state.activeTool.type !== "lasso" &&
|
||||||
this.state.activeTool.type !== "text" &&
|
this.state.activeTool.type !== "text" &&
|
||||||
this.state.activeTool.type !== "eraser")
|
this.state.activeTool.type !== "eraser")
|
||||||
@@ -6703,6 +6838,14 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
hideHyperlinkToolip();
|
hideHyperlinkToolip();
|
||||||
|
if (isLaserTool) {
|
||||||
|
this.handleIframeLikeElementHover({
|
||||||
|
hitElement,
|
||||||
|
scenePointer,
|
||||||
|
moveEvent: event,
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (
|
if (
|
||||||
hitElement &&
|
hitElement &&
|
||||||
(hitElement.link || isEmbeddableElement(hitElement)) &&
|
(hitElement.link || isEmbeddableElement(hitElement)) &&
|
||||||
@@ -6735,24 +6878,15 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
!hitElement?.locked
|
!hitElement?.locked
|
||||||
) {
|
) {
|
||||||
if (
|
if (
|
||||||
hitElement &&
|
!this.handleIframeLikeElementHover({
|
||||||
isIframeLikeElement(hitElement) &&
|
|
||||||
this.isIframeLikeElementCenter(
|
|
||||||
hitElement,
|
hitElement,
|
||||||
event,
|
scenePointer,
|
||||||
scenePointerX,
|
moveEvent: event,
|
||||||
scenePointerY,
|
}) &&
|
||||||
)
|
(!hitElement ||
|
||||||
) {
|
// Elbow arrows can only be moved when unconnected
|
||||||
setCursor(this.interactiveCanvas, CURSOR_TYPE.POINTER);
|
!isElbowArrow(hitElement) ||
|
||||||
this.setState({
|
!(hitElement.startBinding || hitElement.endBinding))
|
||||||
activeEmbeddable: { element: hitElement, state: "hover" },
|
|
||||||
});
|
|
||||||
} else if (
|
|
||||||
!hitElement ||
|
|
||||||
// Elbow arrows can only be moved when unconnected
|
|
||||||
!isElbowArrow(hitElement) ||
|
|
||||||
!(hitElement.startBinding || hitElement.endBinding)
|
|
||||||
) {
|
) {
|
||||||
if (
|
if (
|
||||||
this.state.activeTool.type !== "lasso" ||
|
this.state.activeTool.type !== "lasso" ||
|
||||||
@@ -6760,9 +6894,6 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
) {
|
) {
|
||||||
setCursor(this.interactiveCanvas, CURSOR_TYPE.MOVE);
|
setCursor(this.interactiveCanvas, CURSOR_TYPE.MOVE);
|
||||||
}
|
}
|
||||||
if (this.state.activeEmbeddable?.state === "hover") {
|
|
||||||
this.setState({ activeEmbeddable: null });
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -6923,6 +7054,37 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check for focus point hover
|
||||||
|
let hoveredFocusPointBinding: "start" | "end" | null = null;
|
||||||
|
const arrow = element as any;
|
||||||
|
if (arrow.startBinding || arrow.endBinding) {
|
||||||
|
hoveredFocusPointBinding = handleFocusPointHover(
|
||||||
|
element as ExcalidrawArrowElement,
|
||||||
|
scenePointerX,
|
||||||
|
scenePointerY,
|
||||||
|
this.scene,
|
||||||
|
this.state,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
this.state.selectedLinearElement.hoveredFocusPointBinding !==
|
||||||
|
hoveredFocusPointBinding
|
||||||
|
) {
|
||||||
|
this.setState({
|
||||||
|
selectedLinearElement: {
|
||||||
|
...this.state.selectedLinearElement,
|
||||||
|
isDragging: false,
|
||||||
|
hoveredFocusPointBinding,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set cursor to pointer when hovering over a focus point
|
||||||
|
if (hoveredFocusPointBinding) {
|
||||||
|
setCursor(this.interactiveCanvas, CURSOR_TYPE.POINTER);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
setCursor(this.interactiveCanvas, CURSOR_TYPE.AUTO);
|
setCursor(this.interactiveCanvas, CURSOR_TYPE.AUTO);
|
||||||
}
|
}
|
||||||
@@ -7383,26 +7545,9 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
x: scenePointerX,
|
x: scenePointerX,
|
||||||
y: scenePointerY,
|
y: scenePointerY,
|
||||||
};
|
};
|
||||||
const clicklength =
|
|
||||||
event.timeStamp - (this.lastPointerDownEvent?.timeStamp ?? 0);
|
|
||||||
|
|
||||||
if (this.editorInterface.formFactor === "phone" && clicklength < 300) {
|
if (this.handleIframeLikeCenterClick()) {
|
||||||
const hitElement = this.getElementAtPosition(
|
return;
|
||||||
scenePointer.x,
|
|
||||||
scenePointer.y,
|
|
||||||
);
|
|
||||||
if (
|
|
||||||
isIframeLikeElement(hitElement) &&
|
|
||||||
this.isIframeLikeElementCenter(
|
|
||||||
hitElement,
|
|
||||||
event,
|
|
||||||
scenePointer.x,
|
|
||||||
scenePointer.y,
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
this.handleEmbeddableCenterClick(hitElement);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.editorInterface.isTouchScreen) {
|
if (this.editorInterface.isTouchScreen) {
|
||||||
@@ -7423,20 +7568,7 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
this.hitLinkElement &&
|
this.hitLinkElement &&
|
||||||
!this.state.selectedElementIds[this.hitLinkElement.id]
|
!this.state.selectedElementIds[this.hitLinkElement.id]
|
||||||
) {
|
) {
|
||||||
if (
|
this.redirectToLink(event, this.editorInterface.isTouchScreen);
|
||||||
clicklength < 300 &&
|
|
||||||
isIframeLikeElement(this.hitLinkElement) &&
|
|
||||||
!isPointHittingLinkIcon(
|
|
||||||
this.hitLinkElement,
|
|
||||||
this.scene.getNonDeletedElementsMap(),
|
|
||||||
this.state,
|
|
||||||
pointFrom(scenePointer.x, scenePointer.y),
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
this.handleEmbeddableCenterClick(this.hitLinkElement);
|
|
||||||
} else {
|
|
||||||
this.redirectToLink(event, this.editorInterface.isTouchScreen);
|
|
||||||
}
|
|
||||||
} else if (this.state.viewModeEnabled) {
|
} else if (this.state.viewModeEnabled) {
|
||||||
this.setState({
|
this.setState({
|
||||||
activeEmbeddable: null,
|
activeEmbeddable: null,
|
||||||
@@ -7844,6 +7976,37 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
if (ret.didAddPoint) {
|
if (ret.didAddPoint) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Also check at current pointer position if focus point is being hovered
|
||||||
|
// (in case we're clicking directly without a prior move event)
|
||||||
|
const elementsMap = this.scene.getNonDeletedElementsMap();
|
||||||
|
const arrow = LinearElementEditor.getElement(
|
||||||
|
linearElementEditor.elementId,
|
||||||
|
elementsMap,
|
||||||
|
) as any;
|
||||||
|
|
||||||
|
if (arrow && isBindingElement(arrow)) {
|
||||||
|
const { hitFocusPoint, pointerOffset } =
|
||||||
|
handleFocusPointPointerDown(
|
||||||
|
arrow,
|
||||||
|
pointerDownState,
|
||||||
|
elementsMap,
|
||||||
|
this.state,
|
||||||
|
);
|
||||||
|
|
||||||
|
// If focus point is hit, update state and prevent element selection
|
||||||
|
if (hitFocusPoint) {
|
||||||
|
this.setState({
|
||||||
|
selectedLinearElement: {
|
||||||
|
...linearElementEditor,
|
||||||
|
hoveredFocusPointBinding: hitFocusPoint,
|
||||||
|
draggedFocusPointBinding: hitFocusPoint,
|
||||||
|
pointerOffset,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const allHitElements = this.getElementsAtPosition(
|
const allHitElements = this.getElementsAtPosition(
|
||||||
@@ -8656,6 +8819,7 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
selectedPointsIndices: [endIdx],
|
selectedPointsIndices: [endIdx],
|
||||||
initialState: {
|
initialState: {
|
||||||
...linearElementEditor.initialState,
|
...linearElementEditor.initialState,
|
||||||
|
arrowStartIsInside: event.altKey,
|
||||||
lastClickedPoint: endIdx,
|
lastClickedPoint: endIdx,
|
||||||
origin: pointFrom<GlobalPoint>(
|
origin: pointFrom<GlobalPoint>(
|
||||||
pointerDownState.origin.x,
|
pointerDownState.origin.x,
|
||||||
@@ -8674,7 +8838,18 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
bindMode: "orbit",
|
bindMode: "orbit",
|
||||||
newElement: element,
|
newElement: element,
|
||||||
startBoundElement: boundElement,
|
startBoundElement: boundElement,
|
||||||
suggestedBinding: boundElement || null,
|
suggestedBinding:
|
||||||
|
boundElement && isBindingElement(element)
|
||||||
|
? {
|
||||||
|
element: boundElement,
|
||||||
|
midPoint: getSnapOutlineMidPoint(
|
||||||
|
point,
|
||||||
|
boundElement,
|
||||||
|
elementsMap,
|
||||||
|
this.state.zoom,
|
||||||
|
),
|
||||||
|
}
|
||||||
|
: null,
|
||||||
selectedElementIds: nextSelectedElementIds,
|
selectedElementIds: nextSelectedElementIds,
|
||||||
selectedLinearElement: linearElementEditor,
|
selectedLinearElement: linearElementEditor,
|
||||||
};
|
};
|
||||||
@@ -8936,8 +9111,8 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const lastPointerCoords =
|
const lastPointerCoords =
|
||||||
this.lastPointerMoveCoords ?? pointerDownState.origin;
|
this.previousPointerMoveCoords ?? pointerDownState.origin;
|
||||||
this.lastPointerMoveCoords = pointerCoords;
|
this.previousPointerMoveCoords = pointerCoords;
|
||||||
|
|
||||||
// We need to initialize dragOffsetXY only after we've updated
|
// We need to initialize dragOffsetXY only after we've updated
|
||||||
// `state.selectedElementIds` on pointerDown. Doing it here in pointerMove
|
// `state.selectedElementIds` on pointerDown. Doing it here in pointerMove
|
||||||
@@ -8991,6 +9166,31 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
if (this.state.selectedLinearElement) {
|
if (this.state.selectedLinearElement) {
|
||||||
const linearElementEditor = this.state.selectedLinearElement;
|
const linearElementEditor = this.state.selectedLinearElement;
|
||||||
|
|
||||||
|
// Handle focus point dragging if needed
|
||||||
|
if (linearElementEditor.draggedFocusPointBinding) {
|
||||||
|
handleFocusPointDrag(
|
||||||
|
linearElementEditor,
|
||||||
|
elementsMap,
|
||||||
|
pointerCoords,
|
||||||
|
this.scene,
|
||||||
|
this.state,
|
||||||
|
this.getEffectiveGridSize(),
|
||||||
|
event.altKey,
|
||||||
|
);
|
||||||
|
this.setState({
|
||||||
|
selectedLinearElement: {
|
||||||
|
...linearElementEditor,
|
||||||
|
isDragging: false,
|
||||||
|
selectedPointsIndices: [],
|
||||||
|
initialState: {
|
||||||
|
...linearElementEditor.initialState,
|
||||||
|
lastClickedPoint: -1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
LinearElementEditor.shouldAddMidpoint(
|
LinearElementEditor.shouldAddMidpoint(
|
||||||
this.state.selectedLinearElement,
|
this.state.selectedLinearElement,
|
||||||
@@ -9229,14 +9429,21 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
this.imageCache.get(croppingElement.fileId)?.image;
|
this.imageCache.get(croppingElement.fileId)?.image;
|
||||||
|
|
||||||
if (image && !(image instanceof Promise)) {
|
if (image && !(image instanceof Promise)) {
|
||||||
const instantDragOffset = vectorScale(
|
const uncroppedSize =
|
||||||
vector(
|
getUncroppedWidthAndHeight(croppingElement);
|
||||||
pointerCoords.x - lastPointerCoords.x,
|
const instantDragOffset = vector(
|
||||||
pointerCoords.y - lastPointerCoords.y,
|
pointerCoords.x - lastPointerCoords.x,
|
||||||
),
|
pointerCoords.y - lastPointerCoords.y,
|
||||||
Math.max(this.state.zoom.value, 2),
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// to reduce cursor:image drift, we need to take into account
|
||||||
|
// the canvas image element scaling so we can accurately
|
||||||
|
// track the pixels on movement
|
||||||
|
instantDragOffset[0] *=
|
||||||
|
image.naturalWidth / uncroppedSize.width;
|
||||||
|
instantDragOffset[1] *=
|
||||||
|
image.naturalHeight / uncroppedSize.height;
|
||||||
|
|
||||||
const [x1, y1, x2, y2, cx, cy] = getElementAbsoluteCoords(
|
const [x1, y1, x2, y2, cx, cy] = getElementAbsoluteCoords(
|
||||||
croppingElement,
|
croppingElement,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
@@ -9279,13 +9486,13 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
const nextCrop = {
|
const nextCrop = {
|
||||||
...crop,
|
...crop,
|
||||||
x: clamp(
|
x: clamp(
|
||||||
crop.x +
|
crop.x -
|
||||||
offsetVector[0] * Math.sign(croppingElement.scale[0]),
|
offsetVector[0] * Math.sign(croppingElement.scale[0]),
|
||||||
0,
|
0,
|
||||||
image.naturalWidth - crop.width,
|
image.naturalWidth - crop.width,
|
||||||
),
|
),
|
||||||
y: clamp(
|
y: clamp(
|
||||||
crop.y +
|
crop.y -
|
||||||
offsetVector[1] * Math.sign(croppingElement.scale[1]),
|
offsetVector[1] * Math.sign(croppingElement.scale[1]),
|
||||||
0,
|
0,
|
||||||
image.naturalHeight - crop.height,
|
image.naturalHeight - crop.height,
|
||||||
@@ -9778,6 +9985,7 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
|
|
||||||
// just in case, tool changes mid drag, always clean up
|
// just in case, tool changes mid drag, always clean up
|
||||||
this.lassoTrail.endPath();
|
this.lassoTrail.endPath();
|
||||||
|
this.previousPointerMoveCoords = null;
|
||||||
|
|
||||||
SnapCache.setReferenceSnapPoints(null);
|
SnapCache.setReferenceSnapPoints(null);
|
||||||
SnapCache.setVisibleGaps(null);
|
SnapCache.setVisibleGaps(null);
|
||||||
@@ -9859,12 +10067,14 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
// and sets binding element
|
// and sets binding element
|
||||||
if (
|
if (
|
||||||
this.state.selectedLinearElement?.isEditing &&
|
this.state.selectedLinearElement?.isEditing &&
|
||||||
!this.state.newElement
|
!this.state.newElement &&
|
||||||
|
this.state.selectedLinearElement.draggedFocusPointBinding === null
|
||||||
) {
|
) {
|
||||||
if (
|
if (
|
||||||
!pointerDownState.boxSelection.hasOccurred &&
|
!pointerDownState.boxSelection.hasOccurred &&
|
||||||
pointerDownState.hit?.element?.id !==
|
pointerDownState.hit?.element?.id !==
|
||||||
this.state.selectedLinearElement.elementId
|
this.state.selectedLinearElement.elementId &&
|
||||||
|
this.state.selectedLinearElement.draggedFocusPointBinding === null
|
||||||
) {
|
) {
|
||||||
this.actionManager.executeAction(actionFinalize);
|
this.actionManager.executeAction(actionFinalize);
|
||||||
} else {
|
} else {
|
||||||
@@ -9900,7 +10110,18 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (this.state.selectedLinearElement.draggedFocusPointBinding) {
|
||||||
|
handleFocusPointPointerUp(
|
||||||
|
this.state.selectedLinearElement,
|
||||||
|
this.scene,
|
||||||
|
);
|
||||||
|
this.setState({
|
||||||
|
selectedLinearElement: {
|
||||||
|
...this.state.selectedLinearElement,
|
||||||
|
draggedFocusPointBinding: null,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} else if (
|
||||||
pointerDownState.hit?.element?.id !==
|
pointerDownState.hit?.element?.id !==
|
||||||
this.state.selectedLinearElement.elementId
|
this.state.selectedLinearElement.elementId
|
||||||
) {
|
) {
|
||||||
@@ -9910,6 +10131,12 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
this.setState({ selectedLinearElement: null });
|
this.setState({ selectedLinearElement: null });
|
||||||
}
|
}
|
||||||
} else if (this.state.selectedLinearElement.isDragging) {
|
} else if (this.state.selectedLinearElement.isDragging) {
|
||||||
|
this.setState({
|
||||||
|
selectedLinearElement: {
|
||||||
|
...this.state.selectedLinearElement,
|
||||||
|
isDragging: false,
|
||||||
|
},
|
||||||
|
});
|
||||||
this.actionManager.executeAction(actionFinalize, "ui", {
|
this.actionManager.executeAction(actionFinalize, "ui", {
|
||||||
event: childEvent,
|
event: childEvent,
|
||||||
sceneCoords,
|
sceneCoords,
|
||||||
@@ -10684,25 +10911,6 @@ class App extends React.Component<AppProps, AppState> {
|
|||||||
suggestedBinding: null,
|
suggestedBinding: null,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
|
||||||
hitElement &&
|
|
||||||
this.lastPointerUpEvent &&
|
|
||||||
this.lastPointerDownEvent &&
|
|
||||||
this.lastPointerUpEvent.timeStamp -
|
|
||||||
this.lastPointerDownEvent.timeStamp <
|
|
||||||
300 &&
|
|
||||||
gesture.pointers.size <= 1 &&
|
|
||||||
isIframeLikeElement(hitElement) &&
|
|
||||||
this.isIframeLikeElementCenter(
|
|
||||||
hitElement,
|
|
||||||
this.lastPointerUpEvent,
|
|
||||||
pointerDownState.origin.x,
|
|
||||||
pointerDownState.origin.y,
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
this.handleEmbeddableCenterClick(hitElement);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as Popover from "@radix-ui/react-popover";
|
import { Popover } from "radix-ui";
|
||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
import { useRef, useEffect } from "react";
|
import { useRef, useEffect } from "react";
|
||||||
|
|
||||||
|
|||||||
@@ -53,6 +53,7 @@
|
|||||||
&.ExcButton--status-loading,
|
&.ExcButton--status-loading,
|
||||||
&.ExcButton--status-success {
|
&.ExcButton--status-success {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
background-color: var(--color-success);
|
||||||
|
|
||||||
.ExcButton__contents {
|
.ExcButton__contents {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
|
|||||||
@@ -0,0 +1,31 @@
|
|||||||
|
import { KEYS } from "@excalidraw/common";
|
||||||
|
|
||||||
|
import { Excalidraw } from "../..";
|
||||||
|
import { Keyboard } from "../../tests/helpers/ui";
|
||||||
|
import { act, render } from "../../tests/test-utils";
|
||||||
|
|
||||||
|
describe("FontPicker", () => {
|
||||||
|
it("should be able to open font picker", async () => {
|
||||||
|
(global as any).ResizeObserver =
|
||||||
|
(global as any).ResizeObserver ||
|
||||||
|
class ResizeObserver {
|
||||||
|
observe() {}
|
||||||
|
unobserve() {}
|
||||||
|
disconnect() {}
|
||||||
|
};
|
||||||
|
|
||||||
|
const { queryByTestId } = await render(
|
||||||
|
<Excalidraw handleKeyboardGlobally={true} />,
|
||||||
|
);
|
||||||
|
|
||||||
|
Keyboard.keyPress(KEYS.T);
|
||||||
|
|
||||||
|
const fontPickerTrigger = queryByTestId("font-family-show-fonts");
|
||||||
|
|
||||||
|
expect(fontPickerTrigger).not.toBeNull();
|
||||||
|
|
||||||
|
act(() => {
|
||||||
|
fontPickerTrigger!.click();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as Popover from "@radix-ui/react-popover";
|
import { Popover } from "radix-ui";
|
||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
import React, { useCallback, useMemo } from "react";
|
import React, { useCallback, useMemo } from "react";
|
||||||
|
|
||||||
|
|||||||
@@ -30,10 +30,12 @@ import { PropertiesPopover } from "../PropertiesPopover";
|
|||||||
import { QuickSearch } from "../QuickSearch";
|
import { QuickSearch } from "../QuickSearch";
|
||||||
import { ScrollableList } from "../ScrollableList";
|
import { ScrollableList } from "../ScrollableList";
|
||||||
import DropdownMenuGroup from "../dropdownMenu/DropdownMenuGroup";
|
import DropdownMenuGroup from "../dropdownMenu/DropdownMenuGroup";
|
||||||
import DropdownMenuItem, {
|
import {
|
||||||
DropDownMenuItemBadgeType,
|
DropDownMenuItemBadgeType,
|
||||||
DropDownMenuItemBadge,
|
DropDownMenuItemBadge,
|
||||||
} from "../dropdownMenu/DropdownMenuItem";
|
} from "../dropdownMenu/DropdownMenuItem";
|
||||||
|
import MenuItemContent from "../dropdownMenu/DropdownMenuItemContent";
|
||||||
|
import { getDropdownMenuItemClassName } from "../dropdownMenu/common";
|
||||||
import {
|
import {
|
||||||
FontFamilyCodeIcon,
|
FontFamilyCodeIcon,
|
||||||
FontFamilyHeadingIcon,
|
FontFamilyHeadingIcon,
|
||||||
@@ -269,45 +271,74 @@ export const FontPickerList = React.memo(
|
|||||||
[filteredFonts, sceneFamilies],
|
[filteredFonts, sceneFamilies],
|
||||||
);
|
);
|
||||||
|
|
||||||
const renderFont = (font: FontDescriptor, index: number) => (
|
const FontPickerListItem = ({
|
||||||
<DropdownMenuItem
|
font,
|
||||||
key={font.value}
|
order,
|
||||||
icon={font.icon}
|
}: {
|
||||||
value={font.value}
|
font: FontDescriptor;
|
||||||
order={index}
|
order: number;
|
||||||
textStyle={{
|
}) => {
|
||||||
fontFamily: getFontFamilyString({ fontFamily: font.value }),
|
const ref = useRef<HTMLButtonElement>(null);
|
||||||
}}
|
const isHovered = font.value === hoveredFont?.value;
|
||||||
hovered={font.value === hoveredFont?.value}
|
const isSelected = font.value === selectedFontFamily;
|
||||||
selected={font.value === selectedFontFamily}
|
|
||||||
// allow to tab between search and selected font
|
useEffect(() => {
|
||||||
tabIndex={font.value === selectedFontFamily ? 0 : -1}
|
if (!isHovered) {
|
||||||
onClick={(e) => {
|
return;
|
||||||
wrappedOnSelect(Number(e.currentTarget.value));
|
|
||||||
}}
|
|
||||||
onMouseMove={() => {
|
|
||||||
if (hoveredFont?.value !== font.value) {
|
|
||||||
onHover(font.value);
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
badge={
|
|
||||||
font.badge && (
|
|
||||||
<DropDownMenuItemBadge type={font.badge.type}>
|
|
||||||
{font.badge.placeholder}
|
|
||||||
</DropDownMenuItemBadge>
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
>
|
if (order === 0) {
|
||||||
{font.text}
|
// scroll into the first item differently, so it's visible what is above (i.e. group title)
|
||||||
</DropdownMenuItem>
|
ref.current?.scrollIntoView?.({ block: "end" });
|
||||||
);
|
} else {
|
||||||
|
ref.current?.scrollIntoView?.({ block: "nearest" });
|
||||||
|
}
|
||||||
|
}, [isHovered, order]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
ref={ref}
|
||||||
|
type="button"
|
||||||
|
value={font.value}
|
||||||
|
className={getDropdownMenuItemClassName("", isSelected, isHovered)}
|
||||||
|
title={font.text}
|
||||||
|
// allow to tab between search and selected font
|
||||||
|
tabIndex={isSelected ? 0 : -1}
|
||||||
|
onClick={(e) => {
|
||||||
|
wrappedOnSelect(Number(e.currentTarget.value));
|
||||||
|
}}
|
||||||
|
onMouseMove={() => {
|
||||||
|
if (hoveredFont?.value !== font.value) {
|
||||||
|
onHover(font.value);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<MenuItemContent
|
||||||
|
icon={font.icon}
|
||||||
|
badge={
|
||||||
|
font.badge && (
|
||||||
|
<DropDownMenuItemBadge type={font.badge.type}>
|
||||||
|
{font.badge.placeholder}
|
||||||
|
</DropDownMenuItemBadge>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
textStyle={{
|
||||||
|
fontFamily: getFontFamilyString({ fontFamily: font.value }),
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{font.text}
|
||||||
|
</MenuItemContent>
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
const groups = [];
|
const groups = [];
|
||||||
|
|
||||||
if (sceneFilteredFonts.length) {
|
if (sceneFilteredFonts.length) {
|
||||||
groups.push(
|
groups.push(
|
||||||
<DropdownMenuGroup title={t("fontList.sceneFonts")} key="group_1">
|
<DropdownMenuGroup title={t("fontList.sceneFonts")} key="group_1">
|
||||||
{sceneFilteredFonts.map(renderFont)}
|
{sceneFilteredFonts.map((font, index) => (
|
||||||
|
<FontPickerListItem key={font.value} font={font} order={index} />
|
||||||
|
))}
|
||||||
</DropdownMenuGroup>,
|
</DropdownMenuGroup>,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -315,9 +346,13 @@ export const FontPickerList = React.memo(
|
|||||||
if (availableFilteredFonts.length) {
|
if (availableFilteredFonts.length) {
|
||||||
groups.push(
|
groups.push(
|
||||||
<DropdownMenuGroup title={t("fontList.availableFonts")} key="group_2">
|
<DropdownMenuGroup title={t("fontList.availableFonts")} key="group_2">
|
||||||
{availableFilteredFonts.map((font, index) =>
|
{availableFilteredFonts.map((font, index) => (
|
||||||
renderFont(font, index + sceneFilteredFonts.length),
|
<FontPickerListItem
|
||||||
)}
|
key={font.value}
|
||||||
|
font={font}
|
||||||
|
order={index + sceneFilteredFonts.length}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
</DropdownMenuGroup>,
|
</DropdownMenuGroup>,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as Popover from "@radix-ui/react-popover";
|
import { Popover } from "radix-ui";
|
||||||
|
|
||||||
import { MOBILE_ACTION_BUTTON_BG } from "@excalidraw/common";
|
import { MOBILE_ACTION_BUTTON_BG } from "@excalidraw/common";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as Popover from "@radix-ui/react-popover";
|
import { Popover } from "radix-ui";
|
||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
import React, { useEffect } from "react";
|
import React, { useEffect } from "react";
|
||||||
|
|
||||||
|
|||||||
@@ -126,9 +126,10 @@
|
|||||||
|
|
||||||
.dropdown-menu-container {
|
.dropdown-menu-container {
|
||||||
width: 196px;
|
width: 196px;
|
||||||
box-shadow: var(--library-dropdown-shadow);
|
|
||||||
border-radius: var(--border-radius-lg);
|
border-radius: var(--border-radius-lg);
|
||||||
padding: 0.25rem 0.5rem;
|
padding: 0.25rem 0.5rem;
|
||||||
|
|
||||||
|
--box-shadow: var(--library-dropdown-shadow);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -375,7 +375,7 @@ export const MobileToolBar = ({
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
{/* Other Shapes */}
|
{/* Other Shapes */}
|
||||||
<DropdownMenu open={isOtherShapesMenuOpen} placement="top">
|
<DropdownMenu open={isOtherShapesMenuOpen}>
|
||||||
<DropdownMenu.Trigger
|
<DropdownMenu.Trigger
|
||||||
className={clsx(
|
className={clsx(
|
||||||
"App-toolbar__extra-tools-trigger App-toolbar__extra-tools-trigger--mobile",
|
"App-toolbar__extra-tools-trigger App-toolbar__extra-tools-trigger--mobile",
|
||||||
@@ -403,6 +403,7 @@ export const MobileToolBar = ({
|
|||||||
onClickOutside={() => setIsOtherShapesMenuOpen(false)}
|
onClickOutside={() => setIsOtherShapesMenuOpen(false)}
|
||||||
onSelect={() => setIsOtherShapesMenuOpen(false)}
|
onSelect={() => setIsOtherShapesMenuOpen(false)}
|
||||||
className="App-toolbar__extra-tools-dropdown"
|
className="App-toolbar__extra-tools-dropdown"
|
||||||
|
align="start"
|
||||||
>
|
>
|
||||||
{!showTextToolOutside && (
|
{!showTextToolOutside && (
|
||||||
<DropdownMenu.Item
|
<DropdownMenu.Item
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as Popover from "@radix-ui/react-popover";
|
import { Popover } from "radix-ui";
|
||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
import React, { type ReactNode } from "react";
|
import React, { type ReactNode } from "react";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as RadixTabs from "@radix-ui/react-tabs";
|
import { Tabs as RadixTabs } from "radix-ui";
|
||||||
|
|
||||||
import type { SidebarTabName } from "../../types";
|
import type { SidebarTabName } from "../../types";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as RadixTabs from "@radix-ui/react-tabs";
|
import { Tabs as RadixTabs } from "radix-ui";
|
||||||
|
|
||||||
import type { SidebarTabName } from "../../types";
|
import type { SidebarTabName } from "../../types";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as RadixTabs from "@radix-ui/react-tabs";
|
import { Tabs as RadixTabs } from "radix-ui";
|
||||||
|
|
||||||
export const SidebarTabTriggers = ({
|
export const SidebarTabTriggers = ({
|
||||||
children,
|
children,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as RadixTabs from "@radix-ui/react-tabs";
|
import { Tabs as RadixTabs } from "radix-ui";
|
||||||
|
|
||||||
import { useUIAppState } from "../../context/ui-appState";
|
import { useUIAppState } from "../../context/ui-appState";
|
||||||
import { useExcalidrawSetAppState } from "../App";
|
import { useExcalidrawSetAppState } from "../App";
|
||||||
|
|||||||
@@ -135,7 +135,7 @@ describe("binding with linear elements", () => {
|
|||||||
) as HTMLInputElement;
|
) as HTMLInputElement;
|
||||||
expect(linear.startBinding).not.toBe(null);
|
expect(linear.startBinding).not.toBe(null);
|
||||||
expect(inputX).not.toBeNull();
|
expect(inputX).not.toBeNull();
|
||||||
UI.updateInput(inputX, String("186"));
|
UI.updateInput(inputX, String("184"));
|
||||||
expect(linear.startBinding).not.toBe(null);
|
expect(linear.startBinding).not.toBe(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
@import "../../../css/variables.module.scss";
|
@use "../../../css/variables.module.scss" as *;
|
||||||
|
|
||||||
$verticalBreakpoint: 861px;
|
$verticalBreakpoint: 861px;
|
||||||
|
|
||||||
@@ -48,14 +48,14 @@ $verticalBreakpoint: 861px;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__empty-state {
|
&__welcome-screen {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 200px;
|
min-height: 200px;
|
||||||
|
|
||||||
&-content {
|
&__welcome-message {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
|
|||||||
@@ -52,11 +52,7 @@ export const ChatHistoryMenu = ({
|
|||||||
>
|
>
|
||||||
{historyIcon}
|
{historyIcon}
|
||||||
</DropdownMenu.Trigger>
|
</DropdownMenu.Trigger>
|
||||||
<DropdownMenu.Content
|
<DropdownMenu.Content onClickOutside={onClose} onSelect={onClose}>
|
||||||
onClickOutside={onClose}
|
|
||||||
onSelect={onClose}
|
|
||||||
placement="bottom"
|
|
||||||
>
|
|
||||||
<>
|
<>
|
||||||
{savedChats.map((chat) => (
|
{savedChats.map((chat) => (
|
||||||
<DropdownMenu.ItemCustom
|
<DropdownMenu.ItemCustom
|
||||||
|
|||||||
@@ -6,6 +6,8 @@ import { InlineIcon } from "../../InlineIcon";
|
|||||||
|
|
||||||
import { t } from "../../../i18n";
|
import { t } from "../../../i18n";
|
||||||
|
|
||||||
|
import { TTDWelcomeMessage } from "../TTDWelcomeMessage";
|
||||||
|
|
||||||
import { ChatMessage } from "./ChatMessage";
|
import { ChatMessage } from "./ChatMessage";
|
||||||
|
|
||||||
import type { TChat, TTTDDialog } from "../types";
|
import type { TChat, TTTDDialog } from "../types";
|
||||||
@@ -20,13 +22,13 @@ export const ChatInterface = ({
|
|||||||
onGenerate,
|
onGenerate,
|
||||||
isGenerating,
|
isGenerating,
|
||||||
rateLimits,
|
rateLimits,
|
||||||
placeholder,
|
|
||||||
onAbort,
|
onAbort,
|
||||||
onMermaidTabClick,
|
onMermaidTabClick,
|
||||||
onAiRepairClick,
|
onAiRepairClick,
|
||||||
onDeleteMessage,
|
onDeleteMessage,
|
||||||
onInsertMessage,
|
onInsertMessage,
|
||||||
onRetry,
|
onRetry,
|
||||||
|
renderWelcomeScreen,
|
||||||
renderWarning,
|
renderWarning,
|
||||||
}: {
|
}: {
|
||||||
chatId: string;
|
chatId: string;
|
||||||
@@ -41,17 +43,13 @@ export const ChatInterface = ({
|
|||||||
} | null;
|
} | null;
|
||||||
onViewAsMermaid?: () => void;
|
onViewAsMermaid?: () => void;
|
||||||
generatedResponse?: string | null;
|
generatedResponse?: string | null;
|
||||||
placeholder: {
|
|
||||||
title: string;
|
|
||||||
description: string;
|
|
||||||
hint: string;
|
|
||||||
};
|
|
||||||
onAbort?: () => void;
|
onAbort?: () => void;
|
||||||
onMermaidTabClick?: (message: TChat.ChatMessage) => void;
|
onMermaidTabClick?: (message: TChat.ChatMessage) => void;
|
||||||
onAiRepairClick?: (message: TChat.ChatMessage) => void;
|
onAiRepairClick?: (message: TChat.ChatMessage) => void;
|
||||||
onDeleteMessage?: (messageId: string) => void;
|
onDeleteMessage?: (messageId: string) => void;
|
||||||
onInsertMessage?: (message: TChat.ChatMessage) => void;
|
onInsertMessage?: (message: TChat.ChatMessage) => void;
|
||||||
onRetry?: (message: TChat.ChatMessage) => void;
|
onRetry?: (message: TChat.ChatMessage) => void;
|
||||||
|
renderWelcomeScreen?: TTTDDialog.renderWelcomeScreen;
|
||||||
renderWarning?: TTTDDialog.renderWarning;
|
renderWarning?: TTTDDialog.renderWarning;
|
||||||
}) => {
|
}) => {
|
||||||
const messagesEndRef = useRef<HTMLDivElement>(null);
|
const messagesEndRef = useRef<HTMLDivElement>(null);
|
||||||
@@ -113,12 +111,12 @@ export const ChatInterface = ({
|
|||||||
<div className="chat-interface">
|
<div className="chat-interface">
|
||||||
<div className="chat-interface__messages">
|
<div className="chat-interface__messages">
|
||||||
{messages.length === 0 ? (
|
{messages.length === 0 ? (
|
||||||
<div className="chat-interface__empty-state">
|
<div className="chat-interface__welcome-screen">
|
||||||
<div className="chat-interface__empty-state-content">
|
{renderWelcomeScreen ? (
|
||||||
<h3>{placeholder.title}</h3>
|
renderWelcomeScreen({ rateLimits: rateLimits ?? null })
|
||||||
<p>{placeholder.description}</p>
|
) : (
|
||||||
<p>{placeholder.hint}</p>
|
<TTDWelcomeMessage />
|
||||||
</div>
|
)}
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
messages.map((message, index) => (
|
messages.map((message, index) => (
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ export const TTDChatPanel = ({
|
|||||||
onInsertMessage,
|
onInsertMessage,
|
||||||
onRetry,
|
onRetry,
|
||||||
onViewAsMermaid,
|
onViewAsMermaid,
|
||||||
|
renderWelcomeScreen,
|
||||||
renderWarning,
|
renderWarning,
|
||||||
}: {
|
}: {
|
||||||
chatId: string;
|
chatId: string;
|
||||||
@@ -68,6 +69,7 @@ export const TTDChatPanel = ({
|
|||||||
|
|
||||||
onViewAsMermaid: () => void;
|
onViewAsMermaid: () => void;
|
||||||
|
|
||||||
|
renderWelcomeScreen?: TTTDDialog.renderWelcomeScreen;
|
||||||
renderWarning?: TTTDDialog.renderWarning;
|
renderWarning?: TTTDDialog.renderWarning;
|
||||||
}) => {
|
}) => {
|
||||||
const [rateLimits] = useAtom(rateLimitsAtom);
|
const [rateLimits] = useAtom(rateLimitsAtom);
|
||||||
@@ -151,11 +153,7 @@ export const TTDChatPanel = ({
|
|||||||
onInsertMessage={onInsertMessage}
|
onInsertMessage={onInsertMessage}
|
||||||
onRetry={onRetry}
|
onRetry={onRetry}
|
||||||
rateLimits={rateLimits}
|
rateLimits={rateLimits}
|
||||||
placeholder={{
|
renderWelcomeScreen={renderWelcomeScreen}
|
||||||
title: t("chat.placeholder.title"),
|
|
||||||
description: t("chat.placeholder.description"),
|
|
||||||
hint: t("chat.placeholder.hint"),
|
|
||||||
}}
|
|
||||||
renderWarning={renderWarning}
|
renderWarning={renderWarning}
|
||||||
/>
|
/>
|
||||||
</TTDDialogPanel>
|
</TTDDialogPanel>
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ import { TTDDialogTab } from "./TTDDialogTab";
|
|||||||
|
|
||||||
import "./TTDDialog.scss";
|
import "./TTDDialog.scss";
|
||||||
|
|
||||||
|
import { TTDWelcomeMessage } from "./TTDWelcomeMessage";
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
MermaidToExcalidrawLibProps,
|
MermaidToExcalidrawLibProps,
|
||||||
TTDPersistenceAdapter,
|
TTDPersistenceAdapter,
|
||||||
@@ -25,6 +27,7 @@ export const TTDDialog = (
|
|||||||
props:
|
props:
|
||||||
| {
|
| {
|
||||||
onTextSubmit: TTTDDialog.onTextSubmit;
|
onTextSubmit: TTTDDialog.onTextSubmit;
|
||||||
|
renderWelcomeScreen?: TTTDDialog.renderWelcomeScreen;
|
||||||
renderWarning?: TTTDDialog.renderWarning;
|
renderWarning?: TTTDDialog.renderWarning;
|
||||||
persistenceAdapter: TTDPersistenceAdapter;
|
persistenceAdapter: TTDPersistenceAdapter;
|
||||||
}
|
}
|
||||||
@@ -39,6 +42,8 @@ export const TTDDialog = (
|
|||||||
return <TTDDialogBase {...props} tab={appState.openDialog.tab} />;
|
return <TTDDialogBase {...props} tab={appState.openDialog.tab} />;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
TTDDialog.WelcomeMessage = TTDWelcomeMessage;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Text to diagram (TTD) dialog
|
* Text to diagram (TTD) dialog
|
||||||
*/
|
*/
|
||||||
@@ -54,6 +59,7 @@ const TTDDialogBase = withInternalFallback(
|
|||||||
onTextSubmit(
|
onTextSubmit(
|
||||||
props: TTTDDialog.OnTextSubmitProps,
|
props: TTTDDialog.OnTextSubmitProps,
|
||||||
): Promise<TTTDDialog.OnTextSubmitRetValue>;
|
): Promise<TTTDDialog.OnTextSubmitRetValue>;
|
||||||
|
renderWelcomeScreen?: TTTDDialog.renderWelcomeScreen;
|
||||||
renderWarning?: TTTDDialog.renderWarning;
|
renderWarning?: TTTDDialog.renderWarning;
|
||||||
persistenceAdapter: TTDPersistenceAdapter;
|
persistenceAdapter: TTDPersistenceAdapter;
|
||||||
}
|
}
|
||||||
@@ -110,6 +116,7 @@ const TTDDialogBase = withInternalFallback(
|
|||||||
<TextToDiagram
|
<TextToDiagram
|
||||||
mermaidToExcalidrawLib={mermaidToExcalidrawLib}
|
mermaidToExcalidrawLib={mermaidToExcalidrawLib}
|
||||||
onTextSubmit={rest.onTextSubmit}
|
onTextSubmit={rest.onTextSubmit}
|
||||||
|
renderWelcomeScreen={rest.renderWelcomeScreen}
|
||||||
renderWarning={rest.renderWarning}
|
renderWarning={rest.renderWarning}
|
||||||
persistenceAdapter={rest.persistenceAdapter}
|
persistenceAdapter={rest.persistenceAdapter}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as RadixTabs from "@radix-ui/react-tabs";
|
import { Tabs as RadixTabs } from "radix-ui";
|
||||||
|
|
||||||
export const TTDDialogTab = ({
|
export const TTDDialogTab = ({
|
||||||
tab,
|
tab,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as RadixTabs from "@radix-ui/react-tabs";
|
import { Tabs as RadixTabs } from "radix-ui";
|
||||||
|
|
||||||
export const TTDDialogTabTrigger = ({
|
export const TTDDialogTabTrigger = ({
|
||||||
children,
|
children,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as RadixTabs from "@radix-ui/react-tabs";
|
import { Tabs as RadixTabs } from "radix-ui";
|
||||||
|
|
||||||
export const TTDDialogTabTriggers = ({
|
export const TTDDialogTabTriggers = ({
|
||||||
children,
|
children,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as RadixTabs from "@radix-ui/react-tabs";
|
import { Tabs as RadixTabs } from "radix-ui";
|
||||||
import { useRef } from "react";
|
import { useRef } from "react";
|
||||||
|
|
||||||
import { isMemberOf } from "@excalidraw/common";
|
import { isMemberOf } from "@excalidraw/common";
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
import { t } from "../../i18n";
|
||||||
|
|
||||||
|
export const TTDWelcomeMessage = () => {
|
||||||
|
return (
|
||||||
|
<div className="chat-interface__welcome-screen__welcome-message">
|
||||||
|
<h3>{t("chat.placeholder.title")}</h3>
|
||||||
|
<p>{t("chat.placeholder.description")}</p>
|
||||||
|
<p>{t("chat.placeholder.hint")}</p>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -35,6 +35,7 @@ import type {
|
|||||||
const TextToDiagramContent = ({
|
const TextToDiagramContent = ({
|
||||||
mermaidToExcalidrawLib,
|
mermaidToExcalidrawLib,
|
||||||
onTextSubmit,
|
onTextSubmit,
|
||||||
|
renderWelcomeScreen,
|
||||||
renderWarning,
|
renderWarning,
|
||||||
persistenceAdapter,
|
persistenceAdapter,
|
||||||
}: {
|
}: {
|
||||||
@@ -42,6 +43,7 @@ const TextToDiagramContent = ({
|
|||||||
onTextSubmit: (
|
onTextSubmit: (
|
||||||
props: TTTDDialog.OnTextSubmitProps,
|
props: TTTDDialog.OnTextSubmitProps,
|
||||||
) => Promise<TTTDDialog.OnTextSubmitRetValue>;
|
) => Promise<TTTDDialog.OnTextSubmitRetValue>;
|
||||||
|
renderWelcomeScreen?: TTTDDialog.renderWelcomeScreen;
|
||||||
renderWarning?: TTTDDialog.renderWarning;
|
renderWarning?: TTTDDialog.renderWarning;
|
||||||
persistenceAdapter: TTDPersistenceAdapter;
|
persistenceAdapter: TTDPersistenceAdapter;
|
||||||
}) => {
|
}) => {
|
||||||
@@ -220,6 +222,7 @@ const TextToDiagramContent = ({
|
|||||||
onRetry={handleRetry}
|
onRetry={handleRetry}
|
||||||
onViewAsMermaid={onViewAsMermaid}
|
onViewAsMermaid={onViewAsMermaid}
|
||||||
renderWarning={renderWarning}
|
renderWarning={renderWarning}
|
||||||
|
renderWelcomeScreen={renderWelcomeScreen}
|
||||||
/>
|
/>
|
||||||
{showPreview && (
|
{showPreview && (
|
||||||
<TTDPreviewPanel
|
<TTDPreviewPanel
|
||||||
@@ -237,6 +240,7 @@ const TextToDiagramContent = ({
|
|||||||
export const TextToDiagram = ({
|
export const TextToDiagram = ({
|
||||||
mermaidToExcalidrawLib,
|
mermaidToExcalidrawLib,
|
||||||
onTextSubmit,
|
onTextSubmit,
|
||||||
|
renderWelcomeScreen,
|
||||||
renderWarning,
|
renderWarning,
|
||||||
persistenceAdapter,
|
persistenceAdapter,
|
||||||
}: {
|
}: {
|
||||||
@@ -244,6 +248,7 @@ export const TextToDiagram = ({
|
|||||||
onTextSubmit(
|
onTextSubmit(
|
||||||
props: TTTDDialog.OnTextSubmitProps,
|
props: TTTDDialog.OnTextSubmitProps,
|
||||||
): Promise<TTTDDialog.OnTextSubmitRetValue>;
|
): Promise<TTTDDialog.OnTextSubmitRetValue>;
|
||||||
|
renderWelcomeScreen?: TTTDDialog.renderWelcomeScreen;
|
||||||
renderWarning?: TTTDDialog.renderWarning;
|
renderWarning?: TTTDDialog.renderWarning;
|
||||||
persistenceAdapter: TTDPersistenceAdapter;
|
persistenceAdapter: TTDPersistenceAdapter;
|
||||||
}) => {
|
}) => {
|
||||||
@@ -251,6 +256,7 @@ export const TextToDiagram = ({
|
|||||||
<TextToDiagramContent
|
<TextToDiagramContent
|
||||||
mermaidToExcalidrawLib={mermaidToExcalidrawLib}
|
mermaidToExcalidrawLib={mermaidToExcalidrawLib}
|
||||||
onTextSubmit={onTextSubmit}
|
onTextSubmit={onTextSubmit}
|
||||||
|
renderWelcomeScreen={renderWelcomeScreen}
|
||||||
renderWarning={renderWarning}
|
renderWarning={renderWarning}
|
||||||
persistenceAdapter={persistenceAdapter}
|
persistenceAdapter={persistenceAdapter}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -116,4 +116,9 @@ export namespace TTTDDialog {
|
|||||||
export type renderWarning = (
|
export type renderWarning = (
|
||||||
chatMessage: TChat.ChatMessage,
|
chatMessage: TChat.ChatMessage,
|
||||||
) => React.ReactNode | undefined;
|
) => React.ReactNode | undefined;
|
||||||
|
|
||||||
|
export type renderWelcomeScreen = (props: {
|
||||||
|
/** null if not rate limit data currently available */
|
||||||
|
rateLimits: RateLimits | null;
|
||||||
|
}) => React.ReactNode | undefined;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import clsx from "clsx";
|
|||||||
|
|
||||||
import { capitalizeString } from "@excalidraw/common";
|
import { capitalizeString } from "@excalidraw/common";
|
||||||
|
|
||||||
import * as Popover from "@radix-ui/react-popover";
|
import { Popover } from "radix-ui";
|
||||||
|
|
||||||
import { trackEvent } from "../analytics";
|
import { trackEvent } from "../analytics";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import * as Popover from "@radix-ui/react-popover";
|
import { Popover } from "radix-ui";
|
||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
import React, { useLayoutEffect } from "react";
|
import React, { useLayoutEffect } from "react";
|
||||||
|
|
||||||
|
|||||||
@@ -2,24 +2,35 @@
|
|||||||
|
|
||||||
.excalidraw {
|
.excalidraw {
|
||||||
.dropdown-menu {
|
.dropdown-menu {
|
||||||
position: absolute;
|
|
||||||
top: 2.5rem;
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
max-width: 16rem;
|
max-width: 16rem;
|
||||||
|
z-index: 1;
|
||||||
|
|
||||||
&--placement-top {
|
&--placement-top {
|
||||||
top: auto;
|
|
||||||
bottom: 100%;
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__submenu-trigger {
|
||||||
|
&[aria-expanded="true"] {
|
||||||
|
.dropdown-menu-item {
|
||||||
|
background-color: var(--button-hover-bg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__submenu-trigger-icon {
|
||||||
|
margin-left: auto;
|
||||||
|
opacity: 0.5;
|
||||||
|
svg g {
|
||||||
|
stroke-width: 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&--mobile {
|
&--mobile {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
row-gap: 0.75rem;
|
row-gap: 0.75rem;
|
||||||
|
|
||||||
// When main menu is in the top toolbar, position relative to trigger
|
// When main menu is in the top toolbar, position relative to trigger
|
||||||
&.main-menu-dropdown {
|
&.main-menu {
|
||||||
min-width: 232px;
|
min-width: 232px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
@@ -32,10 +43,6 @@
|
|||||||
.dropdown-menu-container {
|
.dropdown-menu-container {
|
||||||
padding: 8px 8px;
|
padding: 8px 8px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
max-height: calc(
|
|
||||||
100svh - var(--editor-container-padding) * 2 - 2.25rem
|
|
||||||
);
|
|
||||||
box-shadow: var(--shadow-island);
|
|
||||||
border-radius: var(--border-radius-lg);
|
border-radius: var(--border-radius-lg);
|
||||||
position: relative;
|
position: relative;
|
||||||
transition: box-shadow 0.5s ease-in-out;
|
transition: box-shadow 0.5s ease-in-out;
|
||||||
@@ -51,14 +58,25 @@
|
|||||||
|
|
||||||
.dropdown-menu-container {
|
.dropdown-menu-container {
|
||||||
background-color: var(--island-bg-color);
|
background-color: var(--island-bg-color);
|
||||||
|
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
--gap: 2;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1px;
|
||||||
|
|
||||||
|
box-shadow: var(--box-shadow, var(--shadow-island));
|
||||||
|
|
||||||
|
max-height: calc(100svh - var(--editor-container-padding) * 2 - 2.25rem);
|
||||||
|
|
||||||
|
@at-root .excalidraw.theme--dark#{&} {
|
||||||
|
box-shadow: var(--box-shadow, var(--shadow-island)),
|
||||||
|
0 0 0 1px rgba(0, 0, 0, 0.15);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropdown-menu-item-base {
|
.dropdown-menu-item-base {
|
||||||
display: flex;
|
display: flex;
|
||||||
column-gap: 0.625rem;
|
column-gap: 0.625rem;
|
||||||
|
padding: 0 0.5rem;
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
color: var(--color-on-surface);
|
color: var(--color-on-surface);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@@ -115,11 +133,9 @@
|
|||||||
|
|
||||||
.dropdown-menu-item {
|
.dropdown-menu-item {
|
||||||
height: 2rem;
|
height: 2rem;
|
||||||
margin: 1px;
|
|
||||||
padding: 0 0.5rem;
|
padding: 0 0.5rem;
|
||||||
width: calc(100% - 2px);
|
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: 1px solid transparent;
|
border: none;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: var(--border-radius-md);
|
border-radius: var(--border-radius-md);
|
||||||
@@ -162,7 +178,7 @@
|
|||||||
|
|
||||||
&:active {
|
&:active {
|
||||||
background-color: var(--button-hover-bg);
|
background-color: var(--button-hover-bg);
|
||||||
border-color: var(--color-brand-active);
|
box-shadow: 0 0 0 1px var(--color-brand-active);
|
||||||
}
|
}
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
@@ -223,7 +239,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&:active {
|
&:active {
|
||||||
border-color: var(--color-primary);
|
box-shadow: 0 0 0 1px var(--color-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
&[disabled] {
|
&[disabled] {
|
||||||
@@ -235,7 +251,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&:active {
|
&:active {
|
||||||
border-color: transparent;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@at-root .excalidraw.theme--dark#{&} {
|
@at-root .excalidraw.theme--dark#{&} {
|
||||||
|
|||||||
@@ -1,12 +1,18 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
|
import { DropdownMenu as DropdownMenuPrimitive } from "radix-ui";
|
||||||
|
|
||||||
|
import { CLASSES } from "@excalidraw/common";
|
||||||
|
|
||||||
import DropdownMenuContent from "./DropdownMenuContent";
|
import DropdownMenuContent from "./DropdownMenuContent";
|
||||||
import DropdownMenuGroup from "./DropdownMenuGroup";
|
import DropdownMenuGroup from "./DropdownMenuGroup";
|
||||||
import DropdownMenuItem from "./DropdownMenuItem";
|
import DropdownMenuItem from "./DropdownMenuItem";
|
||||||
import DropdownMenuItemCustom from "./DropdownMenuItemCustom";
|
import DropdownMenuItemCustom from "./DropdownMenuItemCustom";
|
||||||
import DropdownMenuItemLink from "./DropdownMenuItemLink";
|
import DropdownMenuItemLink from "./DropdownMenuItemLink";
|
||||||
import MenuSeparator from "./DropdownMenuSeparator";
|
import MenuSeparator from "./DropdownMenuSeparator";
|
||||||
|
import DropdownMenuSub from "./DropdownMenuSub";
|
||||||
import DropdownMenuTrigger from "./DropdownMenuTrigger";
|
import DropdownMenuTrigger from "./DropdownMenuTrigger";
|
||||||
|
import DropdownMenuItemCheckbox from "./DropdownMenuItemCheckbox";
|
||||||
import {
|
import {
|
||||||
getMenuContentComponent,
|
getMenuContentComponent,
|
||||||
getMenuTriggerComponent,
|
getMenuTriggerComponent,
|
||||||
@@ -17,44 +23,47 @@ import "./DropdownMenu.scss";
|
|||||||
const DropdownMenu = ({
|
const DropdownMenu = ({
|
||||||
children,
|
children,
|
||||||
open,
|
open,
|
||||||
placement,
|
|
||||||
}: {
|
}: {
|
||||||
children?: React.ReactNode;
|
children?: React.ReactNode;
|
||||||
open: boolean;
|
open: boolean;
|
||||||
placement?: "top" | "bottom";
|
|
||||||
}) => {
|
}) => {
|
||||||
const MenuTriggerComp = getMenuTriggerComponent(children);
|
const MenuTriggerComp = getMenuTriggerComponent(children);
|
||||||
const MenuContentComp = getMenuContentComponent(children);
|
const MenuContentComp = getMenuContentComponent(children);
|
||||||
|
const MenuContentWithState =
|
||||||
// clone the MenuContentComp to pass the placement prop
|
|
||||||
const MenuContentCompWithPlacement =
|
|
||||||
MenuContentComp && React.isValidElement(MenuContentComp)
|
MenuContentComp && React.isValidElement(MenuContentComp)
|
||||||
? React.cloneElement(MenuContentComp as React.ReactElement<any>, {
|
? React.cloneElement(
|
||||||
placement,
|
MenuContentComp as React.ReactElement<
|
||||||
})
|
React.ComponentProps<typeof DropdownMenuContent>
|
||||||
|
>,
|
||||||
|
{ open },
|
||||||
|
)
|
||||||
: MenuContentComp;
|
: MenuContentComp;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<DropdownMenuPrimitive.Root open={open} modal={false}>
|
||||||
className="dropdown-menu-container"
|
<div
|
||||||
style={{
|
className={CLASSES.DROPDOWN_MENU_EVENT_WRAPPER}
|
||||||
// remove this div from box layout
|
style={{
|
||||||
display: "contents",
|
// remove this div from box layout
|
||||||
}}
|
display: "contents",
|
||||||
>
|
}}
|
||||||
{MenuTriggerComp}
|
>
|
||||||
{open && MenuContentCompWithPlacement}
|
{MenuTriggerComp}
|
||||||
</div>
|
{MenuContentWithState}
|
||||||
|
</div>
|
||||||
|
</DropdownMenuPrimitive.Root>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
DropdownMenu.Trigger = DropdownMenuTrigger;
|
DropdownMenu.Trigger = DropdownMenuTrigger;
|
||||||
DropdownMenu.Content = DropdownMenuContent;
|
DropdownMenu.Content = DropdownMenuContent;
|
||||||
DropdownMenu.Item = DropdownMenuItem;
|
DropdownMenu.Item = DropdownMenuItem;
|
||||||
|
DropdownMenu.ItemCheckbox = DropdownMenuItemCheckbox;
|
||||||
DropdownMenu.ItemLink = DropdownMenuItemLink;
|
DropdownMenu.ItemLink = DropdownMenuItemLink;
|
||||||
DropdownMenu.ItemCustom = DropdownMenuItemCustom;
|
DropdownMenu.ItemCustom = DropdownMenuItemCustom;
|
||||||
DropdownMenu.Group = DropdownMenuGroup;
|
DropdownMenu.Group = DropdownMenuGroup;
|
||||||
DropdownMenu.Separator = MenuSeparator;
|
DropdownMenu.Separator = MenuSeparator;
|
||||||
|
DropdownMenu.Sub = DropdownMenuSub;
|
||||||
|
|
||||||
export default DropdownMenu;
|
export default DropdownMenu;
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
import React, { useEffect, useRef } from "react";
|
import React, { useCallback, useEffect, useRef } from "react";
|
||||||
|
|
||||||
import { EVENT, KEYS } from "@excalidraw/common";
|
import { CLASSES, EVENT, KEYS } from "@excalidraw/common";
|
||||||
|
|
||||||
|
import { DropdownMenu as DropdownMenuPrimitive } from "radix-ui";
|
||||||
|
|
||||||
import { useOutsideClick } from "../../hooks/useOutsideClick";
|
import { useOutsideClick } from "../../hooks/useOutsideClick";
|
||||||
import { useStable } from "../../hooks/useStable";
|
import { useStable } from "../../hooks/useStable";
|
||||||
@@ -16,8 +18,9 @@ const MenuContent = ({
|
|||||||
onClickOutside,
|
onClickOutside,
|
||||||
className = "",
|
className = "",
|
||||||
onSelect,
|
onSelect,
|
||||||
|
open = true,
|
||||||
|
align = "end",
|
||||||
style,
|
style,
|
||||||
placement = "bottom",
|
|
||||||
}: {
|
}: {
|
||||||
children?: React.ReactNode;
|
children?: React.ReactNode;
|
||||||
onClickOutside?: () => void;
|
onClickOutside?: () => void;
|
||||||
@@ -26,26 +29,36 @@ const MenuContent = ({
|
|||||||
* Called when any menu item is selected (clicked on).
|
* Called when any menu item is selected (clicked on).
|
||||||
*/
|
*/
|
||||||
onSelect?: (event: Event) => void;
|
onSelect?: (event: Event) => void;
|
||||||
|
open?: boolean;
|
||||||
style?: React.CSSProperties;
|
style?: React.CSSProperties;
|
||||||
placement?: "top" | "bottom";
|
align?: "start" | "center" | "end";
|
||||||
}) => {
|
}) => {
|
||||||
const editorInterface = useEditorInterface();
|
const editorInterface = useEditorInterface();
|
||||||
const menuRef = useRef<HTMLDivElement>(null);
|
const menuRef = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
const callbacksRef = useStable({ onClickOutside });
|
const callbacksRef = useStable({ onClickOutside });
|
||||||
|
|
||||||
useOutsideClick(menuRef, (event) => {
|
useOutsideClick(
|
||||||
// prevents closing if clicking on the trigger button
|
menuRef,
|
||||||
if (
|
useCallback(
|
||||||
!menuRef.current
|
(event) => {
|
||||||
?.closest(".dropdown-menu-container")
|
// prevents closing if clicking on the trigger button
|
||||||
?.contains(event.target)
|
if (
|
||||||
) {
|
!menuRef.current
|
||||||
callbacksRef.onClickOutside?.();
|
?.closest(`.${CLASSES.DROPDOWN_MENU_EVENT_WRAPPER}`)
|
||||||
}
|
?.contains(event.target)
|
||||||
});
|
) {
|
||||||
|
callbacksRef.onClickOutside?.();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[callbacksRef],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
if (!open) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
const onKeyDown = (event: KeyboardEvent) => {
|
const onKeyDown = (event: KeyboardEvent) => {
|
||||||
if (event.key === KEYS.ESCAPE) {
|
if (event.key === KEYS.ESCAPE) {
|
||||||
event.stopImmediatePropagation();
|
event.stopImmediatePropagation();
|
||||||
@@ -63,35 +76,33 @@ const MenuContent = ({
|
|||||||
return () => {
|
return () => {
|
||||||
document.removeEventListener(EVENT.KEYDOWN, onKeyDown, option);
|
document.removeEventListener(EVENT.KEYDOWN, onKeyDown, option);
|
||||||
};
|
};
|
||||||
}, [callbacksRef]);
|
}, [callbacksRef, open]);
|
||||||
|
|
||||||
const classNames = clsx(`dropdown-menu ${className}`, {
|
const classNames = clsx(`dropdown-menu ${className}`, {
|
||||||
"dropdown-menu--mobile": editorInterface.formFactor === "phone",
|
"dropdown-menu--mobile": editorInterface.formFactor === "phone",
|
||||||
"dropdown-menu--placement-top": placement === "top",
|
|
||||||
}).trim();
|
}).trim();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<DropdownMenuContentPropsContext.Provider value={{ onSelect }}>
|
<DropdownMenuContentPropsContext.Provider value={{ onSelect }}>
|
||||||
<div
|
<DropdownMenuPrimitive.Content
|
||||||
ref={menuRef}
|
ref={menuRef}
|
||||||
className={classNames}
|
className={classNames}
|
||||||
style={style}
|
style={style}
|
||||||
data-testid="dropdown-menu"
|
data-testid="dropdown-menu"
|
||||||
|
align={align}
|
||||||
|
sideOffset={8}
|
||||||
|
onCloseAutoFocus={(event: Event) => event.preventDefault()}
|
||||||
>
|
>
|
||||||
{/* the zIndex ensures this menu has higher stacking order,
|
{/* the zIndex ensures this menu has higher stacking order,
|
||||||
see https://github.com/excalidraw/excalidraw/pull/1445 */}
|
see https://github.com/excalidraw/excalidraw/pull/1445 */}
|
||||||
{editorInterface.formFactor === "phone" ? (
|
{editorInterface.formFactor === "phone" ? (
|
||||||
<Stack.Col className="dropdown-menu-container">{children}</Stack.Col>
|
<Stack.Col className="dropdown-menu-container">{children}</Stack.Col>
|
||||||
) : (
|
) : (
|
||||||
<Island
|
<Island className="dropdown-menu-container" padding={2}>
|
||||||
className="dropdown-menu-container"
|
|
||||||
padding={2}
|
|
||||||
style={{ zIndex: 2 }}
|
|
||||||
>
|
|
||||||
{children}
|
{children}
|
||||||
</Island>
|
</Island>
|
||||||
)}
|
)}
|
||||||
</div>
|
</DropdownMenuPrimitive.Content>
|
||||||
</DropdownMenuContentPropsContext.Provider>
|
</DropdownMenuContentPropsContext.Provider>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,78 +1,62 @@
|
|||||||
import React, { useEffect, useRef } from "react";
|
import React from "react";
|
||||||
|
|
||||||
import { THEME } from "@excalidraw/common";
|
import { THEME } from "@excalidraw/common";
|
||||||
|
|
||||||
|
import { DropdownMenu as DropdownMenuPrimitive } from "radix-ui";
|
||||||
|
|
||||||
import type { ValueOf } from "@excalidraw/common/utility-types";
|
import type { ValueOf } from "@excalidraw/common/utility-types";
|
||||||
|
|
||||||
import { useExcalidrawAppState } from "../App";
|
import { useExcalidrawAppState } from "../App";
|
||||||
|
|
||||||
import MenuItemContent from "./DropdownMenuItemContent";
|
|
||||||
import {
|
import {
|
||||||
getDropdownMenuItemClassName,
|
getDropdownMenuItemClassName,
|
||||||
useHandleDropdownMenuItemClick,
|
useHandleDropdownMenuItemSelect,
|
||||||
} from "./common";
|
} from "./common";
|
||||||
|
import MenuItemContent from "./DropdownMenuItemContent";
|
||||||
|
|
||||||
import type { JSX } from "react";
|
import type { JSX } from "react";
|
||||||
|
|
||||||
const DropdownMenuItem = ({
|
export type DropdownMenuItemProps = {
|
||||||
icon,
|
|
||||||
value,
|
|
||||||
order,
|
|
||||||
children,
|
|
||||||
shortcut,
|
|
||||||
className,
|
|
||||||
hovered,
|
|
||||||
selected,
|
|
||||||
textStyle,
|
|
||||||
onSelect,
|
|
||||||
onClick,
|
|
||||||
badge,
|
|
||||||
...rest
|
|
||||||
}: {
|
|
||||||
icon?: JSX.Element;
|
icon?: JSX.Element;
|
||||||
|
badge?: React.ReactNode;
|
||||||
value?: string | number | undefined;
|
value?: string | number | undefined;
|
||||||
order?: number;
|
|
||||||
onSelect?: (event: Event) => void;
|
onSelect?: (event: Event) => void;
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
shortcut?: string;
|
shortcut?: string;
|
||||||
hovered?: boolean;
|
|
||||||
selected?: boolean;
|
selected?: boolean;
|
||||||
textStyle?: React.CSSProperties;
|
|
||||||
className?: string;
|
className?: string;
|
||||||
badge?: React.ReactNode;
|
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect">;
|
||||||
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect">) => {
|
|
||||||
const handleClick = useHandleDropdownMenuItemClick(onClick, onSelect);
|
|
||||||
const ref = useRef<HTMLButtonElement>(null);
|
|
||||||
|
|
||||||
useEffect(() => {
|
const DropdownMenuItem = ({
|
||||||
if (hovered) {
|
icon,
|
||||||
if (order === 0) {
|
badge,
|
||||||
// scroll into the first item differently, so it's visible what is above (i.e. group title)
|
value,
|
||||||
ref.current?.scrollIntoView({ block: "end" });
|
children,
|
||||||
} else {
|
shortcut,
|
||||||
ref.current?.scrollIntoView({ block: "nearest" });
|
className,
|
||||||
}
|
selected,
|
||||||
}
|
onSelect,
|
||||||
}, [hovered, order]);
|
...rest
|
||||||
|
}: DropdownMenuItemProps) => {
|
||||||
|
const handleSelect = useHandleDropdownMenuItemSelect(onSelect);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<button
|
<DropdownMenuPrimitive.Item
|
||||||
{...rest}
|
className="radix-menu-item"
|
||||||
ref={ref}
|
onSelect={handleSelect}
|
||||||
value={value}
|
asChild
|
||||||
onClick={handleClick}
|
|
||||||
className={getDropdownMenuItemClassName(className, selected, hovered)}
|
|
||||||
title={rest.title ?? rest["aria-label"]}
|
|
||||||
>
|
>
|
||||||
<MenuItemContent
|
<button
|
||||||
textStyle={textStyle}
|
{...rest}
|
||||||
icon={icon}
|
value={value}
|
||||||
shortcut={shortcut}
|
className={getDropdownMenuItemClassName(className, selected)}
|
||||||
badge={badge}
|
title={rest.title ?? rest["aria-label"]}
|
||||||
>
|
>
|
||||||
{children}
|
<MenuItemContent icon={icon} shortcut={shortcut} badge={badge}>
|
||||||
</MenuItemContent>
|
{children}
|
||||||
</button>
|
</MenuItemContent>
|
||||||
|
</button>
|
||||||
|
</DropdownMenuPrimitive.Item>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
DropdownMenuItem.displayName = "DropdownMenuItem";
|
DropdownMenuItem.displayName = "DropdownMenuItem";
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
import { checkIcon, emptyIcon } from "../icons";
|
||||||
|
|
||||||
|
import DropdownMenuItem from "./DropdownMenuItem";
|
||||||
|
|
||||||
|
import type { DropdownMenuItemProps } from "./DropdownMenuItem";
|
||||||
|
|
||||||
|
const DropdownMenuItemCheckbox = (
|
||||||
|
props: Omit<DropdownMenuItemProps, "icon"> & { checked: boolean },
|
||||||
|
) => {
|
||||||
|
return (
|
||||||
|
<DropdownMenuItem {...props} icon={props.checked ? checkIcon : emptyIcon} />
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default DropdownMenuItemCheckbox;
|
||||||
@@ -27,9 +27,7 @@ const DropdownMenuItemContentRadio = <T,>({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="dropdown-menu-item-base dropdown-menu-item-bare">
|
<div className="dropdown-menu-item-base dropdown-menu-item-bare">
|
||||||
<label className="dropdown-menu-item__text" htmlFor={name}>
|
<label className="dropdown-menu-item__text">{children}</label>
|
||||||
{children}
|
|
||||||
</label>
|
|
||||||
<RadioGroup
|
<RadioGroup
|
||||||
name={name}
|
name={name}
|
||||||
value={value}
|
value={value}
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
|
import { DropdownMenu as DropdownMenuPrimitive } from "radix-ui";
|
||||||
|
|
||||||
import MenuItemContent from "./DropdownMenuItemContent";
|
import MenuItemContent from "./DropdownMenuItemContent";
|
||||||
import {
|
import {
|
||||||
getDropdownMenuItemClassName,
|
getDropdownMenuItemClassName,
|
||||||
useHandleDropdownMenuItemClick,
|
useHandleDropdownMenuItemSelect,
|
||||||
} from "./common";
|
} from "./common";
|
||||||
|
|
||||||
import type { JSX } from "react";
|
import type { JSX } from "react";
|
||||||
@@ -28,23 +30,28 @@ const DropdownMenuItemLink = ({
|
|||||||
onSelect?: (event: Event) => void;
|
onSelect?: (event: Event) => void;
|
||||||
rel?: string;
|
rel?: string;
|
||||||
} & React.AnchorHTMLAttributes<HTMLAnchorElement>) => {
|
} & React.AnchorHTMLAttributes<HTMLAnchorElement>) => {
|
||||||
const handleClick = useHandleDropdownMenuItemClick(rest.onClick, onSelect);
|
const handleSelect = useHandleDropdownMenuItemSelect(onSelect);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
// eslint-disable-next-line react/jsx-no-target-blank
|
// eslint-disable-next-line react/jsx-no-target-blank
|
||||||
<a
|
<DropdownMenuPrimitive.Item
|
||||||
{...rest}
|
className="radix-menu-item"
|
||||||
href={href}
|
onSelect={handleSelect}
|
||||||
target="_blank"
|
asChild
|
||||||
rel={rel || "noopener"}
|
|
||||||
className={getDropdownMenuItemClassName(className, selected)}
|
|
||||||
title={rest.title ?? rest["aria-label"]}
|
|
||||||
onClick={handleClick}
|
|
||||||
>
|
>
|
||||||
<MenuItemContent icon={icon} shortcut={shortcut}>
|
<a
|
||||||
{children}
|
{...rest}
|
||||||
</MenuItemContent>
|
href={href}
|
||||||
</a>
|
target="_blank"
|
||||||
|
rel={`noopener ${rel}`}
|
||||||
|
className={getDropdownMenuItemClassName(className, selected)}
|
||||||
|
title={rest.title ?? rest["aria-label"]}
|
||||||
|
>
|
||||||
|
<MenuItemContent icon={icon} shortcut={shortcut}>
|
||||||
|
{children}
|
||||||
|
</MenuItemContent>
|
||||||
|
</a>
|
||||||
|
</DropdownMenuPrimitive.Item>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ const MenuSeparator = () => (
|
|||||||
style={{
|
style={{
|
||||||
height: "1px",
|
height: "1px",
|
||||||
backgroundColor: "var(--default-border-color)",
|
backgroundColor: "var(--default-border-color)",
|
||||||
margin: ".5rem 0",
|
margin: "6px 0",
|
||||||
flex: "0 0 auto",
|
flex: "0 0 auto",
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -0,0 +1,26 @@
|
|||||||
|
import { DropdownMenu as DropdownMenuPrimitive } from "radix-ui";
|
||||||
|
|
||||||
|
import DropdownMenuSubContent from "./DropdownMenuSubContent";
|
||||||
|
import DropdownMenuSubTrigger from "./DropdownMenuSubTrigger";
|
||||||
|
import {
|
||||||
|
getSubMenuContentComponent,
|
||||||
|
getSubMenuTriggerComponent,
|
||||||
|
} from "./dropdownMenuUtils";
|
||||||
|
|
||||||
|
const DropdownMenuSub = ({ children }: { children?: React.ReactNode }) => {
|
||||||
|
const MenuTriggerComp = getSubMenuTriggerComponent(children);
|
||||||
|
const MenuContentComp = getSubMenuContentComponent(children);
|
||||||
|
return (
|
||||||
|
<DropdownMenuPrimitive.Sub>
|
||||||
|
{MenuTriggerComp}
|
||||||
|
{MenuContentComp}
|
||||||
|
</DropdownMenuPrimitive.Sub>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
DropdownMenuSub.Trigger = DropdownMenuSubTrigger;
|
||||||
|
DropdownMenuSub.Content = DropdownMenuSubContent;
|
||||||
|
|
||||||
|
DropdownMenuSub.displayName = "DropdownMenuSub";
|
||||||
|
|
||||||
|
export default DropdownMenuSub;
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
import clsx from "clsx";
|
||||||
|
|
||||||
|
import { DropdownMenu as DropdownMenuPrimitive } from "radix-ui";
|
||||||
|
|
||||||
|
import { useCallback, useState } from "react";
|
||||||
|
|
||||||
|
import { useEditorInterface } from "../App";
|
||||||
|
import { Island } from "../Island";
|
||||||
|
import Stack from "../Stack";
|
||||||
|
|
||||||
|
const BASE_ALIGN_OFFSET = -4;
|
||||||
|
const BASE_SIDE_OFFSET = 4;
|
||||||
|
|
||||||
|
const DropdownMenuSubContent = ({
|
||||||
|
children,
|
||||||
|
className,
|
||||||
|
}: {
|
||||||
|
children?: React.ReactNode;
|
||||||
|
className?: string;
|
||||||
|
}) => {
|
||||||
|
const editorInterface = useEditorInterface();
|
||||||
|
|
||||||
|
const classNames = clsx(`dropdown-menu dropdown-submenu ${className}`, {
|
||||||
|
"dropdown-menu--mobile": editorInterface.formFactor === "phone",
|
||||||
|
}).trim();
|
||||||
|
|
||||||
|
const callbacksRef = useCallback((node: HTMLDivElement | null) => {
|
||||||
|
if (node) {
|
||||||
|
const parentContainer = node.closest(".dropdown-menu-container");
|
||||||
|
const parentRect = parentContainer?.getBoundingClientRect();
|
||||||
|
if (parentRect) {
|
||||||
|
const menuWidth = node.getBoundingClientRect().width;
|
||||||
|
|
||||||
|
const viewportWidth = window.innerWidth;
|
||||||
|
const spaceRemaining = viewportWidth - parentRect.right;
|
||||||
|
if (spaceRemaining < menuWidth + 20) {
|
||||||
|
setSideOffset(spaceRemaining - menuWidth + BASE_ALIGN_OFFSET);
|
||||||
|
setAlignOffset(BASE_ALIGN_OFFSET + 8);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const [sideOffset, setSideOffset] = useState(BASE_SIDE_OFFSET);
|
||||||
|
const [alignOffset, setAlignOffset] = useState(BASE_ALIGN_OFFSET);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DropdownMenuPrimitive.SubContent
|
||||||
|
className={classNames}
|
||||||
|
sideOffset={sideOffset}
|
||||||
|
alignOffset={alignOffset}
|
||||||
|
collisionPadding={8}
|
||||||
|
ref={callbacksRef}
|
||||||
|
>
|
||||||
|
{editorInterface.formFactor === "phone" ? (
|
||||||
|
<Stack.Col className="dropdown-menu-container">{children}</Stack.Col>
|
||||||
|
) : (
|
||||||
|
<Island
|
||||||
|
className="dropdown-menu-container"
|
||||||
|
padding={2}
|
||||||
|
style={{ zIndex: 1 }}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</Island>
|
||||||
|
)}
|
||||||
|
</DropdownMenuPrimitive.SubContent>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default DropdownMenuSubContent;
|
||||||
|
DropdownMenuSubContent.displayName = "DropdownMenuSubContent";
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
import React from "react";
|
||||||
|
|
||||||
|
import { DropdownMenu as DropdownMenuPrimitive } from "radix-ui";
|
||||||
|
|
||||||
|
import { chevronRight } from "../icons";
|
||||||
|
|
||||||
|
import { getDropdownMenuItemClassName } from "./common";
|
||||||
|
import MenuItemContent from "./DropdownMenuItemContent";
|
||||||
|
|
||||||
|
import type { JSX } from "react";
|
||||||
|
|
||||||
|
const DropdownMenuSubTrigger = ({
|
||||||
|
children,
|
||||||
|
icon,
|
||||||
|
shortcut,
|
||||||
|
className,
|
||||||
|
}: {
|
||||||
|
children: React.ReactNode;
|
||||||
|
icon?: JSX.Element;
|
||||||
|
shortcut?: string;
|
||||||
|
className?: string;
|
||||||
|
}) => {
|
||||||
|
return (
|
||||||
|
<DropdownMenuPrimitive.SubTrigger
|
||||||
|
className={`${getDropdownMenuItemClassName(
|
||||||
|
className,
|
||||||
|
)} dropdown-menu__submenu-trigger`}
|
||||||
|
>
|
||||||
|
<MenuItemContent icon={icon} shortcut={shortcut}>
|
||||||
|
{children}
|
||||||
|
</MenuItemContent>
|
||||||
|
<div className="dropdown-menu__submenu-trigger-icon">{chevronRight}</div>
|
||||||
|
</DropdownMenuPrimitive.SubTrigger>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default DropdownMenuSubTrigger;
|
||||||
|
DropdownMenuSubTrigger.displayName = "DropdownMenuSubTrigger";
|
||||||
@@ -1,5 +1,7 @@
|
|||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
|
|
||||||
|
import { DropdownMenu as DropdownMenuPrimitive } from "radix-ui";
|
||||||
|
|
||||||
import { useEditorInterface } from "../App";
|
import { useEditorInterface } from "../App";
|
||||||
|
|
||||||
const MenuTrigger = ({
|
const MenuTrigger = ({
|
||||||
@@ -23,7 +25,7 @@ const MenuTrigger = ({
|
|||||||
},
|
},
|
||||||
).trim();
|
).trim();
|
||||||
return (
|
return (
|
||||||
<button
|
<DropdownMenuPrimitive.Trigger
|
||||||
className={classNames}
|
className={classNames}
|
||||||
onClick={onToggle}
|
onClick={onToggle}
|
||||||
type="button"
|
type="button"
|
||||||
@@ -32,7 +34,7 @@ const MenuTrigger = ({
|
|||||||
{...rest}
|
{...rest}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
</button>
|
</DropdownMenuPrimitive.Trigger>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import React, { useContext } from "react";
|
import React, { useContext } from "react";
|
||||||
|
|
||||||
import { EVENT, composeEventHandlers } from "@excalidraw/common";
|
import { composeEventHandlers } from "@excalidraw/common";
|
||||||
|
|
||||||
export const DropdownMenuContentPropsContext = React.createContext<{
|
export const DropdownMenuContentPropsContext = React.createContext<{
|
||||||
onSelect?: (event: Event) => void;
|
onSelect?: (event: Event) => void;
|
||||||
@@ -11,28 +11,17 @@ export const getDropdownMenuItemClassName = (
|
|||||||
selected = false,
|
selected = false,
|
||||||
hovered = false,
|
hovered = false,
|
||||||
) => {
|
) => {
|
||||||
return `dropdown-menu-item dropdown-menu-item-base ${className}
|
return `dropdown-menu-item dropdown-menu-item-base ${className} ${
|
||||||
${selected ? "dropdown-menu-item--selected" : ""} ${
|
selected ? "dropdown-menu-item--selected" : ""
|
||||||
hovered ? "dropdown-menu-item--hovered" : ""
|
} ${hovered ? "dropdown-menu-item--hovered" : ""}`.trim();
|
||||||
}`.trim();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const useHandleDropdownMenuItemClick = (
|
export const useHandleDropdownMenuItemSelect = (
|
||||||
origOnClick:
|
|
||||||
| React.MouseEventHandler<HTMLAnchorElement | HTMLButtonElement>
|
|
||||||
| undefined,
|
|
||||||
onSelect: ((event: Event) => void) | undefined,
|
onSelect: ((event: Event) => void) | undefined,
|
||||||
) => {
|
) => {
|
||||||
const DropdownMenuContentProps = useContext(DropdownMenuContentPropsContext);
|
const DropdownMenuContentProps = useContext(DropdownMenuContentPropsContext);
|
||||||
|
|
||||||
return composeEventHandlers(origOnClick, (event) => {
|
return composeEventHandlers(onSelect, (event) => {
|
||||||
const itemSelectEvent = new CustomEvent(EVENT.MENU_ITEM_SELECT, {
|
DropdownMenuContentProps.onSelect?.(event);
|
||||||
bubbles: true,
|
|
||||||
cancelable: true,
|
|
||||||
});
|
|
||||||
onSelect?.(itemSelectEvent);
|
|
||||||
if (!itemSelectEvent.defaultPrevented) {
|
|
||||||
DropdownMenuContentProps.onSelect?.(itemSelectEvent);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
export const getMenuTriggerComponent = (children: React.ReactNode) => {
|
const getMenuComponent = (component: string) => (children: React.ReactNode) => {
|
||||||
const comp = React.Children.toArray(children).find(
|
const comp = React.Children.toArray(children).find(
|
||||||
(child) =>
|
(child) =>
|
||||||
React.isValidElement(child) &&
|
React.isValidElement(child) &&
|
||||||
@@ -8,7 +8,7 @@ export const getMenuTriggerComponent = (children: React.ReactNode) => {
|
|||||||
//@ts-ignore
|
//@ts-ignore
|
||||||
child?.type.displayName &&
|
child?.type.displayName &&
|
||||||
//@ts-ignore
|
//@ts-ignore
|
||||||
child.type.displayName === "DropdownMenuTrigger",
|
child.type.displayName === component,
|
||||||
);
|
);
|
||||||
if (!comp) {
|
if (!comp) {
|
||||||
return null;
|
return null;
|
||||||
@@ -17,19 +17,11 @@ export const getMenuTriggerComponent = (children: React.ReactNode) => {
|
|||||||
return comp;
|
return comp;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getMenuContentComponent = (children: React.ReactNode) => {
|
export const getMenuTriggerComponent = getMenuComponent("DropdownMenuTrigger");
|
||||||
const comp = React.Children.toArray(children).find(
|
export const getMenuContentComponent = getMenuComponent("DropdownMenuContent");
|
||||||
(child) =>
|
export const getSubMenuTriggerComponent = getMenuComponent(
|
||||||
React.isValidElement(child) &&
|
"DropdownMenuSubTrigger",
|
||||||
typeof child.type !== "string" &&
|
);
|
||||||
//@ts-ignore
|
export const getSubMenuContentComponent = getMenuComponent(
|
||||||
child?.type.displayName &&
|
"DropdownMenuSubContent",
|
||||||
//@ts-ignore
|
);
|
||||||
child.type.displayName === "DropdownMenuContent",
|
|
||||||
);
|
|
||||||
if (!comp) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
//@ts-ignore
|
|
||||||
return comp;
|
|
||||||
};
|
|
||||||
|
|||||||
@@ -1287,13 +1287,21 @@ export const EdgeRoundIcon = createIcon(
|
|||||||
tablerIconProps,
|
tablerIconProps,
|
||||||
);
|
);
|
||||||
|
|
||||||
export const ArrowheadNoneIcon = createIcon(
|
export const ArrowheadNoneIcon = React.memo(
|
||||||
<g stroke="currentColor" opacity={0.3} strokeWidth={2}>
|
({ flip = false }: { flip?: boolean }) =>
|
||||||
<path d="M12 12l9 0" />
|
createIcon(
|
||||||
<path d="M3 9l6 6" />
|
<g
|
||||||
<path d="M3 15l6 -6" />
|
transform={flip ? "translate(24, 0) scale(-1, 1)" : ""}
|
||||||
</g>,
|
stroke="currentColor"
|
||||||
tablerIconProps,
|
opacity={0.3}
|
||||||
|
strokeWidth={2}
|
||||||
|
>
|
||||||
|
<path d="M12 12l-9 0" />
|
||||||
|
<path d="M21 9l-6 6" />
|
||||||
|
<path d="M21 15l-6 -6" />
|
||||||
|
</g>,
|
||||||
|
tablerIconProps,
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
export const ArrowheadArrowIcon = React.memo(
|
export const ArrowheadArrowIcon = React.memo(
|
||||||
@@ -2396,3 +2404,32 @@ export const presentationIcon = createIcon(
|
|||||||
</g>,
|
</g>,
|
||||||
tablerIconProps,
|
tablerIconProps,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// empty placeholder icon (used for alignment in menus)
|
||||||
|
export const emptyIcon = <div style={{ width: "1rem", height: "1rem" }} />;
|
||||||
|
|
||||||
|
//tabler-icons: chevron-right
|
||||||
|
export const chevronRight = createIcon(
|
||||||
|
<g strokeWidth="1.5">
|
||||||
|
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
|
||||||
|
<polyline points="9 6 15 12 9 18" />
|
||||||
|
</g>,
|
||||||
|
tablerIconProps,
|
||||||
|
);
|
||||||
|
|
||||||
|
// tabler-icons: adjustments-horizontal
|
||||||
|
export const settingsIcon = createIcon(
|
||||||
|
<g strokeWidth={1.25}>
|
||||||
|
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
|
||||||
|
<path d="M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
|
||||||
|
<path d="M4 6l8 0" />
|
||||||
|
<path d="M16 6l4 0" />
|
||||||
|
<path d="M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
|
||||||
|
<path d="M4 12l2 0" />
|
||||||
|
<path d="M10 12l10 0" />
|
||||||
|
<path d="M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
|
||||||
|
<path d="M4 18l11 0" />
|
||||||
|
<path d="M19 18l1 0" />
|
||||||
|
</g>,
|
||||||
|
tablerIconProps,
|
||||||
|
);
|
||||||
|
|||||||
@@ -9,9 +9,14 @@ import {
|
|||||||
actionLoadScene,
|
actionLoadScene,
|
||||||
actionSaveToActiveFile,
|
actionSaveToActiveFile,
|
||||||
actionShortcuts,
|
actionShortcuts,
|
||||||
|
actionToggleGridMode,
|
||||||
|
actionToggleObjectsSnapMode,
|
||||||
actionToggleSearchMenu,
|
actionToggleSearchMenu,
|
||||||
|
actionToggleStats,
|
||||||
actionToggleTheme,
|
actionToggleTheme,
|
||||||
|
actionToggleZenMode,
|
||||||
} from "../../actions";
|
} from "../../actions";
|
||||||
|
import { actionToggleViewMode } from "../../actions/actionToggleViewMode";
|
||||||
import { getShortcutFromShortcutName } from "../../actions/shortcuts";
|
import { getShortcutFromShortcutName } from "../../actions/shortcuts";
|
||||||
import { trackEvent } from "../../analytics";
|
import { trackEvent } from "../../analytics";
|
||||||
import { useUIAppState } from "../../context/ui-appState";
|
import { useUIAppState } from "../../context/ui-appState";
|
||||||
@@ -23,13 +28,16 @@ import {
|
|||||||
useExcalidrawActionManager,
|
useExcalidrawActionManager,
|
||||||
useExcalidrawElements,
|
useExcalidrawElements,
|
||||||
useAppProps,
|
useAppProps,
|
||||||
|
useApp,
|
||||||
} from "../App";
|
} from "../App";
|
||||||
import { openConfirmModal } from "../OverwriteConfirm/OverwriteConfirmState";
|
import { openConfirmModal } from "../OverwriteConfirm/OverwriteConfirmState";
|
||||||
import Trans from "../Trans";
|
import Trans from "../Trans";
|
||||||
import DropdownMenuItem from "../dropdownMenu/DropdownMenuItem";
|
import DropdownMenuItem from "../dropdownMenu/DropdownMenuItem";
|
||||||
|
import DropdownMenuItemCheckbox from "../dropdownMenu/DropdownMenuItemCheckbox";
|
||||||
import DropdownMenuItemContentRadio from "../dropdownMenu/DropdownMenuItemContentRadio";
|
import DropdownMenuItemContentRadio from "../dropdownMenu/DropdownMenuItemContentRadio";
|
||||||
import DropdownMenuItemLink from "../dropdownMenu/DropdownMenuItemLink";
|
import DropdownMenuItemLink from "../dropdownMenu/DropdownMenuItemLink";
|
||||||
import { GithubIcon, DiscordIcon, XBrandIcon } from "../icons";
|
import DropdownMenuSub from "../dropdownMenu/DropdownMenuSub";
|
||||||
|
import { GithubIcon, DiscordIcon, XBrandIcon, settingsIcon } from "../icons";
|
||||||
import {
|
import {
|
||||||
boltIcon,
|
boltIcon,
|
||||||
DeviceDesktopIcon,
|
DeviceDesktopIcon,
|
||||||
@@ -306,10 +314,14 @@ export const ChangeCanvasBackground = () => {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div style={{ marginTop: "0.5rem" }}>
|
<div style={{ marginTop: "0.75rem" }}>
|
||||||
<div
|
<div
|
||||||
data-testid="canvas-background-label"
|
data-testid="canvas-background-label"
|
||||||
style={{ fontSize: ".75rem", marginBottom: ".5rem" }}
|
style={{
|
||||||
|
fontSize: "0.875rem",
|
||||||
|
marginBottom: "0.25rem",
|
||||||
|
marginLeft: "0.5rem",
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
{t("labels.canvasBackground")}
|
{t("labels.canvasBackground")}
|
||||||
</div>
|
</div>
|
||||||
@@ -393,3 +405,152 @@ export const LiveCollaborationTrigger = ({
|
|||||||
};
|
};
|
||||||
|
|
||||||
LiveCollaborationTrigger.displayName = "LiveCollaborationTrigger";
|
LiveCollaborationTrigger.displayName = "LiveCollaborationTrigger";
|
||||||
|
|
||||||
|
const PreferencesToggleToolLockItem = () => {
|
||||||
|
const { t } = useI18n();
|
||||||
|
const app = useApp();
|
||||||
|
const appState = useUIAppState();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DropdownMenuItemCheckbox
|
||||||
|
checked={appState.activeTool.locked}
|
||||||
|
shortcut={getShortcutFromShortcutName("toolLock")}
|
||||||
|
onSelect={(event) => {
|
||||||
|
app.toggleLock();
|
||||||
|
event.preventDefault();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{t("labels.preferences_toolLock")}
|
||||||
|
</DropdownMenuItemCheckbox>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const PreferencesToggleSnapModeItem = () => {
|
||||||
|
const { t } = useI18n();
|
||||||
|
const actionManager = useExcalidrawActionManager();
|
||||||
|
const appState = useUIAppState();
|
||||||
|
return (
|
||||||
|
<DropdownMenuItemCheckbox
|
||||||
|
checked={appState.objectsSnapModeEnabled}
|
||||||
|
shortcut={getShortcutFromShortcutName("objectsSnapMode")}
|
||||||
|
onSelect={(event) => {
|
||||||
|
actionManager.executeAction(actionToggleObjectsSnapMode);
|
||||||
|
event.preventDefault();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{t("buttons.objectsSnapMode")}
|
||||||
|
</DropdownMenuItemCheckbox>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const PreferencesToggleGridModeItem = () => {
|
||||||
|
const { t } = useI18n();
|
||||||
|
const actionManager = useExcalidrawActionManager();
|
||||||
|
const appState = useUIAppState();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DropdownMenuItemCheckbox
|
||||||
|
checked={appState.gridModeEnabled}
|
||||||
|
shortcut={getShortcutFromShortcutName("gridMode")}
|
||||||
|
onSelect={(event) => {
|
||||||
|
actionManager.executeAction(actionToggleGridMode);
|
||||||
|
event.preventDefault();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{t("labels.toggleGrid")}
|
||||||
|
</DropdownMenuItemCheckbox>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const PreferencesToggleZenModeItem = () => {
|
||||||
|
const { t } = useI18n();
|
||||||
|
const actionManager = useExcalidrawActionManager();
|
||||||
|
const appState = useUIAppState();
|
||||||
|
return (
|
||||||
|
<DropdownMenuItemCheckbox
|
||||||
|
checked={appState.zenModeEnabled}
|
||||||
|
shortcut={getShortcutFromShortcutName("zenMode")}
|
||||||
|
onSelect={(event) => {
|
||||||
|
actionManager.executeAction(actionToggleZenMode);
|
||||||
|
event.preventDefault();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{t("buttons.zenMode")}
|
||||||
|
</DropdownMenuItemCheckbox>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const PreferencesToggleViewModeItem = () => {
|
||||||
|
const { t } = useI18n();
|
||||||
|
const actionManager = useExcalidrawActionManager();
|
||||||
|
const appState = useUIAppState();
|
||||||
|
return (
|
||||||
|
<DropdownMenuItemCheckbox
|
||||||
|
checked={appState.viewModeEnabled}
|
||||||
|
shortcut={getShortcutFromShortcutName("viewMode")}
|
||||||
|
onSelect={(event) => {
|
||||||
|
actionManager.executeAction(actionToggleViewMode);
|
||||||
|
event.preventDefault();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{t("labels.viewMode")}
|
||||||
|
</DropdownMenuItemCheckbox>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const PreferencesToggleElementPropertiesItem = () => {
|
||||||
|
const { t } = useI18n();
|
||||||
|
const actionManager = useExcalidrawActionManager();
|
||||||
|
const appState = useUIAppState();
|
||||||
|
return (
|
||||||
|
<DropdownMenuItemCheckbox
|
||||||
|
checked={appState.stats.open}
|
||||||
|
shortcut={getShortcutFromShortcutName("stats")}
|
||||||
|
onSelect={(event) => {
|
||||||
|
actionManager.executeAction(actionToggleStats);
|
||||||
|
event.preventDefault();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{t("stats.fullTitle")}
|
||||||
|
</DropdownMenuItemCheckbox>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const Preferences = ({
|
||||||
|
children,
|
||||||
|
additionalItems,
|
||||||
|
}: {
|
||||||
|
children?: React.ReactNode;
|
||||||
|
additionalItems?: React.ReactNode;
|
||||||
|
}) => {
|
||||||
|
const { t } = useI18n();
|
||||||
|
return (
|
||||||
|
<DropdownMenuSub>
|
||||||
|
<DropdownMenuSub.Trigger icon={settingsIcon}>
|
||||||
|
{t("labels.preferences")}
|
||||||
|
</DropdownMenuSub.Trigger>
|
||||||
|
<DropdownMenuSub.Content className="excalidraw-main-menu-preferences-submenu">
|
||||||
|
{children || (
|
||||||
|
<>
|
||||||
|
<PreferencesToggleToolLockItem />
|
||||||
|
<PreferencesToggleSnapModeItem />
|
||||||
|
<PreferencesToggleGridModeItem />
|
||||||
|
<PreferencesToggleZenModeItem />
|
||||||
|
<PreferencesToggleViewModeItem />
|
||||||
|
<PreferencesToggleElementPropertiesItem />
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{additionalItems}
|
||||||
|
</DropdownMenuSub.Content>
|
||||||
|
</DropdownMenuSub>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
Preferences.ToggleToolLock = PreferencesToggleToolLockItem;
|
||||||
|
Preferences.ToggleSnapMode = PreferencesToggleSnapModeItem;
|
||||||
|
Preferences.ToggleGridMode = PreferencesToggleGridModeItem;
|
||||||
|
Preferences.ToggleZenMode = PreferencesToggleZenModeItem;
|
||||||
|
Preferences.ToggleViewMode = PreferencesToggleViewModeItem;
|
||||||
|
Preferences.ToggleElementProperties = PreferencesToggleElementPropertiesItem;
|
||||||
|
|
||||||
|
Preferences.displayName = "Preferences";
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import { t } from "../../i18n";
|
|||||||
import { useEditorInterface, useExcalidrawSetAppState } from "../App";
|
import { useEditorInterface, useExcalidrawSetAppState } from "../App";
|
||||||
import { UserList } from "../UserList";
|
import { UserList } from "../UserList";
|
||||||
import DropdownMenu from "../dropdownMenu/DropdownMenu";
|
import DropdownMenu from "../dropdownMenu/DropdownMenu";
|
||||||
|
import DropdownMenuSub from "../dropdownMenu/DropdownMenuSub";
|
||||||
import { withInternalFallback } from "../hoc/withInternalFallback";
|
import { withInternalFallback } from "../hoc/withInternalFallback";
|
||||||
import { HamburgerMenuIcon } from "../icons";
|
import { HamburgerMenuIcon } from "../icons";
|
||||||
|
|
||||||
@@ -52,12 +53,8 @@ const MainMenu = Object.assign(
|
|||||||
onSelect={composeEventHandlers(onSelect, () => {
|
onSelect={composeEventHandlers(onSelect, () => {
|
||||||
setAppState({ openMenu: null });
|
setAppState({ openMenu: null });
|
||||||
})}
|
})}
|
||||||
placement="bottom"
|
className="main-menu"
|
||||||
className={
|
align="start"
|
||||||
editorInterface.formFactor === "phone"
|
|
||||||
? "main-menu-dropdown"
|
|
||||||
: ""
|
|
||||||
}
|
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
{editorInterface.formFactor === "phone" &&
|
{editorInterface.formFactor === "phone" &&
|
||||||
@@ -84,6 +81,7 @@ const MainMenu = Object.assign(
|
|||||||
ItemCustom: DropdownMenu.ItemCustom,
|
ItemCustom: DropdownMenu.ItemCustom,
|
||||||
Group: DropdownMenu.Group,
|
Group: DropdownMenu.Group,
|
||||||
Separator: DropdownMenu.Separator,
|
Separator: DropdownMenu.Separator,
|
||||||
|
Sub: DropdownMenuSub,
|
||||||
DefaultItems,
|
DefaultItems,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
// ---------------------------------------------------------------------------
|
// ---------------------------------------------------------------------------
|
||||||
|
|
||||||
.welcome-screen-decor-hint {
|
.welcome-screen-decor-hint {
|
||||||
@media (max-height: 599px) {
|
@media (max-height: 780px) {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -148,6 +148,7 @@
|
|||||||
.welcome-screen-center__heading {
|
.welcome-screen-center__heading {
|
||||||
font-size: 1.125rem;
|
font-size: 1.125rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
line-height: 1.35rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.welcome-screen-menu {
|
.welcome-screen-menu {
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
--zIndex-ui-context-menu: 90;
|
--zIndex-ui-context-menu: 90;
|
||||||
--zIndex-ui-styles-popup: 100;
|
--zIndex-ui-styles-popup: 100;
|
||||||
--zIndex-ui-top: 100;
|
--zIndex-ui-top: 100;
|
||||||
|
--zIndex-ui-main-menu: 110;
|
||||||
--zIndex-ui-library: 120;
|
--zIndex-ui-library: 120;
|
||||||
|
|
||||||
--zIndex-modal: 1000;
|
--zIndex-modal: 1000;
|
||||||
@@ -223,6 +224,18 @@ body.excalidraw-cursor-resize * {
|
|||||||
box-shadow: 0 0 0 1px var(--color-brand-hover);
|
box-shadow: 0 0 0 1px var(--color-brand-hover);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// radix doesn't allow differntiating between hover and keyboard active
|
||||||
|
// states (it's forcing :focus on both).
|
||||||
|
//
|
||||||
|
// proper handling would be to disable :focus-visible by default, and enable
|
||||||
|
// on keyboard arrows (it'd then have to be disabled again, e.g. on keydown
|
||||||
|
// or container focus)
|
||||||
|
//
|
||||||
|
// alas, that is left for another day
|
||||||
|
[data-radix-collection-item]:focus-visible {
|
||||||
|
box-shadow: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
.buttonList {
|
.buttonList {
|
||||||
.ToolIcon__icon {
|
.ToolIcon__icon {
|
||||||
all: unset !important;
|
all: unset !important;
|
||||||
@@ -670,6 +683,9 @@ body.excalidraw-cursor-resize * {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.main-menu {
|
||||||
|
z-index: var(--zIndex-ui-main-menu);
|
||||||
|
}
|
||||||
.main-menu-trigger {
|
.main-menu-trigger {
|
||||||
@include filledButtonOnCanvas;
|
@include filledButtonOnCanvas;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -82,7 +82,12 @@ import {
|
|||||||
getNormalizedZoom,
|
getNormalizedZoom,
|
||||||
} from "../scene";
|
} from "../scene";
|
||||||
|
|
||||||
import type { AppState, BinaryFiles, LibraryItem } from "../types";
|
import type {
|
||||||
|
AppState,
|
||||||
|
BinaryFiles,
|
||||||
|
LibraryItem,
|
||||||
|
NormalizedZoomValue,
|
||||||
|
} from "../types";
|
||||||
import type { ImportedDataState, LegacyAppState } from "./types";
|
import type { ImportedDataState, LegacyAppState } from "./types";
|
||||||
|
|
||||||
type RestoredAppState = Omit<
|
type RestoredAppState = Omit<
|
||||||
@@ -212,6 +217,7 @@ const repairBinding = <T extends ExcalidrawArrowElement>(
|
|||||||
boundElement,
|
boundElement,
|
||||||
startOrEnd,
|
startOrEnd,
|
||||||
elementsMap,
|
elementsMap,
|
||||||
|
{ value: 1 as NormalizedZoomValue },
|
||||||
) || p;
|
) || p;
|
||||||
const { fixedPoint } = calculateFixedPointForNonElbowArrowBinding(
|
const { fixedPoint } = calculateFixedPointForNonElbowArrowBinding(
|
||||||
element,
|
element,
|
||||||
|
|||||||
@@ -317,3 +317,5 @@ export { getDataURL } from "./data/blob";
|
|||||||
export { isElementLink } from "@excalidraw/element";
|
export { isElementLink } from "@excalidraw/element";
|
||||||
|
|
||||||
export { setCustomTextMetricsProvider } from "@excalidraw/element";
|
export { setCustomTextMetricsProvider } from "@excalidraw/element";
|
||||||
|
|
||||||
|
export { CommandPalette } from "./components/CommandPalette/CommandPalette";
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "جميع بياناتك محفوظة محليًا في المتصفح الخاص بك.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "هل تريد الانتقال إلى Excalidraw+ بدلاً من ذلك؟",
|
"center_heading_plus": "هل تريد الانتقال إلى Excalidraw+ بدلاً من ذلك؟",
|
||||||
"menuHint": "التصدير، التفضيلات، اللغات..."
|
"menuHint": "التصدير، التفضيلات، اللغات..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "إدراج",
|
"button": "إدراج",
|
||||||
"description": "حاليًا، يتم دعم <flowchartLink>مخططات التدفق</flowchartLink>، <sequenceLink>التسلسلات</sequenceLink>، و<classLink>الفئات</classLink> فقط. سيتم عرض الأنواع الأخرى كصورة في Excalidraw.",
|
"description": "حاليًا، يتم دعم <flowchartLink>مخططات التدفق</flowchartLink>، <sequenceLink>التسلسلات</sequenceLink>، و<classLink>الفئات</classLink> فقط. سيتم عرض الأنواع الأخرى كصورة في Excalidraw.",
|
||||||
"syntax": "صيغة Mermaid",
|
"syntax": "صيغة Mermaid",
|
||||||
"preview": "معاينة"
|
"preview": "معاينة",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "بحث سريع"
|
"placeholder": "بحث سريع"
|
||||||
|
|||||||
@@ -558,6 +558,8 @@
|
|||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "",
|
"center_heading_plus": "",
|
||||||
"menuHint": ""
|
"menuHint": ""
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "",
|
"button": "",
|
||||||
"description": "",
|
"description": "",
|
||||||
"syntax": "",
|
"syntax": "",
|
||||||
"preview": ""
|
"preview": "",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": ""
|
"placeholder": ""
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Всичките Ви данни са запазени локално в браузъра Ви.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "",
|
"center_heading_plus": "",
|
||||||
"menuHint": "Експорт, предпочитания, езици, ..."
|
"menuHint": "Експорт, предпочитания, езици, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "Вмъкни",
|
"button": "Вмъкни",
|
||||||
"description": "",
|
"description": "",
|
||||||
"syntax": "Mermaid Синтаксис",
|
"syntax": "Mermaid Синтаксис",
|
||||||
"preview": "Преглед"
|
"preview": "Преглед",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": ""
|
"placeholder": ""
|
||||||
|
|||||||
@@ -558,6 +558,8 @@
|
|||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "",
|
"center_heading_plus": "",
|
||||||
"menuHint": ""
|
"menuHint": ""
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "",
|
"button": "",
|
||||||
"description": "",
|
"description": "",
|
||||||
"syntax": "",
|
"syntax": "",
|
||||||
"preview": ""
|
"preview": "",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": ""
|
"placeholder": ""
|
||||||
|
|||||||
@@ -558,6 +558,8 @@
|
|||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "",
|
"center_heading_plus": "",
|
||||||
"menuHint": ""
|
"menuHint": ""
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "",
|
"button": "",
|
||||||
"description": "",
|
"description": "",
|
||||||
"syntax": "",
|
"syntax": "",
|
||||||
"preview": ""
|
"preview": "",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": ""
|
"placeholder": ""
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Totes les vostres dades es guarden localment al vostre navegador.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "Vols anar a Excalidraw+ en comptes?",
|
"center_heading_plus": "Vols anar a Excalidraw+ en comptes?",
|
||||||
"menuHint": "Exportar, preferències, llenguatges..."
|
"menuHint": "Exportar, preferències, llenguatges..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "Inseriu",
|
"button": "Inseriu",
|
||||||
"description": "Actualment només s'admeten els diagrames <flowchartLink>Flowchart</flowchartLink>, <sequenceLink> Sequence, </sequenceLink> i <classLink> Class </classLink>. Els altres tipus es representaran com a imatge a Excalidraw.",
|
"description": "Actualment només s'admeten els diagrames <flowchartLink>Flowchart</flowchartLink>, <sequenceLink> Sequence, </sequenceLink> i <classLink> Class </classLink>. Els altres tipus es representaran com a imatge a Excalidraw.",
|
||||||
"syntax": "Sintaxi de Mermaid",
|
"syntax": "Sintaxi de Mermaid",
|
||||||
"preview": "Previsualització"
|
"preview": "Previsualització",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "Cerca ràpida"
|
"placeholder": "Cerca ràpida"
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Všechna vaše data jsou uložena lokálně ve vašem prohlížeči.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "Chcete místo toho přejít na Excalidraw+?",
|
"center_heading_plus": "Chcete místo toho přejít na Excalidraw+?",
|
||||||
"menuHint": "Export, nastavení, jazyky, ..."
|
"menuHint": "Export, nastavení, jazyky, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "Vložit",
|
"button": "Vložit",
|
||||||
"description": "",
|
"description": "",
|
||||||
"syntax": "Mermaid syntaxe",
|
"syntax": "Mermaid syntaxe",
|
||||||
"preview": "Náhled"
|
"preview": "Náhled",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "Rychlé vyhledávání"
|
"placeholder": "Rychlé vyhledávání"
|
||||||
|
|||||||
@@ -558,6 +558,8 @@
|
|||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "",
|
"center_heading_plus": "",
|
||||||
"menuHint": ""
|
"menuHint": ""
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "",
|
"button": "",
|
||||||
"description": "",
|
"description": "",
|
||||||
"syntax": "",
|
"syntax": "",
|
||||||
"preview": ""
|
"preview": "",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": ""
|
"placeholder": ""
|
||||||
|
|||||||
@@ -196,7 +196,7 @@
|
|||||||
"multipleResults": "Ergebnisse",
|
"multipleResults": "Ergebnisse",
|
||||||
"placeholder": "Text auf Zeichenfläche suchen...",
|
"placeholder": "Text auf Zeichenfläche suchen...",
|
||||||
"frames": "",
|
"frames": "",
|
||||||
"texts": ""
|
"texts": "Texte"
|
||||||
},
|
},
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"clearReset": "Zeichenfläche löschen & Hintergrundfarbe zurücksetzen",
|
"clearReset": "Zeichenfläche löschen & Hintergrundfarbe zurücksetzen",
|
||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Alle Daten werden lokal in Deinem Browser gespeichert.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "Möchtest du stattdessen zu Excalidraw+ gehen?",
|
"center_heading_plus": "Möchtest du stattdessen zu Excalidraw+ gehen?",
|
||||||
"menuHint": "Exportieren, Einstellungen, Sprachen, ..."
|
"menuHint": "Exportieren, Einstellungen, Sprachen, ..."
|
||||||
},
|
},
|
||||||
@@ -569,7 +571,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"colorPicker": {
|
"colorPicker": {
|
||||||
"color": "",
|
"color": "Farbe",
|
||||||
"mostUsedCustomColors": "Beliebteste benutzerdefinierte Farben",
|
"mostUsedCustomColors": "Beliebteste benutzerdefinierte Farben",
|
||||||
"colors": "Farben",
|
"colors": "Farben",
|
||||||
"shades": "Schattierungen",
|
"shades": "Schattierungen",
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "Einfügen",
|
"button": "Einfügen",
|
||||||
"description": "Derzeit werden nur <flowchartLink>Flussdiagramme</flowchartLink>, <sequenceLink>Sequenzdiagramme</sequenceLink> und <classLink>Klassendiagramme</classLink> unterstützt. Die anderen Typen werden als Bild in Excalidraw dargestellt.",
|
"description": "Derzeit werden nur <flowchartLink>Flussdiagramme</flowchartLink>, <sequenceLink>Sequenzdiagramme</sequenceLink> und <classLink>Klassendiagramme</classLink> unterstützt. Die anderen Typen werden als Bild in Excalidraw dargestellt.",
|
||||||
"syntax": "Mermaid-Syntax",
|
"syntax": "Mermaid-Syntax",
|
||||||
"preview": "Vorschau"
|
"preview": "Vorschau",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "Schnellsuche"
|
"placeholder": "Schnellsuche"
|
||||||
@@ -651,15 +701,15 @@
|
|||||||
"shortcutHint": "Benutze {{shortcut}} für Befehlspalette"
|
"shortcutHint": "Benutze {{shortcut}} für Befehlspalette"
|
||||||
},
|
},
|
||||||
"keys": {
|
"keys": {
|
||||||
"ctrl": "",
|
"ctrl": "Strg",
|
||||||
"option": "",
|
"option": "",
|
||||||
"cmd": "",
|
"cmd": "",
|
||||||
"alt": "",
|
"alt": "",
|
||||||
"escape": "",
|
"escape": "",
|
||||||
"enter": "",
|
"enter": "",
|
||||||
"shift": "",
|
"shift": "",
|
||||||
"spacebar": "",
|
"spacebar": "Leertaste",
|
||||||
"delete": "",
|
"delete": "Löschen",
|
||||||
"mmb": ""
|
"mmb": "Mausrad"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Alle Daten werden lokal in Deinem Browser gespeichert.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "Möchtest du stattdessen zu Excalidraw+ gehen?",
|
"center_heading_plus": "Möchtest du stattdessen zu Excalidraw+ gehen?",
|
||||||
"menuHint": "Exportieren, Einstellungen, Sprachen, ..."
|
"menuHint": "Exportieren, Einstellungen, Sprachen, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "Einfügen",
|
"button": "Einfügen",
|
||||||
"description": "Derzeit werden nur <flowchartLink>Flussdiagramme</flowchartLink>, <sequenceLink>Sequenzdiagramme</sequenceLink> und <classLink>Klassendiagramme</classLink> unterstützt. Die anderen Typen werden als Bild in Excalidraw dargestellt.",
|
"description": "Derzeit werden nur <flowchartLink>Flussdiagramme</flowchartLink>, <sequenceLink>Sequenzdiagramme</sequenceLink> und <classLink>Klassendiagramme</classLink> unterstützt. Die anderen Typen werden als Bild in Excalidraw dargestellt.",
|
||||||
"syntax": "Mermaid-Syntax",
|
"syntax": "Mermaid-Syntax",
|
||||||
"preview": "Vorschau"
|
"preview": "Vorschau",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "Schnellsuche"
|
"placeholder": "Schnellsuche"
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Όλα τα δεδομένα σας αποθηκεύονται τοπικά στο πρόγραμμα περιήγησης.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "Μήπως θέλατε να πάτε στο Excalidraw+;",
|
"center_heading_plus": "Μήπως θέλατε να πάτε στο Excalidraw+;",
|
||||||
"menuHint": "Εξαγωγή, προτιμήσεις, γλώσσες, ..."
|
"menuHint": "Εξαγωγή, προτιμήσεις, γλώσσες, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "Εισαγωγή",
|
"button": "Εισαγωγή",
|
||||||
"description": "Επί του παρόντος υποστηρίζονται μόνο Διαγράμματα <flowchartLink>Ροής</flowchartLink>,<sequenceLink> Ακολουθίας, </sequenceLink> και <classLink>Κλάσεων</classLink>. Οι άλλοι τύποι θα αποδοθούν ως εικόνα στο Excalidraw.",
|
"description": "Επί του παρόντος υποστηρίζονται μόνο Διαγράμματα <flowchartLink>Ροής</flowchartLink>,<sequenceLink> Ακολουθίας, </sequenceLink> και <classLink>Κλάσεων</classLink>. Οι άλλοι τύποι θα αποδοθούν ως εικόνα στο Excalidraw.",
|
||||||
"syntax": "Σύνταξη Mermaid",
|
"syntax": "Σύνταξη Mermaid",
|
||||||
"preview": "Προεπισκόπηση"
|
"preview": "Προεπισκόπηση",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "Γρήγορη αναζήτηση"
|
"placeholder": "Γρήγορη αναζήτηση"
|
||||||
|
|||||||
@@ -171,7 +171,9 @@
|
|||||||
"linkToElement": "Link to object",
|
"linkToElement": "Link to object",
|
||||||
"wrapSelectionInFrame": "Wrap selection in frame",
|
"wrapSelectionInFrame": "Wrap selection in frame",
|
||||||
"tab": "Tab",
|
"tab": "Tab",
|
||||||
"shapeSwitch": "Switch shape"
|
"shapeSwitch": "Switch shape",
|
||||||
|
"preferences": "Preferences",
|
||||||
|
"preferences_toolLock": "Tool lock"
|
||||||
},
|
},
|
||||||
"elementLink": {
|
"elementLink": {
|
||||||
"title": "Link to object",
|
"title": "Link to object",
|
||||||
@@ -557,7 +559,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "All your data is saved locally in your browser.",
|
"center_heading": "Your drawings are saved in your browser's storage.",
|
||||||
|
"center_heading_line2": "Browser storage can be cleared unexpectedly.",
|
||||||
|
"center_heading_line3": "Save your work to a file regularly to avoid losing it.",
|
||||||
"center_heading_plus": "Did you want to go to the Excalidraw+ instead?",
|
"center_heading_plus": "Did you want to go to the Excalidraw+ instead?",
|
||||||
"menuHint": "Export, preferences, languages, ..."
|
"menuHint": "Export, preferences, languages, ..."
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Toda su información es guardada localmente en su navegador.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "¿Quieres ir a Excalidraw+?",
|
"center_heading_plus": "¿Quieres ir a Excalidraw+?",
|
||||||
"menuHint": "Exportar, preferencias, idiomas, ..."
|
"menuHint": "Exportar, preferencias, idiomas, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "Insertar",
|
"button": "Insertar",
|
||||||
"description": "Actualmente sólo estos tipos de <flowchartLink>diagrama de flujo</flowchartLink>,<sequenceLink> Secuencia, </sequenceLink> y <classLink>Clase </classLink> son soportados. Los otros tipos de diagramas se renderizarán como imagen en Excalidraw.",
|
"description": "Actualmente sólo estos tipos de <flowchartLink>diagrama de flujo</flowchartLink>,<sequenceLink> Secuencia, </sequenceLink> y <classLink>Clase </classLink> son soportados. Los otros tipos de diagramas se renderizarán como imagen en Excalidraw.",
|
||||||
"syntax": "Sintaxis Mermaid",
|
"syntax": "Sintaxis Mermaid",
|
||||||
"preview": "Vista previa"
|
"preview": "Vista previa",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "Búsqueda rápida"
|
"placeholder": "Búsqueda rápida"
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Zure datu guztiak lokalean gordetzen dira zure nabigatzailean.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "Horren ordez Excalidraw+-era joan nahi al zenuen?",
|
"center_heading_plus": "Horren ordez Excalidraw+-era joan nahi al zenuen?",
|
||||||
"menuHint": "Esportatu, hobespenak, hizkuntzak..."
|
"menuHint": "Esportatu, hobespenak, hizkuntzak..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "Txertatu",
|
"button": "Txertatu",
|
||||||
"description": "Momentu honetan <flowchartLink>Flowchart</flowchartLink>, <sequenceLink> Sequence, </sequenceLink> eta <classLink>Class </classLink>Diagramak onartzen dira. Beste motak irudi gisa errendatuko dira Excalidrawn.",
|
"description": "Momentu honetan <flowchartLink>Flowchart</flowchartLink>, <sequenceLink> Sequence, </sequenceLink> eta <classLink>Class </classLink>Diagramak onartzen dira. Beste motak irudi gisa errendatuko dira Excalidrawn.",
|
||||||
"syntax": "Mermaid sintaxia",
|
"syntax": "Mermaid sintaxia",
|
||||||
"preview": "Aurrebista"
|
"preview": "Aurrebista",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": ""
|
"placeholder": ""
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "تمام داده های شما به صورت محلی در مرورگر شما ذخیره می شود.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "آیا میخواهید به جای آن به Excalidraw+ بروید؟",
|
"center_heading_plus": "آیا میخواهید به جای آن به Excalidraw+ بروید؟",
|
||||||
"menuHint": "خروجی، ترجیحات، زبان ها، ..."
|
"menuHint": "خروجی، ترجیحات، زبان ها، ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "درج",
|
"button": "درج",
|
||||||
"description": "فعلا فقط <flowchartLink> فلوچارت </flowchartLink> ، <sequenceLink> توالی </sequenceLink> و <classLink> کلاس </classLink> نمودارها پشتیبانی می شوند. انواع دیگر به صورت تصویر در Excalidraw ارائه خواهند شد.",
|
"description": "فعلا فقط <flowchartLink> فلوچارت </flowchartLink> ، <sequenceLink> توالی </sequenceLink> و <classLink> کلاس </classLink> نمودارها پشتیبانی می شوند. انواع دیگر به صورت تصویر در Excalidraw ارائه خواهند شد.",
|
||||||
"syntax": "مرمید syntax",
|
"syntax": "مرمید syntax",
|
||||||
"preview": "پیشنمایش"
|
"preview": "پیشنمایش",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "جستجو فوری"
|
"placeholder": "جستجو فوری"
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Kaikki tietosi on tallennettu paikallisesti selaimellesi.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "Haluatko sen sijaan mennä Excalidraw+:aan?",
|
"center_heading_plus": "Haluatko sen sijaan mennä Excalidraw+:aan?",
|
||||||
"menuHint": "Vie, asetukset, kielet, ..."
|
"menuHint": "Vie, asetukset, kielet, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "",
|
"button": "",
|
||||||
"description": "",
|
"description": "",
|
||||||
"syntax": "",
|
"syntax": "",
|
||||||
"preview": "Esikatsele"
|
"preview": "Esikatsele",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": ""
|
"placeholder": ""
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Toutes vos données sont sauvegardées en local dans votre navigateur.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "Vouliez-vous plutôt aller à Excalidraw+ à la place ?",
|
"center_heading_plus": "Vouliez-vous plutôt aller à Excalidraw+ à la place ?",
|
||||||
"menuHint": "Exportation, préférences, langues, ..."
|
"menuHint": "Exportation, préférences, langues, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "Insérer",
|
"button": "Insérer",
|
||||||
"description": "Actuellement, seuls les diagrammes <flowchartLink>Flowchart</flowchartLink>,<sequenceLink> Sequence, </sequenceLink> et <classLink>de classe </classLink>sont pris en charge. Les autres types seront rendus en tant qu'image dans Excalidraw.",
|
"description": "Actuellement, seuls les diagrammes <flowchartLink>Flowchart</flowchartLink>,<sequenceLink> Sequence, </sequenceLink> et <classLink>de classe </classLink>sont pris en charge. Les autres types seront rendus en tant qu'image dans Excalidraw.",
|
||||||
"syntax": "Syntaxe Mermaid",
|
"syntax": "Syntaxe Mermaid",
|
||||||
"preview": "Prévisualisation"
|
"preview": "Prévisualisation",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "Recherche rapide"
|
"placeholder": "Recherche rapide"
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Toda a información é gardada de maneira local no seu navegador.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "Queres ir a Excalidraw+ no seu lugar?",
|
"center_heading_plus": "Queres ir a Excalidraw+ no seu lugar?",
|
||||||
"menuHint": "Exportar, preferencias, idiomas, ..."
|
"menuHint": "Exportar, preferencias, idiomas, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "Inserir",
|
"button": "Inserir",
|
||||||
"description": "",
|
"description": "",
|
||||||
"syntax": "",
|
"syntax": "",
|
||||||
"preview": "Vista previa"
|
"preview": "Vista previa",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": ""
|
"placeholder": ""
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "כל המידע שלח נשמר מקומית בדפדפן.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "אתה רוצה ללכת אל Excalidraw+ במקום?",
|
"center_heading_plus": "אתה רוצה ללכת אל Excalidraw+ במקום?",
|
||||||
"menuHint": "ייצוא, העדפות, שפות, ..."
|
"menuHint": "ייצוא, העדפות, שפות, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "הוספה",
|
"button": "הוספה",
|
||||||
"description": "לעת עתה נתמכים רק <flowchartLink>תרשימי זרימה</flowchartLink>, <sequenceLink>תהליכים</sequenceLink>, <classLink>ודיאגרמת מחלקה</classLink>. שאר הסוגים ייוצרו כתמונות ב-Excalidraw.",
|
"description": "לעת עתה נתמכים רק <flowchartLink>תרשימי זרימה</flowchartLink>, <sequenceLink>תהליכים</sequenceLink>, <classLink>ודיאגרמת מחלקה</classLink>. שאר הסוגים ייוצרו כתמונות ב-Excalidraw.",
|
||||||
"syntax": "תחביר Mermaid",
|
"syntax": "תחביר Mermaid",
|
||||||
"preview": "תצוגה מקדימה"
|
"preview": "תצוגה מקדימה",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "חיפוש מהיר"
|
"placeholder": "חיפוש מהיר"
|
||||||
|
|||||||
@@ -143,7 +143,7 @@
|
|||||||
},
|
},
|
||||||
"polygon": {
|
"polygon": {
|
||||||
"breakPolygon": "",
|
"breakPolygon": "",
|
||||||
"convertToPolygon": ""
|
"convertToPolygon": "बहुभुज में कनवर्ट करें"
|
||||||
},
|
},
|
||||||
"elementLock": {
|
"elementLock": {
|
||||||
"lock": "ताले में रखें",
|
"lock": "ताले में रखें",
|
||||||
@@ -171,7 +171,7 @@
|
|||||||
"linkToElement": "वस्तु की कड़ी",
|
"linkToElement": "वस्तु की कड़ी",
|
||||||
"wrapSelectionInFrame": "चौकट में चुने हुवे को लपेटे",
|
"wrapSelectionInFrame": "चौकट में चुने हुवे को लपेटे",
|
||||||
"tab": "",
|
"tab": "",
|
||||||
"shapeSwitch": ""
|
"shapeSwitch": "आकार बदलें"
|
||||||
},
|
},
|
||||||
"elementLink": {
|
"elementLink": {
|
||||||
"title": "वस्तु की कड़ी",
|
"title": "वस्तु की कड़ी",
|
||||||
@@ -183,9 +183,9 @@
|
|||||||
"hint_emptyLibrary": "यहाँ जोड़ने के लिए चित्रपटल से एक अवयव चुने, अथवा जन कोष से एक संग्रह नीचे स्थापित करें.",
|
"hint_emptyLibrary": "यहाँ जोड़ने के लिए चित्रपटल से एक अवयव चुने, अथवा जन कोष से एक संग्रह नीचे स्थापित करें.",
|
||||||
"hint_emptyPrivateLibrary": "यहाँ जोड़ने के लिए चित्रपटल से एक अवयव चुने.",
|
"hint_emptyPrivateLibrary": "यहाँ जोड़ने के लिए चित्रपटल से एक अवयव चुने.",
|
||||||
"search": {
|
"search": {
|
||||||
"inputPlaceholder": "",
|
"inputPlaceholder": "लाइब्रेरी में खोजें",
|
||||||
"heading": "",
|
"heading": "लाइब्रेरी मैच",
|
||||||
"noResults": "",
|
"noResults": "कोई मिलता जुलता नहीं मिला |||",
|
||||||
"clearSearch": ""
|
"clearSearch": ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -195,8 +195,8 @@
|
|||||||
"singleResult": "परिणाम",
|
"singleResult": "परिणाम",
|
||||||
"multipleResults": "परिणाम",
|
"multipleResults": "परिणाम",
|
||||||
"placeholder": "पटल पर पाठ्य धूंडे",
|
"placeholder": "पटल पर पाठ्य धूंडे",
|
||||||
"frames": "",
|
"frames": "फ्रेम्स",
|
||||||
"texts": ""
|
"texts": "शब्द"
|
||||||
},
|
},
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"clearReset": "चित्रपटल स्वच्छ करें",
|
"clearReset": "चित्रपटल स्वच्छ करें",
|
||||||
@@ -292,7 +292,7 @@
|
|||||||
},
|
},
|
||||||
"toolBar": {
|
"toolBar": {
|
||||||
"selection": "चयन",
|
"selection": "चयन",
|
||||||
"lasso": "",
|
"lasso": "लासो सलेक्शन",
|
||||||
"image": "प्रतिमा सम्मिलित करें",
|
"image": "प्रतिमा सम्मिलित करें",
|
||||||
"rectangle": "आयात",
|
"rectangle": "आयात",
|
||||||
"diamond": "ईंट",
|
"diamond": "ईंट",
|
||||||
@@ -313,7 +313,7 @@
|
|||||||
"hand": "हाथ ( खिसका के देखने का औज़ार)",
|
"hand": "हाथ ( खिसका के देखने का औज़ार)",
|
||||||
"extraTools": "अधिक उपकरण",
|
"extraTools": "अधिक उपकरण",
|
||||||
"mermaidToExcalidraw": "मर्मेड से एक्सकाली में",
|
"mermaidToExcalidraw": "मर्मेड से एक्सकाली में",
|
||||||
"convertElementType": ""
|
"convertElementType": "आकार प्रकार टॉगल करें"
|
||||||
},
|
},
|
||||||
"element": {
|
"element": {
|
||||||
"rectangle": "आयत",
|
"rectangle": "आयत",
|
||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "आपका सर्व डेटा ब्राउज़र के भीतर स्थानिक जगह पे सुरक्षित किया गया.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "बजाय आपको एक्स-काली-ड्रॉ-प्लस पर जाना है?",
|
"center_heading_plus": "बजाय आपको एक्स-काली-ड्रॉ-प्लस पर जाना है?",
|
||||||
"menuHint": "निर्यात, पसंद, भाषायें, ..."
|
"menuHint": "निर्यात, पसंद, भाषायें, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "सन्निवेश करे",
|
"button": "सन्निवेश करे",
|
||||||
"description": "वर्तमान में केवल <flowchartLink>बहाव चित्र</flowchartLink>, <sequenceLink> अनुक्रम चित्र </sequenceLink> और <classLink>वर्ग चित्र</classLink> का चित्रिकरण संभव हैं. अन्य चित्र प्रकार एक्सकाली प्रतिमा जैसे चित्रित किए जायेंगे.",
|
"description": "वर्तमान में केवल <flowchartLink>बहाव चित्र</flowchartLink>, <sequenceLink> अनुक्रम चित्र </sequenceLink> और <classLink>वर्ग चित्र</classLink> का चित्रिकरण संभव हैं. अन्य चित्र प्रकार एक्सकाली प्रतिमा जैसे चित्रित किए जायेंगे.",
|
||||||
"syntax": "मर्मेड विन्यास",
|
"syntax": "मर्मेड विन्यास",
|
||||||
"preview": "पूर्वावलोकन"
|
"preview": "पूर्वावलोकन",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "त्वरित खोज"
|
"placeholder": "त्वरित खोज"
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"copyAsPng": "Vágólapra másolás mint PNG",
|
"copyAsPng": "Vágólapra másolás mint PNG",
|
||||||
"copyAsSvg": "Vágólapra másolás mint SVG",
|
"copyAsSvg": "Vágólapra másolás mint SVG",
|
||||||
"copyText": "Vágólapra másolás szövegként",
|
"copyText": "Vágólapra másolás szövegként",
|
||||||
"copySource": "",
|
"copySource": "Forrás másolása a vágólapra",
|
||||||
"convertToCode": "",
|
"convertToCode": "Kód generálás",
|
||||||
"bringForward": "Előrébb hozás",
|
"bringForward": "Előrébb hozás",
|
||||||
"sendToBack": "Hátraküldés",
|
"sendToBack": "Hátraküldés",
|
||||||
"bringToFront": "Előrehozás",
|
"bringToFront": "Előrehozás",
|
||||||
@@ -86,7 +86,7 @@
|
|||||||
"layers": "Rétegek",
|
"layers": "Rétegek",
|
||||||
"actions": "Műveletek",
|
"actions": "Műveletek",
|
||||||
"language": "Nyelv",
|
"language": "Nyelv",
|
||||||
"liveCollaboration": "",
|
"liveCollaboration": "Élő együttműködés...",
|
||||||
"duplicateSelection": "Duplikálás",
|
"duplicateSelection": "Duplikálás",
|
||||||
"untitled": "Névtelen",
|
"untitled": "Névtelen",
|
||||||
"name": "Név",
|
"name": "Név",
|
||||||
@@ -95,13 +95,13 @@
|
|||||||
"group": "Csoportosítás",
|
"group": "Csoportosítás",
|
||||||
"ungroup": "Csoportbontás",
|
"ungroup": "Csoportbontás",
|
||||||
"collaborators": "Közreműködők",
|
"collaborators": "Közreműködők",
|
||||||
"toggleGrid": "",
|
"toggleGrid": "Keresés törlése",
|
||||||
"addToLibrary": "Hozzáadás a könyvtárhoz",
|
"addToLibrary": "Hozzáadás a könyvtárhoz",
|
||||||
"removeFromLibrary": "Eltávólítás a könyvtárból",
|
"removeFromLibrary": "Eltávólítás a könyvtárból",
|
||||||
"libraryLoadingMessage": "Könyvtár betöltése…",
|
"libraryLoadingMessage": "Könyvtár betöltése…",
|
||||||
"libraries": "Könyvtárak böngészése",
|
"libraries": "Könyvtárak böngészése",
|
||||||
"loadingScene": "Jelenet betöltése…",
|
"loadingScene": "Jelenet betöltése…",
|
||||||
"loadScene": "",
|
"loadScene": "Betöltés fájlból",
|
||||||
"align": "Igazítás",
|
"align": "Igazítás",
|
||||||
"alignTop": "Felülre igazítás",
|
"alignTop": "Felülre igazítás",
|
||||||
"alignBottom": "Alulra igazítás",
|
"alignBottom": "Alulra igazítás",
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
"showStroke": "Körvonal színválasztó megjelenítése",
|
"showStroke": "Körvonal színválasztó megjelenítése",
|
||||||
"showBackground": "Háttérszín-választó megjelenítése",
|
"showBackground": "Háttérszín-választó megjelenítése",
|
||||||
"showFonts": "",
|
"showFonts": "",
|
||||||
"toggleTheme": "",
|
"toggleTheme": "Világos/sötét háttér kapcsoló",
|
||||||
"theme": "Téma",
|
"theme": "Téma",
|
||||||
"personalLib": "Személyes könyvtár",
|
"personalLib": "Személyes könyvtár",
|
||||||
"excalidrawLib": "Excalidraw könyvtár",
|
"excalidrawLib": "Excalidraw könyvtár",
|
||||||
@@ -126,7 +126,7 @@
|
|||||||
"increaseFontSize": "Betűméret növelése",
|
"increaseFontSize": "Betűméret növelése",
|
||||||
"unbindText": "Szövegkötés feloldása",
|
"unbindText": "Szövegkötés feloldása",
|
||||||
"bindText": "",
|
"bindText": "",
|
||||||
"createContainerFromText": "",
|
"createContainerFromText": "Szöveg bekeretezése",
|
||||||
"link": {
|
"link": {
|
||||||
"edit": "Hivatkozás szerkesztése",
|
"edit": "Hivatkozás szerkesztése",
|
||||||
"editEmbed": "",
|
"editEmbed": "",
|
||||||
@@ -147,34 +147,34 @@
|
|||||||
},
|
},
|
||||||
"elementLock": {
|
"elementLock": {
|
||||||
"lock": "",
|
"lock": "",
|
||||||
"unlock": "",
|
"unlock": "Zárolás feloldása",
|
||||||
"lockAll": "Összes zárolása",
|
"lockAll": "Összes zárolása",
|
||||||
"unlockAll": "Összes feloldása"
|
"unlockAll": "Összes feloldása"
|
||||||
},
|
},
|
||||||
"statusPublished": "Közzétéve",
|
"statusPublished": "Közzétéve",
|
||||||
"sidebarLock": "",
|
"sidebarLock": "Oldalsó sáv nyitva tartása",
|
||||||
"selectAllElementsInFrame": "",
|
"selectAllElementsInFrame": "",
|
||||||
"removeAllElementsFromFrame": "",
|
"removeAllElementsFromFrame": "",
|
||||||
"eyeDropper": "",
|
"eyeDropper": "",
|
||||||
"textToDiagram": "Szövegből diagram",
|
"textToDiagram": "Szövegből diagram",
|
||||||
"prompt": "",
|
"prompt": "Egyéb",
|
||||||
"followUs": "Kövess minket",
|
"followUs": "Kövess minket",
|
||||||
"discordChat": "Discord chat",
|
"discordChat": "Discord chat",
|
||||||
"zoomToFitViewport": "",
|
"zoomToFitViewport": "",
|
||||||
"zoomToFitSelection": "",
|
"zoomToFitSelection": "Nagyítás a kijelölés méretére",
|
||||||
"zoomToFit": "",
|
"zoomToFit": "Az összes elem látótérbe hozása",
|
||||||
"installPWA": "",
|
"installPWA": "",
|
||||||
"autoResize": "",
|
"autoResize": "",
|
||||||
"imageCropping": "",
|
"imageCropping": "",
|
||||||
"unCroppedDimension": "",
|
"unCroppedDimension": "",
|
||||||
"copyElementLink": "",
|
"copyElementLink": "",
|
||||||
"linkToElement": "",
|
"linkToElement": "Hivatkozás az objektumhoz",
|
||||||
"wrapSelectionInFrame": "",
|
"wrapSelectionInFrame": "",
|
||||||
"tab": "",
|
"tab": "Tab",
|
||||||
"shapeSwitch": ""
|
"shapeSwitch": ""
|
||||||
},
|
},
|
||||||
"elementLink": {
|
"elementLink": {
|
||||||
"title": "",
|
"title": "Hivatkozás az objektumhoz",
|
||||||
"desc": "",
|
"desc": "",
|
||||||
"notFound": ""
|
"notFound": ""
|
||||||
},
|
},
|
||||||
@@ -183,31 +183,31 @@
|
|||||||
"hint_emptyLibrary": "",
|
"hint_emptyLibrary": "",
|
||||||
"hint_emptyPrivateLibrary": "",
|
"hint_emptyPrivateLibrary": "",
|
||||||
"search": {
|
"search": {
|
||||||
"inputPlaceholder": "",
|
"inputPlaceholder": "Keresés a könyvtárban",
|
||||||
"heading": "",
|
"heading": "",
|
||||||
"noResults": "",
|
"noResults": "",
|
||||||
"clearSearch": ""
|
"clearSearch": "Keresés törlése"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"title": "",
|
"title": "Rajzvászonon használt",
|
||||||
"noMatch": "",
|
"noMatch": "",
|
||||||
"singleResult": "",
|
"singleResult": "",
|
||||||
"multipleResults": "",
|
"multipleResults": "",
|
||||||
"placeholder": "",
|
"placeholder": "",
|
||||||
"frames": "",
|
"frames": "Keretek",
|
||||||
"texts": ""
|
"texts": "Szövegek"
|
||||||
},
|
},
|
||||||
"buttons": {
|
"buttons": {
|
||||||
"clearReset": "Vászon törlése",
|
"clearReset": "Vászon törlése",
|
||||||
"exportJSON": "Exportálás fájlba",
|
"exportJSON": "Exportálás fájlba",
|
||||||
"exportImage": "",
|
"exportImage": "Kép exportálása...",
|
||||||
"export": "",
|
"export": "Mentés másként...",
|
||||||
"copyToClipboard": "Vágólapra másolás",
|
"copyToClipboard": "Vágólapra másolás",
|
||||||
"copyLink": "",
|
"copyLink": "Link másolása",
|
||||||
"save": "Mentés az aktuális fájlba",
|
"save": "Mentés az aktuális fájlba",
|
||||||
"saveAs": "Mentés másként",
|
"saveAs": "Mentés másként",
|
||||||
"load": "",
|
"load": "Megnyitás",
|
||||||
"getShareableLink": "Megosztható link létrehozása",
|
"getShareableLink": "Megosztható link létrehozása",
|
||||||
"close": "Bezárás",
|
"close": "Bezárás",
|
||||||
"selectLanguage": "Nyelv kiválasztása",
|
"selectLanguage": "Nyelv kiválasztása",
|
||||||
@@ -225,19 +225,19 @@
|
|||||||
"fullScreen": "Teljes képernyő",
|
"fullScreen": "Teljes képernyő",
|
||||||
"darkMode": "Sötét mód",
|
"darkMode": "Sötét mód",
|
||||||
"lightMode": "Világos mód",
|
"lightMode": "Világos mód",
|
||||||
"systemMode": "",
|
"systemMode": "Rendszer mód",
|
||||||
"zenMode": "Letisztult mód",
|
"zenMode": "Letisztult mód",
|
||||||
"objectsSnapMode": "",
|
"objectsSnapMode": "Objektumhoz illeszt",
|
||||||
"exitZenMode": "Kilépés a letisztult módból",
|
"exitZenMode": "Kilépés a letisztult módból",
|
||||||
"cancel": "Mégsem",
|
"cancel": "Mégsem",
|
||||||
"saveLibNames": "",
|
"saveLibNames": "",
|
||||||
"clear": "Kiűrítés",
|
"clear": "Kiűrítés",
|
||||||
"remove": "Eltávolítás",
|
"remove": "Eltávolítás",
|
||||||
"embed": "",
|
"embed": "Beágyazás be/ki",
|
||||||
"publishLibrary": "",
|
"publishLibrary": "",
|
||||||
"submit": "Elküldés",
|
"submit": "Elküldés",
|
||||||
"confirm": "Megerősítés",
|
"confirm": "Megerősítés",
|
||||||
"embeddableInteractionButton": ""
|
"embeddableInteractionButton": "Interakció Kattintással"
|
||||||
},
|
},
|
||||||
"alerts": {
|
"alerts": {
|
||||||
"clearReset": "Ez a művelet törli a vászont. Biztos benne?",
|
"clearReset": "Ez a művelet törli a vászont. Biztos benne?",
|
||||||
@@ -246,7 +246,7 @@
|
|||||||
"couldNotLoadInvalidFile": "Nem sikerült betölteni a helytelen fájlt",
|
"couldNotLoadInvalidFile": "Nem sikerült betölteni a helytelen fájlt",
|
||||||
"importBackendFailed": "Nem sikerült betölteni a szerverről.",
|
"importBackendFailed": "Nem sikerült betölteni a szerverről.",
|
||||||
"cannotExportEmptyCanvas": "Üres vászont nem lehet exportálni.",
|
"cannotExportEmptyCanvas": "Üres vászont nem lehet exportálni.",
|
||||||
"couldNotCopyToClipboard": "",
|
"couldNotCopyToClipboard": "Nem lehet a vágólapra másolni.",
|
||||||
"decryptFailed": "Nem sikerült visszafejteni a titkosított adatot.",
|
"decryptFailed": "Nem sikerült visszafejteni a titkosított adatot.",
|
||||||
"uploadedSecurly": "A feltöltést végpontok közötti titkosítással biztosítottuk, ami azt jelenti, hogy egy harmadik fél nem tudja megnézni a tartalmát, beleértve az Excalidraw szervereit is.",
|
"uploadedSecurly": "A feltöltést végpontok közötti titkosítással biztosítottuk, ami azt jelenti, hogy egy harmadik fél nem tudja megnézni a tartalmát, beleértve az Excalidraw szervereit is.",
|
||||||
"loadSceneOverridePrompt": "A betöltött külső rajz felül fogja írnia meglévőt. Szeretnéd folytatni?",
|
"loadSceneOverridePrompt": "A betöltött külső rajz felül fogja írnia meglévőt. Szeretnéd folytatni?",
|
||||||
@@ -304,31 +304,31 @@
|
|||||||
"library": "Könyvtár",
|
"library": "Könyvtár",
|
||||||
"lock": "Rajzolás után az aktív eszközt tartsa kijelölve",
|
"lock": "Rajzolás után az aktív eszközt tartsa kijelölve",
|
||||||
"penMode": "",
|
"penMode": "",
|
||||||
"link": "",
|
"link": "Hivatkozás hozzáadása/frissítése a kiválasztott alakzathoz",
|
||||||
"eraser": "",
|
"eraser": "Radír",
|
||||||
"frame": "",
|
"frame": "",
|
||||||
"magicframe": "",
|
"magicframe": "",
|
||||||
"embeddable": "",
|
"embeddable": "",
|
||||||
"laser": "",
|
"laser": "Lézermutató",
|
||||||
"hand": "",
|
"hand": "",
|
||||||
"extraTools": "",
|
"extraTools": "További eszközök",
|
||||||
"mermaidToExcalidraw": "",
|
"mermaidToExcalidraw": "",
|
||||||
"convertElementType": ""
|
"convertElementType": ""
|
||||||
},
|
},
|
||||||
"element": {
|
"element": {
|
||||||
"rectangle": "",
|
"rectangle": "Téglalap",
|
||||||
"diamond": "",
|
"diamond": "Rombusz",
|
||||||
"ellipse": "",
|
"ellipse": "Ellipszis",
|
||||||
"arrow": "",
|
"arrow": "Nyíl",
|
||||||
"line": "",
|
"line": "Vonal",
|
||||||
"freedraw": "",
|
"freedraw": "",
|
||||||
"text": "",
|
"text": "Szöveg",
|
||||||
"image": "",
|
"image": "Kép",
|
||||||
"group": "",
|
"group": "Csoport",
|
||||||
"frame": "",
|
"frame": "Keret",
|
||||||
"magicframe": "",
|
"magicframe": "",
|
||||||
"embeddable": "",
|
"embeddable": "Weblap beágyazása",
|
||||||
"selection": "",
|
"selection": "Kijelölés",
|
||||||
"iframe": ""
|
"iframe": ""
|
||||||
},
|
},
|
||||||
"headings": {
|
"headings": {
|
||||||
@@ -338,7 +338,7 @@
|
|||||||
},
|
},
|
||||||
"hints": {
|
"hints": {
|
||||||
"dismissSearch": "",
|
"dismissSearch": "",
|
||||||
"canvasPanning": "",
|
"canvasPanning": "A vászon mozgatásához tartsd lenyomva a {{shortcut_1}} vagy {{shortcut_2}} billentyűt húzás közben, vagy használd a kéz eszközt",
|
||||||
"linearElement": "Kattintással görbe, az eger húzásával pedig egyenes nyilat rajzolhatsz",
|
"linearElement": "Kattintással görbe, az eger húzásával pedig egyenes nyilat rajzolhatsz",
|
||||||
"arrowTool": "",
|
"arrowTool": "",
|
||||||
"arrowBindModifiers": "",
|
"arrowBindModifiers": "",
|
||||||
@@ -380,7 +380,7 @@
|
|||||||
"sceneContent": "Jelenet tartalma:"
|
"sceneContent": "Jelenet tartalma:"
|
||||||
},
|
},
|
||||||
"shareDialog": {
|
"shareDialog": {
|
||||||
"or": ""
|
"or": "Vagy"
|
||||||
},
|
},
|
||||||
"roomDialog": {
|
"roomDialog": {
|
||||||
"desc_intro": "",
|
"desc_intro": "",
|
||||||
@@ -420,7 +420,7 @@
|
|||||||
"drag": "vonszolás",
|
"drag": "vonszolás",
|
||||||
"editor": "Szerkesztő",
|
"editor": "Szerkesztő",
|
||||||
"editLineArrowPoints": "",
|
"editLineArrowPoints": "",
|
||||||
"editText": "",
|
"editText": "Szöveg szerkesztése / címke hozzáadása",
|
||||||
"github": "Hibát találtál? Küld be",
|
"github": "Hibát találtál? Küld be",
|
||||||
"howto": "Kövesd az útmutatóinkat",
|
"howto": "Kövesd az útmutatóinkat",
|
||||||
"or": "vagy",
|
"or": "vagy",
|
||||||
@@ -436,7 +436,7 @@
|
|||||||
"toggleElementLock": "",
|
"toggleElementLock": "",
|
||||||
"movePageUpDown": "",
|
"movePageUpDown": "",
|
||||||
"movePageLeftRight": "",
|
"movePageLeftRight": "",
|
||||||
"cropStart": "",
|
"cropStart": "Kép kivágása",
|
||||||
"cropFinish": ""
|
"cropFinish": ""
|
||||||
},
|
},
|
||||||
"clearCanvasDialog": {
|
"clearCanvasDialog": {
|
||||||
@@ -481,25 +481,25 @@
|
|||||||
"imageExportDialog": {
|
"imageExportDialog": {
|
||||||
"header": "Kép exportálása",
|
"header": "Kép exportálása",
|
||||||
"label": {
|
"label": {
|
||||||
"withBackground": "",
|
"withBackground": "Háttér",
|
||||||
"onlySelected": "",
|
"onlySelected": "Csak a kijelölt",
|
||||||
"darkMode": "",
|
"darkMode": "Sötét mód",
|
||||||
"embedScene": "",
|
"embedScene": "Jelenet beágyazása",
|
||||||
"scale": "",
|
"scale": "Nagyítás",
|
||||||
"padding": ""
|
"padding": "Eltartás"
|
||||||
},
|
},
|
||||||
"tooltip": {
|
"tooltip": {
|
||||||
"embedScene": ""
|
"embedScene": "A jelenetet leíró adatok hozzá lesznek adva a PNG/SVG fájlhoz, így a jelenetet vissza lehet majd tölteni belőle. Ez megnöveli a fájl méretét."
|
||||||
},
|
},
|
||||||
"title": {
|
"title": {
|
||||||
"exportToPng": "",
|
"exportToPng": "Exportálás PNG-be",
|
||||||
"exportToSvg": "",
|
"exportToSvg": "Exportálás SVG-be",
|
||||||
"copyPngToClipboard": ""
|
"copyPngToClipboard": "PNG másolása a vágólapra"
|
||||||
},
|
},
|
||||||
"button": {
|
"button": {
|
||||||
"exportToPng": "",
|
"exportToPng": "PNG",
|
||||||
"exportToSvg": "",
|
"exportToSvg": "SVG",
|
||||||
"copyPngToClipboard": ""
|
"copyPngToClipboard": "Vágólapra másolás"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"encrypted": {
|
"encrypted": {
|
||||||
@@ -508,14 +508,14 @@
|
|||||||
},
|
},
|
||||||
"stats": {
|
"stats": {
|
||||||
"angle": "Szög",
|
"angle": "Szög",
|
||||||
"shapes": "",
|
"shapes": "Alakzatok",
|
||||||
"height": "Magasság",
|
"height": "Magasság",
|
||||||
"scene": "Jelenet",
|
"scene": "Jelenet",
|
||||||
"selected": "Kijelölt",
|
"selected": "Kijelölt",
|
||||||
"storage": "Tárhely",
|
"storage": "Tárhely",
|
||||||
"fullTitle": "",
|
"fullTitle": "",
|
||||||
"title": "",
|
"title": "Tulajdonságok",
|
||||||
"generalStats": "",
|
"generalStats": "Általános",
|
||||||
"elementProperties": "",
|
"elementProperties": "",
|
||||||
"total": "Összesen",
|
"total": "Összesen",
|
||||||
"version": "Verzió",
|
"version": "Verzió",
|
||||||
@@ -540,24 +540,26 @@
|
|||||||
},
|
},
|
||||||
"colors": {
|
"colors": {
|
||||||
"transparent": "Átlátszó",
|
"transparent": "Átlátszó",
|
||||||
"black": "",
|
"black": "Fekete",
|
||||||
"white": "",
|
"white": "Fehér",
|
||||||
"red": "",
|
"red": "Piros",
|
||||||
"pink": "",
|
"pink": "Pink",
|
||||||
"grape": "",
|
"grape": "Szőlő",
|
||||||
"violet": "",
|
"violet": "Lila",
|
||||||
"gray": "",
|
"gray": "Szürke",
|
||||||
"blue": "",
|
"blue": "Kék",
|
||||||
"cyan": "",
|
"cyan": "Cián",
|
||||||
"teal": "",
|
"teal": "Türkiz",
|
||||||
"green": "",
|
"green": "Zöld",
|
||||||
"yellow": "",
|
"yellow": "Sárga",
|
||||||
"orange": "",
|
"orange": "Narancssárga",
|
||||||
"bronze": ""
|
"bronze": "Bronz"
|
||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "",
|
"center_heading_plus": "",
|
||||||
"menuHint": ""
|
"menuHint": ""
|
||||||
},
|
},
|
||||||
@@ -569,7 +571,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"colorPicker": {
|
"colorPicker": {
|
||||||
"color": "",
|
"color": "Szín",
|
||||||
"mostUsedCustomColors": "",
|
"mostUsedCustomColors": "",
|
||||||
"colors": "",
|
"colors": "",
|
||||||
"shades": "",
|
"shades": "",
|
||||||
@@ -612,18 +614,66 @@
|
|||||||
"button": "",
|
"button": "",
|
||||||
"description": "",
|
"description": "",
|
||||||
"syntax": "",
|
"syntax": "",
|
||||||
"preview": ""
|
"preview": "",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "Te",
|
||||||
|
"assistant": "AI asszisztens",
|
||||||
|
"system": "Rendszer"
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "Csevegés",
|
||||||
|
"menu": "Menü",
|
||||||
|
"newChat": "Új csevegés",
|
||||||
|
"deleteChat": "Csevegés törlése",
|
||||||
|
"deleteMessage": "Üzenet törlése",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "Előnézet",
|
||||||
|
"insert": "Beszúrás",
|
||||||
|
"retry": "Újra",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": "Frissítés Plus csomagra"
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": ""
|
"placeholder": "Gyorskeresés"
|
||||||
},
|
},
|
||||||
"fontList": {
|
"fontList": {
|
||||||
"badge": {
|
"badge": {
|
||||||
"old": ""
|
"old": "régi"
|
||||||
},
|
},
|
||||||
"sceneFonts": "",
|
"sceneFonts": "",
|
||||||
"availableFonts": "",
|
"availableFonts": "Elérhető betűtípusok",
|
||||||
"empty": ""
|
"empty": "Nem találhatóak betűtípusok"
|
||||||
},
|
},
|
||||||
"userList": {
|
"userList": {
|
||||||
"empty": "",
|
"empty": "",
|
||||||
@@ -636,13 +686,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"commandPalette": {
|
"commandPalette": {
|
||||||
"title": "",
|
"title": "Parancspanel",
|
||||||
"shortcuts": {
|
"shortcuts": {
|
||||||
"select": "",
|
"select": "Kiválasztás",
|
||||||
"confirm": "",
|
"confirm": "Megerősítés",
|
||||||
"close": ""
|
"close": "Bezárás"
|
||||||
},
|
},
|
||||||
"recents": "",
|
"recents": "Legutóbb használt",
|
||||||
"search": {
|
"search": {
|
||||||
"placeholder": "",
|
"placeholder": "",
|
||||||
"noMatch": ""
|
"noMatch": ""
|
||||||
@@ -651,8 +701,8 @@
|
|||||||
"shortcutHint": ""
|
"shortcutHint": ""
|
||||||
},
|
},
|
||||||
"keys": {
|
"keys": {
|
||||||
"ctrl": "",
|
"ctrl": "Ctrl",
|
||||||
"option": "",
|
"option": "Option",
|
||||||
"cmd": "",
|
"cmd": "",
|
||||||
"alt": "",
|
"alt": "",
|
||||||
"escape": "",
|
"escape": "",
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Semua data Anda disimpan secara lokal di peramban Anda.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "Apa Anda ingin berpindah ke Excalidraw+?",
|
"center_heading_plus": "Apa Anda ingin berpindah ke Excalidraw+?",
|
||||||
"menuHint": "Ekspor, preferensi, bahasa, ..."
|
"menuHint": "Ekspor, preferensi, bahasa, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "Sisipkan",
|
"button": "Sisipkan",
|
||||||
"description": "Saat ini hanya <flowchartLink>Flowchart</flowchartLink>, <sequenceLink>Sekuen, </sequenceLink>, dan <classLink>Kelas</classLink>Diagram yang didukung. Jenis lainnya akan dirender sebagai gambar di Excalidraw.",
|
"description": "Saat ini hanya <flowchartLink>Flowchart</flowchartLink>, <sequenceLink>Sekuen, </sequenceLink>, dan <classLink>Kelas</classLink>Diagram yang didukung. Jenis lainnya akan dirender sebagai gambar di Excalidraw.",
|
||||||
"syntax": "Syntax Mermaid",
|
"syntax": "Syntax Mermaid",
|
||||||
"preview": "Pratinjau"
|
"preview": "Pratinjau",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "Pencarian Cepat"
|
"placeholder": "Pencarian Cepat"
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "Tutti i tuoi dati sono salvati localmente nel browser.",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "Volevi invece andare su Excalidraw+?",
|
"center_heading_plus": "Volevi invece andare su Excalidraw+?",
|
||||||
"menuHint": "Esporta, preferenze, lingue, ..."
|
"menuHint": "Esporta, preferenze, lingue, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "Inserisci",
|
"button": "Inserisci",
|
||||||
"description": "Attualmente sono supportati solo diagrammi di <flowchartLink>flusso</flowchartLink>,<sequenceLink> sequenza, </sequenceLink> e <classLink>classe </classLink>. Gli altri tipi saranno rappresentati come immagini in Excalidraw.",
|
"description": "Attualmente sono supportati solo diagrammi di <flowchartLink>flusso</flowchartLink>,<sequenceLink> sequenza, </sequenceLink> e <classLink>classe </classLink>. Gli altri tipi saranno rappresentati come immagini in Excalidraw.",
|
||||||
"syntax": "Sintassi Mermaid",
|
"syntax": "Sintassi Mermaid",
|
||||||
"preview": "Anteprima"
|
"preview": "Anteprima",
|
||||||
|
"label": "Mermaid",
|
||||||
|
"inputPlaceholder": "Scrivi qui la definizione del diagramma Mermaid..."
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": "Errore!"
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "Inizia a digitare qui la tua idea per il diagramma... ({{shortcut}} per una nuova riga)",
|
||||||
|
"inputPlaceholderWithMessages": "Continua a perfezionare il tuo diagramma...",
|
||||||
|
"generating": "Generazione in corso...",
|
||||||
|
"rateLimitRemaining": "{{count}} richieste rimaste oggi",
|
||||||
|
"role": {
|
||||||
|
"user": "Tu",
|
||||||
|
"assistant": "Assistente IA",
|
||||||
|
"system": "Sistema"
|
||||||
|
},
|
||||||
|
"aiBeta": "IA Beta",
|
||||||
|
"label": "Chat",
|
||||||
|
"menu": "Menu",
|
||||||
|
"newChat": "Nuova Chat",
|
||||||
|
"deleteChat": "Elimina Chat",
|
||||||
|
"deleteMessage": "Cancella messaggio",
|
||||||
|
"viewAsMermaid": "Visualizza come Mermaid",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "Progettiamo il tuo diagramma",
|
||||||
|
"description": "Descrivi il diagramma che vuoi creare e noi lo genereremo per te.",
|
||||||
|
"hint": "Al momento conosciamo i diagrammi di flusso, di sequenza e di classe."
|
||||||
|
},
|
||||||
|
"preview": "Anteprima",
|
||||||
|
"insert": "Inserisci",
|
||||||
|
"retry": "Riprova",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "Il prompt è troppo corto (min {{min}} caratteri)",
|
||||||
|
"promptTooLong": "Il prompt è troppo lungo (max {{max}} caratteri)",
|
||||||
|
"generationFailed": "Generazione non riuscita",
|
||||||
|
"invalidDiagram": "È stato generato un diagramma non valido :(. Puoi modificarlo manualmente, riprovare con la correzione automatica o provare un prompt diverso.",
|
||||||
|
"fixInMermaid": "Modifica Mermaid manualmente→",
|
||||||
|
"aiRepair": "Rigenera (correzione automatica) →",
|
||||||
|
"requestAborted": "Richiesta annullata",
|
||||||
|
"requestFailed": "Richiesta non riuscita",
|
||||||
|
"mermaidParseError": "Errore di sintassi Mermaid"
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "Hai raggiunto il tuo limite di IA sul piano gratuito. Prova Excalidraw+ per saperne di più o torna domani.",
|
||||||
|
"generalRateLimit": "Fermati, sei troppo veloce per noi! Attendi un attimo prima di riprovare.",
|
||||||
|
"messageLimitInputPlaceholder": "Hai raggiunto il limite di messaggi"
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": "Aggiorna alla Plus"
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": "Ricerca rapida"
|
"placeholder": "Ricerca rapida"
|
||||||
|
|||||||
@@ -557,7 +557,9 @@
|
|||||||
},
|
},
|
||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "すべてのデータはブラウザにローカル保存されます。",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "代わりにExcalidraw+を開きますか?",
|
"center_heading_plus": "代わりにExcalidraw+を開きますか?",
|
||||||
"menuHint": "エクスポート、設定、言語..."
|
"menuHint": "エクスポート、設定、言語..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "挿入",
|
"button": "挿入",
|
||||||
"description": "現在、<flowchartLink>Flowchart</flowchartLink>、<sequenceLink>Sequence</sequenceLink>、<classLink>Class</classLink> のダイアグラムのみに対応しています。その他の種類は、Excalidraw では画像として描画されます。",
|
"description": "現在、<flowchartLink>Flowchart</flowchartLink>、<sequenceLink>Sequence</sequenceLink>、<classLink>Class</classLink> のダイアグラムのみに対応しています。その他の種類は、Excalidraw では画像として描画されます。",
|
||||||
"syntax": "Mermaid 構文",
|
"syntax": "Mermaid 構文",
|
||||||
"preview": "プレビュー"
|
"preview": "プレビュー",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": ""
|
"placeholder": ""
|
||||||
|
|||||||
@@ -558,6 +558,8 @@
|
|||||||
"welcomeScreen": {
|
"welcomeScreen": {
|
||||||
"app": {
|
"app": {
|
||||||
"center_heading": "",
|
"center_heading": "",
|
||||||
|
"center_heading_line2": "",
|
||||||
|
"center_heading_line3": "",
|
||||||
"center_heading_plus": "",
|
"center_heading_plus": "",
|
||||||
"menuHint": "Eksportlaw, sazlawlar, tiller, ..."
|
"menuHint": "Eksportlaw, sazlawlar, tiller, ..."
|
||||||
},
|
},
|
||||||
@@ -612,7 +614,55 @@
|
|||||||
"button": "",
|
"button": "",
|
||||||
"description": "",
|
"description": "",
|
||||||
"syntax": "",
|
"syntax": "",
|
||||||
"preview": ""
|
"preview": "",
|
||||||
|
"label": "",
|
||||||
|
"inputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"ttd": {
|
||||||
|
"error": ""
|
||||||
|
},
|
||||||
|
"chat": {
|
||||||
|
"inputPlaceholder": "",
|
||||||
|
"inputPlaceholderWithMessages": "",
|
||||||
|
"generating": "",
|
||||||
|
"rateLimitRemaining": "",
|
||||||
|
"role": {
|
||||||
|
"user": "",
|
||||||
|
"assistant": "",
|
||||||
|
"system": ""
|
||||||
|
},
|
||||||
|
"aiBeta": "",
|
||||||
|
"label": "",
|
||||||
|
"menu": "",
|
||||||
|
"newChat": "",
|
||||||
|
"deleteChat": "",
|
||||||
|
"deleteMessage": "",
|
||||||
|
"viewAsMermaid": "",
|
||||||
|
"placeholder": {
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"hint": ""
|
||||||
|
},
|
||||||
|
"preview": "",
|
||||||
|
"insert": "",
|
||||||
|
"retry": "",
|
||||||
|
"errors": {
|
||||||
|
"promptTooShort": "",
|
||||||
|
"promptTooLong": "",
|
||||||
|
"generationFailed": "",
|
||||||
|
"invalidDiagram": "",
|
||||||
|
"fixInMermaid": "",
|
||||||
|
"aiRepair": "",
|
||||||
|
"requestAborted": "",
|
||||||
|
"requestFailed": "",
|
||||||
|
"mermaidParseError": ""
|
||||||
|
},
|
||||||
|
"rateLimit": {
|
||||||
|
"messageLimit": "",
|
||||||
|
"generalRateLimit": "",
|
||||||
|
"messageLimitInputPlaceholder": ""
|
||||||
|
},
|
||||||
|
"upsellBtnLabel": ""
|
||||||
},
|
},
|
||||||
"quickSearch": {
|
"quickSearch": {
|
||||||
"placeholder": ""
|
"placeholder": ""
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user