feat: add plate (under text) field component

This commit is contained in:
2026-09-05 16:55:00 +05:00
parent 0a7c4a84c9
commit b99ccf5d78
6 changed files with 232 additions and 27 deletions
+53
View File
@@ -137,6 +137,23 @@ export interface FontStyleSpec {
color: string;
}
/**
* Подложка-плашка под текстовой надписью: вкл/выкл, цвет и непрозрачность
* как один объект (add-text, date-stamp).
*/
export interface Plate {
enabled: boolean;
color: string;
opacity: number;
}
export interface PlateSpec {
kind: "plate";
enabled: boolean;
color: string;
opacity: number;
}
/**
* «Объект as const» kind → спека поля. Единственный источник правды для
* перечня kinds: `FieldSpecKind` = ключи map, `FieldSpec` = значение по любому
@@ -155,6 +172,7 @@ export const fieldSpecs = {
offset: {} as OffsetSpec,
position9: {} as Position9Spec,
"font-style": {} as FontStyleSpec,
plate: {} as PlateSpec,
} as const;
export type FieldSpecKind = keyof typeof fieldSpecs;
@@ -232,6 +250,13 @@ export const field = {
}): Field<FontStyle> => ({
spec: { kind: "font-style", ...s },
}),
plate: (s: {
enabled: boolean;
color: string;
opacity: number;
}): Field<Plate> => ({
spec: { kind: "plate", ...s },
}),
};
/**
@@ -271,6 +296,12 @@ export function defaultSchemaParams<P>(
bold: spec.bold,
color: spec.color,
};
} else if (spec.kind === "plate") {
out[key] = {
enabled: spec.enabled,
color: spec.color,
opacity: spec.opacity,
};
} else {
out[key] = spec.default;
}
@@ -388,6 +419,28 @@ export function sanitizeSchemaParams<P>(
};
break;
}
case "plate": {
const r =
typeof raw === "object" &&
raw !== null &&
"enabled" in raw &&
"color" in raw &&
"opacity" in raw
? (raw as Record<string, unknown>)
: undefined;
out[key] = {
enabled: typeof r?.enabled === "boolean" ? r.enabled : spec.enabled,
color:
typeof r?.color === "string" && /^#[0-9a-f]{6}$/i.test(r.color)
? r.color
: spec.color,
opacity:
typeof r?.opacity === "number" && Number.isFinite(r.opacity)
? clamp(r.opacity, 0, 100)
: spec.opacity,
};
break;
}
case "offset": {
const r =
typeof raw === "object" && raw !== null && "x" in raw && "y" in raw