mirror of
https://github.com/excalidraw/excalidraw
synced 2025-07-25 13:58:22 +08:00

This reverts commit c72c47f0cd
.
# Conflicts:
# packages/element/src/freedraw.ts
# packages/excalidraw/tests/__snapshots__/history.test.tsx.snap
# packages/excalidraw/tests/__snapshots__/regressionTests.test.tsx.snap
89 lines
2.2 KiB
TypeScript
89 lines
2.2 KiB
TypeScript
import { DRAWING_CONFIGS } from "@excalidraw/element";
|
|
import { useState, useEffect } from "react";
|
|
|
|
export const FreedrawDebugSliders = () => {
|
|
const [streamline, setStreamline] = useState<number>(
|
|
DRAWING_CONFIGS.default.streamline,
|
|
);
|
|
const [simplify, setSimplify] = useState<number>(
|
|
DRAWING_CONFIGS.default.simplify,
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (!window.h) {
|
|
window.h = {} as any;
|
|
}
|
|
if (!window.h.debugFreedraw) {
|
|
window.h.debugFreedraw = DRAWING_CONFIGS.default;
|
|
}
|
|
|
|
setStreamline(window.h.debugFreedraw.streamline);
|
|
setSimplify(window.h.debugFreedraw.simplify);
|
|
}, []);
|
|
|
|
const handleStreamlineChange = (value: number) => {
|
|
setStreamline(value);
|
|
if (window.h && window.h.debugFreedraw) {
|
|
window.h.debugFreedraw.streamline = value;
|
|
}
|
|
};
|
|
|
|
const handleSimplifyChange = (value: number) => {
|
|
setSimplify(value);
|
|
if (window.h && window.h.debugFreedraw) {
|
|
window.h.debugFreedraw.simplify = value;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
position: "absolute",
|
|
bottom: "10px",
|
|
left: "50%",
|
|
transform: "translateX(-50%)",
|
|
zIndex: 9999,
|
|
padding: "10px",
|
|
borderRadius: "8px",
|
|
border: "1px solid #ccc",
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
gap: "8px",
|
|
fontSize: "12px",
|
|
fontFamily: "monospace",
|
|
}}
|
|
>
|
|
<div>
|
|
<label>
|
|
Streamline: {streamline.toFixed(2)}
|
|
<br />
|
|
<input
|
|
type="range"
|
|
min="0"
|
|
max="1"
|
|
step="0.01"
|
|
value={streamline}
|
|
onChange={(e) => handleStreamlineChange(parseFloat(e.target.value))}
|
|
style={{ width: "150px" }}
|
|
/>
|
|
</label>
|
|
</div>
|
|
<div>
|
|
<label>
|
|
Simplify: {simplify.toFixed(2)}
|
|
<br />
|
|
<input
|
|
type="range"
|
|
min="0"
|
|
max="1"
|
|
step="0.01"
|
|
value={simplify}
|
|
onChange={(e) => handleSimplifyChange(parseFloat(e.target.value))}
|
|
style={{ width: "150px" }}
|
|
/>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|