discourse/app/assets/javascripts/admin/components/dashboard-mini-chart.js.es6

130 lines
3.0 KiB
Plaintext
Raw Normal View History

import { ajax } from 'discourse/lib/ajax';
import computed from 'ember-addons/ember-computed-decorators';
import loadScript from 'discourse/lib/load-script';
export default Ember.Component.extend({
classNames: ["dashboard-mini-chart"],
classNameBindings: ["trend", "oneDataPoint"],
isLoading: false,
total: null,
trend: null,
title: null,
chartData: null,
oneDataPoint: false,
backgroundColor: "rgba(200,220,240,0.3)",
borderColor: "#08C",
didInsertElement() {
this._super();
loadScript("/javascripts/Chart.min.js").then(() => {
this.fetchReport.apply(this);
});
},
didUpdateAttrs() {
this._super();
this.fetchReport.apply(this);
},
@computed("dataSourceName")
dataSource(dataSourceName) {
return `/admin/reports/${dataSourceName}`;
},
@computed("trend")
trendIcon(trend) {
if (trend === "stable") {
return null;
} else {
return `angle-${trend}`;
}
},
_computeTrend(total, prevTotal) {
const percentChange = ((total - prevTotal) / prevTotal) * 100;
if (percentChange > 50) return "double-up";
if (percentChange > 0) return "up";
if (percentChange === 0) return "stable";
if (percentChange < 50) return "double-down";
if (percentChange < 0) return "down";
},
fetchReport() {
let payload = {data: {}};
if (this.get("startDate")) {
payload.data.start_date = this.get("startDate").toISOString();
}
if (this.get("endDate")) {
payload.data.end_date = this.get("endDate").toISOString();
}
this.set("isLoading", true);
ajax(this.get("dataSource"), payload)
.then((response) => {
const report = response.report;
this.setProperties({
oneDataPoint: (this.get("startDate") && this.get("endDate")) &&
this.get("startDate").isSame(this.get("endDate"), 'day'),
total: report.total,
title: report.title,
trend: this._computeTrend(report.total, report.prev30Days),
chartData: report.data
});
})
.finally(() => {
this.set("isLoading", false);
Ember.run.schedule("afterRender", () => {
if (!this.get("oneDataPoint")) {
this.drawChart();
}
});
});
},
drawChart() {
const ctx = this.$(".chart-canvas")[0].getContext("2d");
let data = {
labels: this.get("chartData").map(r => r.x),
datasets: [{
data: this.get("chartData").map(r => r.y),
backgroundColor: this.get("backgroundColor"),
borderColor: this.get("borderColor")
}]
};
const config = {
type: "line",
data: data,
options: {
legend: { display: false },
responsive: true,
layout: {
padding: { left: 0, top: 0, right: 0, bottom: 0 }
},
scales: {
yAxes: [{
display: true,
ticks: { suggestedMin: 0 }
}],
xAxes: [{ display: true }],
}
},
};
this._chart = new window.Chart(ctx, config);
}
});