in src/canvastools/ts/CanvasTools/Region/Polyline/TagsElement.ts [99:205]
protected initStyleMaps(tags: TagsDescriptor) {
if (tags !== null) {
if (tags.primary !== null) {
this.styleMap = [
{
rule: `.${this.styleId} .primaryTagBoundRectStyle`,
style: `fill: ${tags.primary.colorShadow};
stroke: ${tags.primary.colorAccent};`,
},
{
rule: `.regionStyle.selected.${this.styleId} .primaryTagBoundRectStyle`,
style: `fill: ${tags.primary.colorHighlight};`,
},
{
rule: `.${this.styleId}:hover .primaryTagBoundRectStyle`,
style: `fill: ${tags.primary.colorHighlight};`,
},
{
rule: `.${this.styleId} .primaryTagPolylineStyle`,
style: `stroke: ${tags.primary.colorPure};`,
},
{
rule: `.regionStyle.${this.styleId} .anchorStyle`,
style: `stroke:${tags.primary.colorDark};
fill: ${tags.primary.colorPure}`,
},
{
rule: `.regionStyle.${this.styleId}:hover .anchorStyle`,
style: `stroke:#fff;`,
},
{
rule: `.regionStyle.${this.styleId} .anchorStyle.ghost`,
style: `fill: var(--default-color-ghost);`,
},
];
this.styleLightMap = [
{
rule: `.${this.styleId} .primaryTagBoundRectStyle`,
style: `fill: none;
stroke: ${tags.primary.colorAccent};`,
},
{
rule: `.${this.styleId} .primaryTagPolylineStyle`,
style: `stroke: ${tags.primary.colorPure};
stroke-width: 1px;`,
},
{
rule: `.regionStyle.${this.styleId} .anchorStyle`,
style: `stroke:${tags.primary.colorDark};
fill: ${tags.primary.colorPure};
stroke-width: 1px;`,
},
{
rule: `.regionStyle.${this.styleId}:hover .anchorStyle`,
style: `stroke:#fff;`,
},
{
rule: `.regionStyle.${this.styleId} .anchorStyle.ghost`,
style: `fill: var(--default-color-ghost);
stroke-width: 0px;`,
},
{
rule: `.regionStyle.${this.styleId} .secondaryTagStyle`,
style: `opacity:0.25;`,
},
];
} else {
this.styleMap = [];
this.styleLightMap = [
{
rule: `.${this.styleId} .primaryTagBoundRectStyle`,
style: `fill: none;
stroke: var(--default-color-accent);`,
},
{
rule: `.${this.styleId} .primaryTagBoundRectStyle`,
style: `fill: none;`,
},
{
rule: `.${this.styleId} .primaryTagPolylineStyle`,
style: `stroke-width: 1px;`,
},
{
rule: `.regionStyle.${this.styleId} .anchorStyle`,
style: `stroke-width: 1px;`,
},
{
rule: `.regionStyle.${this.styleId} .anchorStyle.ghost`,
style: `fill: var(--default-color-ghost);`,
},
];
}
if (tags.secondary !== null && tags.secondary !== undefined) {
tags.secondary.forEach((tag) => {
const rule = {
rule: `.secondaryTagStyle.secondaryTag-${tag.name}`,
style: `fill: ${tag.colorAccent};`,
};
this.styleMap.push(rule);
this.styleLightMap.push(rule);
});
}
}
}