Compare commits
1 Commits
dwelle/sta
...
master
Author | SHA1 | Date | |
---|---|---|---|
5639bb8e87 |
@ -1,5 +1,5 @@
|
||||
VITE_APP_BACKEND_V2_GET_URL=https://json.excalidraw.com/api/v2/
|
||||
VITE_APP_BACKEND_V2_POST_URL=https://json.excalidraw.com/api/v2/post/
|
||||
VITE_APP_BACKEND_V2_GET_URL=https://ex.dylanbanta.com/api/v2/scenes/
|
||||
VITE_APP_BACKEND_V2_POST_URL=https://ex.dylanbanta.com/api/v2/scenes/
|
||||
|
||||
VITE_APP_LIBRARY_URL=https://libraries.excalidraw.com
|
||||
VITE_APP_LIBRARY_BACKEND=https://us-central1-excalidraw-room-persistence.cloudfunctions.net/libraries
|
||||
|
@ -19,7 +19,7 @@ services:
|
||||
- ./:/opt/node_app/app:delegated
|
||||
- ./package.json:/opt/node_app/package.json
|
||||
- ./yarn.lock:/opt/node_app/yarn.lock
|
||||
- notused:/opt/node_app/app/node_modules
|
||||
# - notused:/opt/node_app/app/node_modules
|
||||
|
||||
volumes:
|
||||
notused:
|
||||
# volumes:
|
||||
# notused:
|
||||
|
@ -926,17 +926,22 @@ const ExcalidrawWrapper = () => {
|
||||
<ShareDialog
|
||||
collabAPI={collabAPI}
|
||||
onExportToBackend={async () => {
|
||||
if (excalidrawAPI) {
|
||||
if (!excalidrawAPI) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
await onExportToBackend(
|
||||
const { url, errorMessage } = await exportToBackend(
|
||||
excalidrawAPI.getSceneElements(),
|
||||
excalidrawAPI.getAppState(),
|
||||
excalidrawAPI.getFiles(),
|
||||
);
|
||||
if (errorMessage) {
|
||||
throw new Error(errorMessage);
|
||||
}
|
||||
setLatestShareableLink(url);
|
||||
} catch (error: any) {
|
||||
setErrorMessage(error.message);
|
||||
}
|
||||
}
|
||||
}}
|
||||
/>
|
||||
|
||||
|
@ -41,8 +41,8 @@
|
||||
"prettier": "@excalidraw/prettier-config",
|
||||
"scripts": {
|
||||
"build-node": "node ./scripts/build-node.js",
|
||||
"build:app:docker": "cross-env VITE_APP_DISABLE_SENTRY=true vite build",
|
||||
"build:app": "cross-env VITE_APP_GIT_SHA=$VERCEL_GIT_COMMIT_SHA cross-env VITE_APP_ENABLE_TRACKING=true vite build",
|
||||
"build:app:docker": "vite build",
|
||||
"build:app": "vite build",
|
||||
"build:version": "node ../scripts/build-version.js",
|
||||
"build": "yarn build:app && yarn build:version",
|
||||
"start": "yarn && vite",
|
||||
|
@ -39,7 +39,6 @@ const handleDimensionChange: DragInputCallbackType<
|
||||
shouldKeepAspectRatio,
|
||||
shouldChangeByStepSize,
|
||||
nextValue,
|
||||
ratio,
|
||||
property,
|
||||
originalAppState,
|
||||
instantChange,
|
||||
@ -155,12 +154,6 @@ const handleDimensionChange: DragInputCallbackType<
|
||||
}
|
||||
|
||||
if (nextValue !== undefined) {
|
||||
if (ratio) {
|
||||
ratio = property === "width" ? ratio : [ratio[1], ratio[0]];
|
||||
nextValue = (origElement[property] / ratio[0]) * ratio[1];
|
||||
property = property === "width" ? "height" : "width";
|
||||
}
|
||||
|
||||
const nextWidth = Math.max(
|
||||
property === "width"
|
||||
? nextValue
|
||||
|
@ -33,7 +33,6 @@ export type DragInputCallbackType<
|
||||
shouldChangeByStepSize: boolean;
|
||||
scene: Scene;
|
||||
nextValue?: number;
|
||||
ratio?: [number, number] | null;
|
||||
property: P;
|
||||
originalAppState: AppState;
|
||||
setInputValue: (value: number) => void;
|
||||
@ -110,22 +109,11 @@ const StatsDragInput = <
|
||||
}
|
||||
stateRef.current.updatePending = false;
|
||||
|
||||
const ratioMatch = updatedValue
|
||||
.trim()
|
||||
.match(/^(\d+(?:\.\d+)?):(\d+(?:\.\d+)?)$/);
|
||||
|
||||
let ratio: [number, number] | null = null;
|
||||
if (ratioMatch) {
|
||||
ratio = [Number(ratioMatch[1]), Number(ratioMatch[2])];
|
||||
}
|
||||
|
||||
const parsed = Number(updatedValue);
|
||||
if (isNaN(parsed)) {
|
||||
setInputValue(value.toString());
|
||||
if (!ratio) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
const rounded = Number(parsed.toFixed(2));
|
||||
const original = Number(value);
|
||||
@ -135,11 +123,7 @@ const StatsDragInput = <
|
||||
// 2. original was not "Mixed" and the difference between a new value and previous value is greater
|
||||
// than the smallest delta allowed, which is 0.01
|
||||
// reason: idempotent to avoid unnecessary
|
||||
if (
|
||||
isNaN(original) ||
|
||||
ratio ||
|
||||
Math.abs(rounded - original) >= SMALLEST_DELTA
|
||||
) {
|
||||
if (isNaN(original) || Math.abs(rounded - original) >= SMALLEST_DELTA) {
|
||||
stateRef.current.lastUpdatedValue = updatedValue;
|
||||
dragInputCallback({
|
||||
accumulatedChange: 0,
|
||||
@ -150,7 +134,6 @@ const StatsDragInput = <
|
||||
shouldChangeByStepSize: false,
|
||||
scene,
|
||||
nextValue: rounded,
|
||||
ratio,
|
||||
property,
|
||||
originalAppState: appState,
|
||||
setInputValue: (value) => setInputValue(String(value)),
|
||||
|
@ -151,7 +151,6 @@ const handleDimensionChange: DragInputCallbackType<
|
||||
originalAppState,
|
||||
shouldChangeByStepSize,
|
||||
nextValue,
|
||||
ratio,
|
||||
scene,
|
||||
property,
|
||||
}) => {
|
||||
@ -203,22 +202,9 @@ const handleDimensionChange: DragInputCallbackType<
|
||||
origElement &&
|
||||
isPropertyEditable(latestElement, property)
|
||||
) {
|
||||
let _nextValue = nextValue;
|
||||
let _property = property;
|
||||
if (ratio) {
|
||||
let _ratio = ratio;
|
||||
if (ratio) {
|
||||
_ratio = _property === "width" ? _ratio : [_ratio[1], _ratio[0]];
|
||||
_nextValue = (origElement[_property] / _ratio[0]) * _ratio[1];
|
||||
_property = _property === "width" ? "height" : "width";
|
||||
}
|
||||
}
|
||||
|
||||
let nextWidth =
|
||||
_property === "width"
|
||||
? Math.max(0, _nextValue)
|
||||
: latestElement.width;
|
||||
if (_property === "width") {
|
||||
property === "width" ? Math.max(0, nextValue) : latestElement.width;
|
||||
if (property === "width") {
|
||||
if (shouldChangeByStepSize) {
|
||||
nextWidth = getStepSizedValue(nextWidth, STEP_SIZE);
|
||||
} else {
|
||||
@ -227,10 +213,10 @@ const handleDimensionChange: DragInputCallbackType<
|
||||
}
|
||||
|
||||
let nextHeight =
|
||||
_property === "height"
|
||||
? Math.max(0, _nextValue)
|
||||
property === "height"
|
||||
? Math.max(0, nextValue)
|
||||
: latestElement.height;
|
||||
if (_property === "height") {
|
||||
if (property === "height") {
|
||||
if (shouldChangeByStepSize) {
|
||||
nextHeight = getStepSizedValue(nextHeight, STEP_SIZE);
|
||||
} else {
|
||||
@ -248,7 +234,7 @@ const handleDimensionChange: DragInputCallbackType<
|
||||
origElement,
|
||||
originalElementsMap,
|
||||
scene,
|
||||
_property === "width" ? "e" : "s",
|
||||
property === "width" ? "e" : "s",
|
||||
{
|
||||
shouldInformMutation: false,
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user