2023-03-29 17:56:42 +02:00
|
|
|
import { TagRenderingConfigJson } from "../Json/TagRenderingConfigJson"
|
|
|
|
import { Utils } from "../../../Utils"
|
|
|
|
import SpecialVisualizations from "../../../UI/SpecialVisualizations"
|
2023-03-29 18:54:00 +02:00
|
|
|
import { SpecialVisualization } from "../../../UI/SpecialVisualization"
|
2023-03-29 17:56:42 +02:00
|
|
|
|
|
|
|
export default class ValidationUtils {
|
|
|
|
/**
|
|
|
|
* Gives all the (function names of) used special visualisations
|
|
|
|
* @param renderingConfig
|
|
|
|
*/
|
2023-03-29 18:54:00 +02:00
|
|
|
public static getSpecialVisualisations(
|
|
|
|
renderingConfig: TagRenderingConfigJson
|
|
|
|
): SpecialVisualization[] {
|
2023-03-29 17:56:42 +02:00
|
|
|
const translations: any[] = Utils.NoNull([
|
|
|
|
renderingConfig.render,
|
|
|
|
...(renderingConfig.mappings ?? []).map((m) => m.then),
|
|
|
|
])
|
2023-03-29 18:54:00 +02:00
|
|
|
const all: SpecialVisualization[] = []
|
2023-03-29 17:56:42 +02:00
|
|
|
for (let translation of translations) {
|
|
|
|
if (typeof translation == "string") {
|
|
|
|
translation = { "*": translation }
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const key in translation) {
|
|
|
|
if (!translation.hasOwnProperty(key)) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
const template = translation[key]
|
|
|
|
const parts = SpecialVisualizations.constructSpecification(template)
|
|
|
|
const specials = parts
|
|
|
|
.filter((p) => typeof p !== "string")
|
2023-03-29 18:54:00 +02:00
|
|
|
.map((special) => special["func"])
|
2023-03-29 17:56:42 +02:00
|
|
|
all.push(...specials)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return all
|
|
|
|
}
|
|
|
|
}
|