@grafana/ui
Version:
Grafana Components Library
99 lines (96 loc) • 3.52 kB
JavaScript
import tinycolor from 'tinycolor2';
import { ThresholdsMode } from '@grafana/data';
import { GraphThresholdsStyleMode, ScaleOrientation } from '@grafana/schema';
import { scaleGradient, getGradientRange } from './gradientFills.mjs';
;
function getThresholdsDrawHook(options) {
const dashSegments = options.config.mode === GraphThresholdsStyleMode.Dashed || options.config.mode === GraphThresholdsStyleMode.DashedAndArea ? [10, 10] : [];
function addLines(u, yScaleKey, steps, theme2) {
let ctx = u.ctx;
let transparentIndex = 0;
for (let idx = 0; idx < steps.length; idx++) {
const step = steps[idx];
if (step.color === "transparent") {
transparentIndex = idx;
break;
}
}
ctx.lineWidth = 2;
ctx.setLineDash(dashSegments);
for (let idx = 1; idx < steps.length; idx++) {
const step = steps[idx];
let color;
if (transparentIndex >= idx && idx > 0) {
color = tinycolor(theme2.visualization.getColorByName(steps[idx - 1].color));
} else {
color = tinycolor(theme2.visualization.getColorByName(step.color));
}
if (color.getAlpha() === 1) {
color.setAlpha(0.7);
}
const isHorizontal = u.scales.x.ori === ScaleOrientation.Horizontal;
const scaleVal = u.valToPos(step.value, yScaleKey, true);
let x0 = Math.round(isHorizontal ? u.bbox.left : scaleVal);
let y0 = Math.round(isHorizontal ? scaleVal : u.bbox.top);
let x1 = Math.round(isHorizontal ? u.bbox.left + u.bbox.width : scaleVal);
let y1 = Math.round(isHorizontal ? scaleVal : u.bbox.top + u.bbox.height);
ctx.beginPath();
ctx.moveTo(x0, y0);
ctx.lineTo(x1, y1);
ctx.strokeStyle = color.toString();
ctx.stroke();
}
}
function addAreas(u, yScaleKey, steps, theme2) {
let ctx = u.ctx;
let grd = scaleGradient(
u,
yScaleKey,
steps.map((step) => {
let color = tinycolor(theme2.visualization.getColorByName(step.color));
if (color.getAlpha() === 1) {
color.setAlpha(0.15);
}
return [step.value, color.toString()];
}),
true
);
ctx.fillStyle = grd;
ctx.fillRect(u.bbox.left, u.bbox.top, u.bbox.width, u.bbox.height);
}
const { scaleKey, thresholds, theme, config, hardMin, hardMax, softMin, softMax } = options;
return (u) => {
const ctx = u.ctx;
const { min: xMin, max: xMax } = u.scales.x;
const { min: yMin, max: yMax } = u.scales[scaleKey];
if (xMin == null || xMax == null || yMin == null || yMax == null) {
return;
}
let { steps, mode } = thresholds;
if (mode === ThresholdsMode.Percentage) {
let [min, max] = getGradientRange(u, scaleKey, hardMin, hardMax, softMin, softMax);
let range = max - min;
steps = steps.map((step) => ({
...step,
value: min + range * (step.value / 100)
}));
}
ctx.save();
switch (config.mode) {
case GraphThresholdsStyleMode.Line:
case GraphThresholdsStyleMode.Dashed:
addLines(u, scaleKey, steps, theme);
break;
case GraphThresholdsStyleMode.Area:
addAreas(u, scaleKey, steps, theme);
break;
case GraphThresholdsStyleMode.LineAndArea:
case GraphThresholdsStyleMode.DashedAndArea:
addAreas(u, scaleKey, steps, theme);
addLines(u, scaleKey, steps, theme);
}
ctx.restore();
};
}
export { getThresholdsDrawHook };
//# sourceMappingURL=UPlotThresholds.mjs.map