2021-03-18 23:32:05 +00:00
|
|
|
|
import { AttachmentPointType, isAttachmentPointType } from "./specs";
|
|
|
|
|
|
2021-02-27 02:30:38 +00:00
|
|
|
|
type SvgSymbolMetadataBooleans = {
|
|
|
|
|
/**
|
|
|
|
|
* If true, this indicates that the symbol should always have
|
|
|
|
|
* a symbol nested within its nesting area(s).
|
|
|
|
|
*/
|
|
|
|
|
always_nest?: boolean;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* If true, this indicates that the symbol should always
|
|
|
|
|
* be nested inside another symbol's nesting area.
|
|
|
|
|
*/
|
|
|
|
|
always_be_nested?: boolean;
|
2021-03-01 00:10:53 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* If true, this indicates that the symbol should never
|
|
|
|
|
* be nested inside another symbol's nesting area.
|
|
|
|
|
*/
|
|
|
|
|
never_be_nested?: boolean;
|
2021-03-06 00:38:25 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* If true, this indicates that any symbols nested on this
|
|
|
|
|
* symbol’s nesting area should have their colors inverted.
|
|
|
|
|
*/
|
|
|
|
|
invert_nested?: boolean;
|
2021-02-27 02:30:38 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const METADATA_BOOLEANS: Set<keyof SvgSymbolMetadataBooleans> = new Set([
|
|
|
|
|
"always_nest",
|
|
|
|
|
"always_be_nested",
|
2021-03-01 00:10:53 +00:00
|
|
|
|
"never_be_nested",
|
2021-03-06 00:38:25 +00:00
|
|
|
|
"invert_nested",
|
2021-02-27 02:30:38 +00:00
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
function isSvgSymbolMetadataBoolean(
|
|
|
|
|
key: string
|
|
|
|
|
): key is keyof SvgSymbolMetadataBooleans {
|
|
|
|
|
return METADATA_BOOLEANS.has(key as any);
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-18 23:32:05 +00:00
|
|
|
|
export type SvgSymbolMetadata = SvgSymbolMetadataBooleans & {
|
|
|
|
|
/**
|
|
|
|
|
* If defined, this indicates the kinds of attachment points
|
|
|
|
|
* that this symbol can attach to. If not defined, it will
|
|
|
|
|
* be able to attach to any symbol.
|
|
|
|
|
*/
|
|
|
|
|
attach_to?: AttachmentPointType[];
|
|
|
|
|
};
|
2021-02-27 02:30:38 +00:00
|
|
|
|
|
2021-02-28 23:57:51 +00:00
|
|
|
|
export function validateSvgSymbolMetadata(
|
|
|
|
|
obj: any
|
|
|
|
|
): { metadata: SvgSymbolMetadata; unknownProperties: string[] } {
|
|
|
|
|
const metadata: SvgSymbolMetadata = {};
|
|
|
|
|
const unknownProperties: string[] = [];
|
2021-02-27 02:30:38 +00:00
|
|
|
|
for (let key in obj) {
|
|
|
|
|
const value: unknown = obj[key];
|
|
|
|
|
if (isSvgSymbolMetadataBoolean(key)) {
|
|
|
|
|
if (typeof value !== "boolean") {
|
|
|
|
|
throw new Error(
|
|
|
|
|
`Expected "${key}" to be a boolean, but it is a ${typeof value}!`
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-02-28 23:57:51 +00:00
|
|
|
|
metadata[key] = value;
|
2021-03-18 23:32:05 +00:00
|
|
|
|
} else if (key === "attach_to") {
|
|
|
|
|
metadata.attach_to = validateAttachTo(obj[key]);
|
2021-02-27 02:30:38 +00:00
|
|
|
|
} else {
|
2021-02-28 23:57:51 +00:00
|
|
|
|
unknownProperties.push(key);
|
2021-02-27 02:30:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-28 23:57:51 +00:00
|
|
|
|
return { metadata, unknownProperties };
|
2021-02-27 02:30:38 +00:00
|
|
|
|
}
|
2021-03-18 23:32:05 +00:00
|
|
|
|
|
|
|
|
|
export function validateAttachTo(value: unknown): AttachmentPointType[] {
|
|
|
|
|
if (!Array.isArray(value)) {
|
|
|
|
|
throw new Error(
|
|
|
|
|
`Expected "attach_to" to be an array, but it is a ${typeof value}!`
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const result: AttachmentPointType[] = [];
|
|
|
|
|
|
|
|
|
|
for (let item of value) {
|
|
|
|
|
if (isAttachmentPointType(item)) {
|
|
|
|
|
result.push(item);
|
|
|
|
|
} else {
|
|
|
|
|
console.log(
|
|
|
|
|
`Item '${item}' in "attach_to" is not a valid attachment point.`
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|