ProjetRIOT/javascript/line-graph.js

91 lines
2.9 KiB
JavaScript
Raw Normal View History

var lineGraph = {
css: null,
exports: {
updateCanvas() {
let canvas = this.$("canvas");
let cx = canvas.getContext("2d");
//Default context properties
cx.textBaseline = "middle";
cx.textAlign = "center";
let width = canvas.width;
let height = canvas.height;
let spacing = 1; //Controls the spacing between each horizontal elements
let data = this.state.data;
cx.clearRect(0, 0, width, height);
if (!data) return;
2023-03-28 16:17:29 +02:00
cx.fillStyle = "#707070";
cx.font = "15px Arial";
cx.fillText("This is an example title", width / 2, 10);
cx.font = "10px Arial";
cx.translate(0, 20);
let total = data.reduce((total, current) => total + current.value, 0);
let curr = 0;
let counter = 0;
2023-03-28 16:17:29 +02:00
let legendWidth = 0;
for (let field of data) {
let start = curr + spacing;
let barWidth = field.value / total * width - spacing * 2;
let text = `${Math.round(field.value / total * 1000) / 10}% (${field.name})`;
cx.fillStyle = this.colors[counter];
cx.fillRect(start, 0, barWidth, height / 3);
cx.fillStyle = "#FFFFFF";
if (cx.measureText(text).width < barWidth) {
cx.fillText(text, start + barWidth / 2, height / 6);
} else if (cx.measureText("...").width < barWidth) {
cx.fillText("...", start + barWidth / 2, height / 6);
}
curr += field.value / total * width;
counter++;
2023-03-28 16:17:29 +02:00
legendWidth += cx.measureText(field.name).width + 25 + 15; // += textWidth + squareWidth + margin
}
cx.textAlign = "left";
legendWidth -= 15; //On enlève la dernière marge
cx.translate(width / 2 - legendWidth / 2, height / 4 + 20);
counter = 0;
for (let field of data) {
cx.fillStyle = this.colors[counter];
cx.fillRect(0, 0, 25, 25);
cx.fillStyle = "#707070";
cx.fillText(field.name, 30, 12.5);
cx.translate(cx.measureText(field.name).width + 25 + 15, 0);
counter++;
}
},
onMounted() {
this.colors = ["#003F5C", "#2F4B7C", "#665191", "#A05195", "#D45087"];
this.state.data = [{
name: "P",
2023-03-28 13:06:28 +02:00
value: 52
}, {
name: "AB",
2023-03-28 13:06:28 +02:00
value: 43
}, {
name: "B",
2023-03-28 13:06:28 +02:00
value: 2
}, {
name: "TB",
2023-03-28 13:06:28 +02:00
value: 1
}, {
name: "TBF",
2023-03-28 13:06:28 +02:00
value: 0
}];
let canvas = this.$("canvas");
canvas.width = canvas.clientWidth;
canvas.height = canvas.clientHeight;
this.updateCanvas();
2023-03-28 16:17:29 +02:00
new ResizeObserver(this.updateCanvas).observe(canvas);
},
onUpdated(props, state) {
console.log("boop");
this.updateCanvas();
}
},
2023-03-28 16:17:29 +02:00
template: (template, expressionTypes, bindingTypes, getComponent) => template('<div style="height: inherit; width: inherit;"><canvas style="height: 100%; width: 100%;"></canvas></div>', []),
name: 'line-graph'
};
export { lineGraph as default };