Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 638d730cd5 | |||
| 80e83374d4 |
@@ -0,0 +1,63 @@
|
|||||||
|
import type { ExcalidrawElement } from "@excalidraw/element/types";
|
||||||
|
|
||||||
|
export type StrokeWidthKey = "thin" | "medium" | "bold";
|
||||||
|
|
||||||
|
export const STROKE_WIDTH_KEYS: readonly StrokeWidthKey[] = [
|
||||||
|
"thin",
|
||||||
|
"medium",
|
||||||
|
"bold",
|
||||||
|
];
|
||||||
|
|
||||||
|
export const STROKE_WIDTH: Readonly<
|
||||||
|
Record<StrokeWidthKey | "extraBold", ExcalidrawElement["strokeWidth"]>
|
||||||
|
> = {
|
||||||
|
thin: 1,
|
||||||
|
medium: 2,
|
||||||
|
bold: 4,
|
||||||
|
extraBold: 8, // unused (may be introduced in the future)
|
||||||
|
};
|
||||||
|
|
||||||
|
// freedraw schema 2.0 uses thinner stroke, but to maintain backwards and
|
||||||
|
// forwards compatibility, instead of changing the shape renderer, we scale
|
||||||
|
// the stroke width by 1/2 (previous, thin was 1, medium 2 etc.)
|
||||||
|
//
|
||||||
|
// note that in the UI, STROKE_WIDTH.thin == FREEDRAW_STROKE_WIDTH.thin still
|
||||||
|
export const FREEDRAW_STROKE_WIDTH: Readonly<
|
||||||
|
Record<StrokeWidthKey | "extraBold", ExcalidrawElement["strokeWidth"]>
|
||||||
|
> = {
|
||||||
|
thin: 0.5,
|
||||||
|
medium: 1,
|
||||||
|
bold: 2,
|
||||||
|
extraBold: 4, // legacy (may be used again in the future)
|
||||||
|
};
|
||||||
|
|
||||||
|
const STROKE_WIDTH_TO_KEY = {
|
||||||
|
generic: Object.fromEntries(
|
||||||
|
Object.entries(STROKE_WIDTH).map(([key, value]) => [value, key]),
|
||||||
|
) as Record<ExcalidrawElement["strokeWidth"], StrokeWidthKey | undefined>,
|
||||||
|
freedraw: Object.fromEntries(
|
||||||
|
Object.entries(FREEDRAW_STROKE_WIDTH).map(([key, value]) => [value, key]),
|
||||||
|
) as Record<ExcalidrawElement["strokeWidth"], StrokeWidthKey | undefined>,
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getStrokeWidthKeyForElement = (
|
||||||
|
element: Pick<ExcalidrawElement, "type" | "strokeWidth">,
|
||||||
|
): StrokeWidthKey | null => {
|
||||||
|
const strokeWidthToKey =
|
||||||
|
element.type === "freedraw"
|
||||||
|
? STROKE_WIDTH_TO_KEY.freedraw
|
||||||
|
: STROKE_WIDTH_TO_KEY.generic;
|
||||||
|
|
||||||
|
return strokeWidthToKey[element.strokeWidth] ?? null;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getStrokeWidthByKey = (
|
||||||
|
elementType: ExcalidrawElement["type"],
|
||||||
|
strokeWidthKey: StrokeWidthKey,
|
||||||
|
): ExcalidrawElement["strokeWidth"] => {
|
||||||
|
return elementType === "freedraw"
|
||||||
|
? FREEDRAW_STROKE_WIDTH[strokeWidthKey]
|
||||||
|
: STROKE_WIDTH[strokeWidthKey];
|
||||||
|
};
|
||||||
|
|
||||||
|
export const DEFAULT_ELEMENT_STROKE_WIDTH_KEY: StrokeWidthKey = "medium";
|
||||||
@@ -5,6 +5,10 @@ import type {
|
|||||||
import type { AppProps, AppState } from "@excalidraw/excalidraw/types";
|
import type { AppProps, AppState } from "@excalidraw/excalidraw/types";
|
||||||
|
|
||||||
import { COLOR_PALETTE } from "./colors";
|
import { COLOR_PALETTE } from "./colors";
|
||||||
|
import {
|
||||||
|
STROKE_WIDTH,
|
||||||
|
DEFAULT_ELEMENT_STROKE_WIDTH_KEY,
|
||||||
|
} from "./constants.strokeWidth";
|
||||||
|
|
||||||
export const supportsResizeObserver =
|
export const supportsResizeObserver =
|
||||||
typeof window !== "undefined" && "ResizeObserver" in window;
|
typeof window !== "undefined" && "ResizeObserver" in window;
|
||||||
@@ -404,48 +408,6 @@ export const ROUGHNESS = {
|
|||||||
cartoonist: 2,
|
cartoonist: 2,
|
||||||
} as const;
|
} as const;
|
||||||
|
|
||||||
export type StrokeWidthKey = "thin" | "medium" | "bold";
|
|
||||||
|
|
||||||
export const STROKE_WIDTH_KEYS: readonly StrokeWidthKey[] = [
|
|
||||||
"thin",
|
|
||||||
"medium",
|
|
||||||
"bold",
|
|
||||||
];
|
|
||||||
|
|
||||||
export const STROKE_WIDTH: Readonly<
|
|
||||||
Record<StrokeWidthKey | "extraBold", ExcalidrawElement["strokeWidth"]>
|
|
||||||
> = {
|
|
||||||
thin: 1,
|
|
||||||
medium: 2,
|
|
||||||
bold: 4,
|
|
||||||
extraBold: 8, // unused (may be introduced in the future)
|
|
||||||
};
|
|
||||||
|
|
||||||
// freedraw schema 2.0 uses thinner stroke, but to maintain backwards and
|
|
||||||
// forwards compatibility, instead of changing the shape renderer, we scale
|
|
||||||
// the stroke width by 1/2 (previous, thin was 1, medium 2 etc.)
|
|
||||||
//
|
|
||||||
// note that in the UI, STROKE_WIDTH.thin == FREEDRAW_STROKE_WIDTH.thin still
|
|
||||||
export const FREEDRAW_STROKE_WIDTH: Readonly<
|
|
||||||
Record<StrokeWidthKey | "extraBold", ExcalidrawElement["strokeWidth"]>
|
|
||||||
> = {
|
|
||||||
thin: 0.5,
|
|
||||||
medium: 1,
|
|
||||||
bold: 2,
|
|
||||||
extraBold: 4, // legacy (may be used again in the future)
|
|
||||||
};
|
|
||||||
|
|
||||||
export const getStrokeWidthByKey = (
|
|
||||||
elementType: ExcalidrawElement["type"],
|
|
||||||
strokeWidthKey: StrokeWidthKey,
|
|
||||||
): ExcalidrawElement["strokeWidth"] => {
|
|
||||||
return elementType === "freedraw"
|
|
||||||
? FREEDRAW_STROKE_WIDTH[strokeWidthKey]
|
|
||||||
: STROKE_WIDTH[strokeWidthKey];
|
|
||||||
};
|
|
||||||
|
|
||||||
export const DEFAULT_ELEMENT_STROKE_WIDTH_KEY: StrokeWidthKey = "medium";
|
|
||||||
|
|
||||||
export const DEFAULT_ELEMENT_PROPS: {
|
export const DEFAULT_ELEMENT_PROPS: {
|
||||||
strokeColor: ExcalidrawElement["strokeColor"];
|
strokeColor: ExcalidrawElement["strokeColor"];
|
||||||
backgroundColor: ExcalidrawElement["backgroundColor"];
|
backgroundColor: ExcalidrawElement["backgroundColor"];
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ export * from "./binary-heap";
|
|||||||
export * from "./bounds";
|
export * from "./bounds";
|
||||||
export * from "./colors";
|
export * from "./colors";
|
||||||
export * from "./constants";
|
export * from "./constants";
|
||||||
|
export * from "./constants.strokeWidth";
|
||||||
export * from "./font-metadata";
|
export * from "./font-metadata";
|
||||||
export * from "./queue";
|
export * from "./queue";
|
||||||
export * from "./keys";
|
export * from "./keys";
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ import {
|
|||||||
DEFAULT_FONT_SIZE,
|
DEFAULT_FONT_SIZE,
|
||||||
FONT_FAMILY,
|
FONT_FAMILY,
|
||||||
ROUNDNESS,
|
ROUNDNESS,
|
||||||
STROKE_WIDTH_KEYS,
|
|
||||||
VERTICAL_ALIGN,
|
VERTICAL_ALIGN,
|
||||||
KEYS,
|
KEYS,
|
||||||
randomInteger,
|
randomInteger,
|
||||||
@@ -25,6 +24,7 @@ import {
|
|||||||
invariant,
|
invariant,
|
||||||
FONT_SIZES,
|
FONT_SIZES,
|
||||||
type StrokeWidthKey,
|
type StrokeWidthKey,
|
||||||
|
getStrokeWidthKeyForElement,
|
||||||
} from "@excalidraw/common";
|
} from "@excalidraw/common";
|
||||||
|
|
||||||
import { canBecomePolygon, getNonDeletedElements } from "@excalidraw/element";
|
import { canBecomePolygon, getNonDeletedElements } from "@excalidraw/element";
|
||||||
@@ -554,23 +554,6 @@ export const actionChangeFillStyle = register<ExcalidrawElement["fillStyle"]>({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const getStrokeWidthKeyForElement = (
|
|
||||||
element: ExcalidrawElement,
|
|
||||||
): StrokeWidthKey | null => {
|
|
||||||
return (
|
|
||||||
STROKE_WIDTH_KEYS.find(
|
|
||||||
(key) => getStrokeWidthByKey(element.type, key) === element.strokeWidth,
|
|
||||||
) ?? null
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const getStrokeWidthForElement = (
|
|
||||||
element: ExcalidrawElement,
|
|
||||||
strokeWidthKey: StrokeWidthKey,
|
|
||||||
): ExcalidrawElement["strokeWidth"] => {
|
|
||||||
return getStrokeWidthByKey(element.type, strokeWidthKey);
|
|
||||||
};
|
|
||||||
|
|
||||||
export const actionChangeStrokeWidth = register<StrokeWidthKey>({
|
export const actionChangeStrokeWidth = register<StrokeWidthKey>({
|
||||||
name: "changeStrokeWidth",
|
name: "changeStrokeWidth",
|
||||||
label: "labels.strokeWidth",
|
label: "labels.strokeWidth",
|
||||||
@@ -581,7 +564,7 @@ export const actionChangeStrokeWidth = register<StrokeWidthKey>({
|
|||||||
return {
|
return {
|
||||||
elements: changeProperty(elements, appState, (el) =>
|
elements: changeProperty(elements, appState, (el) =>
|
||||||
newElementWith(el, {
|
newElementWith(el, {
|
||||||
strokeWidth: getStrokeWidthForElement(el, value),
|
strokeWidth: getStrokeWidthByKey(el.type, value),
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
appState: { ...appState, currentItemStrokeWidthKey: value },
|
appState: { ...appState, currentItemStrokeWidthKey: value },
|
||||||
|
|||||||
@@ -19,9 +19,8 @@ import {
|
|||||||
getSizeFromPoints,
|
getSizeFromPoints,
|
||||||
normalizeLink,
|
normalizeLink,
|
||||||
getLineHeight,
|
getLineHeight,
|
||||||
STROKE_WIDTH,
|
|
||||||
STROKE_WIDTH_KEYS,
|
STROKE_WIDTH_KEYS,
|
||||||
type StrokeWidthKey,
|
STROKE_WIDTH,
|
||||||
} from "@excalidraw/common";
|
} from "@excalidraw/common";
|
||||||
import {
|
import {
|
||||||
calculateFixedPointForNonElbowArrowBinding,
|
calculateFixedPointForNonElbowArrowBinding,
|
||||||
@@ -58,6 +57,8 @@ import { getNormalizedDimensions } from "@excalidraw/element";
|
|||||||
|
|
||||||
import { isInvisiblySmallElement } from "@excalidraw/element";
|
import { isInvisiblySmallElement } from "@excalidraw/element";
|
||||||
|
|
||||||
|
import type { StrokeWidthKey } from "@excalidraw/common";
|
||||||
|
|
||||||
import type { LocalPoint, Radians } from "@excalidraw/math";
|
import type { LocalPoint, Radians } from "@excalidraw/math";
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
|
|||||||
Reference in New Issue
Block a user