mirror of
https://github.com/discourse/discourse.git
synced 2025-04-19 10:19:05 +08:00
DEV: Add stacked line chart mode (#28203)
This commit is contained in:
parent
f70a65ea02
commit
18ac600352
@ -0,0 +1,3 @@
|
||||
<div class="chart-canvas-container">
|
||||
<canvas class="chart-canvas"></canvas>
|
||||
</div>
|
@ -0,0 +1,179 @@
|
||||
import Component from "@ember/component";
|
||||
import { schedule } from "@ember/runloop";
|
||||
import { classNames } from "@ember-decorators/component";
|
||||
import { number } from "discourse/lib/formatter";
|
||||
import loadScript from "discourse/lib/load-script";
|
||||
import discourseDebounce from "discourse-common/lib/debounce";
|
||||
import { makeArray } from "discourse-common/lib/helpers";
|
||||
import { bind } from "discourse-common/utils/decorators";
|
||||
import Report from "admin/models/report";
|
||||
|
||||
@classNames("admin-report-chart", "admin-report-stacked-line-chart")
|
||||
export default class AdminReportStackedLineChart extends Component {
|
||||
didInsertElement() {
|
||||
super.didInsertElement(...arguments);
|
||||
|
||||
window.addEventListener("resize", this._resizeHandler);
|
||||
}
|
||||
|
||||
willDestroyElement() {
|
||||
super.willDestroyElement(...arguments);
|
||||
|
||||
window.removeEventListener("resize", this._resizeHandler);
|
||||
this._resetChart();
|
||||
}
|
||||
|
||||
didReceiveAttrs() {
|
||||
super.didReceiveAttrs(...arguments);
|
||||
|
||||
discourseDebounce(this, this._scheduleChartRendering, 100);
|
||||
}
|
||||
|
||||
@bind
|
||||
_resizeHandler() {
|
||||
discourseDebounce(this, this._scheduleChartRendering, 500);
|
||||
}
|
||||
|
||||
_scheduleChartRendering() {
|
||||
schedule("afterRender", () => {
|
||||
if (!this.element) {
|
||||
return;
|
||||
}
|
||||
|
||||
this._renderChart(
|
||||
this.model,
|
||||
this.element.querySelector(".chart-canvas")
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
_renderChart(model, chartCanvas) {
|
||||
if (!chartCanvas) {
|
||||
return;
|
||||
}
|
||||
|
||||
const context = chartCanvas.getContext("2d");
|
||||
|
||||
const chartData = makeArray(model.chartData || model.data).map((cd) => {
|
||||
return {
|
||||
label: cd.label,
|
||||
color: cd.color,
|
||||
data: Report.collapse(model, cd.data),
|
||||
};
|
||||
});
|
||||
|
||||
const data = {
|
||||
labels: chartData[0].data.mapBy("x"),
|
||||
datasets: chartData.map((cd) => {
|
||||
return {
|
||||
label: cd.label,
|
||||
stack: "pageviews-stack",
|
||||
data: cd.data,
|
||||
fill: true,
|
||||
backgroundColor: this._hexToRGBA(cd.color, 0.3),
|
||||
borderColor: cd.color,
|
||||
pointBackgroundColor: cd.color,
|
||||
pointBorderColor: "#fff",
|
||||
pointHoverBackgroundColor: "#fff",
|
||||
pointHoverBorderColor: cd.color,
|
||||
};
|
||||
}),
|
||||
};
|
||||
|
||||
loadScript("/javascripts/Chart.min.js").then(() => {
|
||||
this._resetChart();
|
||||
|
||||
this._chart = new window.Chart(context, this._buildChartConfig(data));
|
||||
});
|
||||
}
|
||||
|
||||
_buildChartConfig(data) {
|
||||
return {
|
||||
type: "line",
|
||||
data,
|
||||
options: {
|
||||
responsive: true,
|
||||
maintainAspectRatio: false,
|
||||
responsiveAnimationDuration: 0,
|
||||
hover: { mode: "index" },
|
||||
animation: {
|
||||
duration: 0,
|
||||
},
|
||||
plugins: {
|
||||
tooltip: {
|
||||
mode: "index",
|
||||
intersect: false,
|
||||
callbacks: {
|
||||
beforeFooter: (tooltipItem) => {
|
||||
let total = 0;
|
||||
tooltipItem.forEach(
|
||||
(item) => (total += parseInt(item.parsed.y || 0, 10))
|
||||
);
|
||||
return `= ${total}`;
|
||||
},
|
||||
title: (tooltipItem) =>
|
||||
moment(tooltipItem[0].label, "YYYY-MM-DD").format("LL"),
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
layout: {
|
||||
padding: {
|
||||
left: 0,
|
||||
top: 0,
|
||||
right: 0,
|
||||
bottom: 0,
|
||||
},
|
||||
},
|
||||
scales: {
|
||||
y: [
|
||||
{
|
||||
stacked: true,
|
||||
display: true,
|
||||
ticks: {
|
||||
callback: (label) => number(label),
|
||||
sampleSize: 5,
|
||||
maxRotation: 25,
|
||||
minRotation: 25,
|
||||
},
|
||||
},
|
||||
],
|
||||
x: [
|
||||
{
|
||||
display: true,
|
||||
gridLines: { display: false },
|
||||
type: "time",
|
||||
time: {
|
||||
unit: Report.unitForDatapoints(data.labels.length),
|
||||
},
|
||||
ticks: {
|
||||
sampleSize: 5,
|
||||
maxRotation: 50,
|
||||
minRotation: 50,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
_resetChart() {
|
||||
this._chart?.destroy();
|
||||
this._chart = null;
|
||||
}
|
||||
|
||||
_hexToRGBA(hexCode, opacity) {
|
||||
let hex = hexCode.replace("#", "");
|
||||
|
||||
if (hex.length === 3) {
|
||||
hex = hex[0] + hex[0] + hex[1] + hex[1] + hex[2] + hex[2];
|
||||
}
|
||||
|
||||
const r = parseInt(hex.substring(0, 2), 16),
|
||||
g = parseInt(hex.substring(2, 4), 16),
|
||||
b = parseInt(hex.substring(4, 6), 16);
|
||||
|
||||
return `rgba(${r},${g},${b}, ${opacity})`;
|
||||
}
|
||||
}
|
@ -141,7 +141,10 @@ export default class Report extends EmberObject {
|
||||
.locale("en")
|
||||
.format("YYYY-MM-DD");
|
||||
|
||||
if (report.modes[0] === "stacked_chart") {
|
||||
if (
|
||||
report.modes[0] === "stacked_chart" ||
|
||||
report.modes[0] === "stacked_line_chart"
|
||||
) {
|
||||
report[filledField] = report[dataField].map((rep) => {
|
||||
return {
|
||||
req: rep.req,
|
||||
|
@ -1074,6 +1074,7 @@ a.inline-editable-field {
|
||||
@import "common/admin/admin_report_chart";
|
||||
@import "common/admin/admin_report_radar";
|
||||
@import "common/admin/admin_report_stacked_chart";
|
||||
@import "common/admin/admin_report_stacked_line_chart";
|
||||
@import "common/admin/admin_report_table";
|
||||
@import "common/admin/admin_report_inline_table";
|
||||
@import "common/admin/admin_intro";
|
||||
|
@ -0,0 +1,5 @@
|
||||
.admin-report-stacked-line-chart {
|
||||
.chart-canvas-container {
|
||||
height: 250px;
|
||||
}
|
||||
}
|
@ -428,6 +428,7 @@ class Report
|
||||
purple: "#721D8D",
|
||||
magenta: "#E84A5F",
|
||||
brown: "#8A6916",
|
||||
yellow: "#FFCD56",
|
||||
}
|
||||
end
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user