feat: update separator in populate template
Compare changes
+ 110
− 110
import { visualizationColors, type GraphQueryResultFromBackend, type GraphQueryResultMetaFromBackend } from "ts-common";
@@ -20,41 +20,41 @@ dom.window.HTMLCanvasElement.prototype.getContext = function () {
@@ -20,41 +20,41 @@ dom.window.HTMLCanvasElement.prototype.getContext = function () {
async function replaceAllAsync(string: string, regexp: RegExp, replacerFunction: CallableFunction) {
const replacements = await Promise.all(Array.from(string.matchAll(regexp), (match) => replacerFunction(...match)));
export async function populateTemplate(html: string, result: GraphQueryResultMetaFromBackend, openVisualizationArray: any[]) {
const activeVisualization = openVisualizationArray.find((x) => x.name == name); // TODO: enforce type
const xAxisData = getAttributeValues(result, activeVisualization.selectedEntity, activeVisualization.xAxisLabel!);
@@ -72,9 +72,9 @@ export async function populateTemplate(html: string, result: GraphQueryResultMet
@@ -72,9 +72,9 @@ export async function populateTemplate(html: string, result: GraphQueryResultMet
@@ -88,7 +88,7 @@ export async function populateTemplate(html: string, result: GraphQueryResultMet
@@ -88,7 +88,7 @@ export async function populateTemplate(html: string, result: GraphQueryResultMet
@@ -98,11 +98,11 @@ export async function populateTemplate(html: string, result: GraphQueryResultMet
@@ -98,11 +98,11 @@ export async function populateTemplate(html: string, result: GraphQueryResultMet
@@ -116,19 +116,19 @@ const svgToBase64 = (svgString: string) => {
@@ -116,19 +116,19 @@ const svgToBase64 = (svgString: string) => {
const groupByTime = (xAxisData: string[], groupBy: string, additionalVariableData?: (string | number)[]) => {
@@ -137,15 +137,15 @@ const groupByTime = (xAxisData: string[], groupBy: string, additionalVariableDat
@@ -137,15 +137,15 @@ const groupByTime = (xAxisData: string[], groupBy: string, additionalVariableDat
@@ -154,7 +154,7 @@ const groupByTime = (xAxisData: string[], groupBy: string, additionalVariableDat
@@ -154,7 +154,7 @@ const groupByTime = (xAxisData: string[], groupBy: string, additionalVariableDat
@@ -162,9 +162,9 @@ const groupByTime = (xAxisData: string[], groupBy: string, additionalVariableDat
@@ -162,9 +162,9 @@ const groupByTime = (xAxisData: string[], groupBy: string, additionalVariableDat
@@ -183,7 +183,7 @@ const groupByTime = (xAxisData: string[], groupBy: string, additionalVariableDat
@@ -183,7 +183,7 @@ const groupByTime = (xAxisData: string[], groupBy: string, additionalVariableDat
const computeStringTickValues = (xValues: any[], maxTicks: number, maxLabelLength: number): any[] => {
const truncatedValues = xValues.map((label) => (label.length > maxLabelLength ? `${label.slice(0, maxLabelLength)}…` : label));
@@ -198,17 +198,17 @@ export const preparePlotData = (
@@ -198,17 +198,17 @@ export const preparePlotData = (
@@ -218,19 +218,19 @@ export const preparePlotData = (
@@ -218,19 +218,19 @@ export const preparePlotData = (
@@ -240,13 +240,13 @@ export const preparePlotData = (
@@ -240,13 +240,13 @@ export const preparePlotData = (
@@ -286,17 +286,17 @@ export const preparePlotData = (
@@ -286,17 +286,17 @@ export const preparePlotData = (
@@ -315,36 +315,36 @@ export const preparePlotData = (
@@ -315,36 +315,36 @@ export const preparePlotData = (
@@ -352,30 +352,30 @@ export const preparePlotData = (
@@ -352,30 +352,30 @@ export const preparePlotData = (
return zValue ? `X: ${x} | Y: ${yValues[index]} | Color: ${zValue}` : `X: ${x} | Y: ${yValues[index]}`;
customdata: xValues.map((label) => (label === "undefined" || label === "null" || label === "" ? "nonData" : "")),
@@ -394,7 +394,7 @@ export const preparePlotData = (
@@ -394,7 +394,7 @@ export const preparePlotData = (
@@ -407,7 +407,7 @@ export const preparePlotData = (
@@ -407,7 +407,7 @@ export const preparePlotData = (
@@ -430,13 +430,13 @@ export const preparePlotData = (
@@ -430,13 +430,13 @@ export const preparePlotData = (
@@ -446,20 +446,20 @@ export const preparePlotData = (
@@ -446,20 +446,20 @@ export const preparePlotData = (
const colorTranslation = colorToLegendName.get(color) === " " ? "(Empty)" : colorToLegendName.get(color);
const percentage = ((100 * frequencyMap[label].zValueCounts[colorTranslation]) / frequencyMap[label].count).toFixed(1);
return [label, !stack ? frequencyMap[label]?.zValueCounts[colorTranslation] || 0 : percentage, colorTranslation || " "];
"<b>X: %{customdata[0]}</b><br>" + "<b>Y: %{customdata[1]}</b><br>" + "<b>Color: %{customdata[2]}</b><extra></extra>",
@@ -477,19 +477,19 @@ export const preparePlotData = (
@@ -477,19 +477,19 @@ export const preparePlotData = (
@@ -505,7 +505,7 @@ export const preparePlotData = (
@@ -505,7 +505,7 @@ export const preparePlotData = (
const bin = bins[Math.min(binIndex, bins.length - 1)]; // Ensure the last value falls into the final bin
@@ -539,23 +539,23 @@ export const preparePlotData = (
@@ -539,23 +539,23 @@ export const preparePlotData = (
@@ -564,7 +564,7 @@ export const preparePlotData = (
@@ -564,7 +564,7 @@ export const preparePlotData = (
@@ -572,10 +572,10 @@ export const preparePlotData = (
@@ -572,10 +572,10 @@ export const preparePlotData = (
@@ -587,22 +587,22 @@ export const preparePlotData = (
@@ -587,22 +587,22 @@ export const preparePlotData = (
@@ -612,24 +612,24 @@ export const preparePlotData = (
@@ -612,24 +612,24 @@ export const preparePlotData = (
tickvals: typeof yValues[0] === "string" && (plotType === "scatter" || plotType === "line") ? yValues : undefined,
ticktext: typeof yValues[0] === "string" && (plotType === "scatter" || plotType === "line") ? truncatedYLabels : undefined,
@@ -639,21 +639,21 @@ export const preparePlotData = (
@@ -639,21 +639,21 @@ export const preparePlotData = (