mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
0e15a575f4
This is the first iteration of an effort towards making a very good dashboard. Until we feel confident this is good, this dashboard will only be accessible through /admin/dashboard_next
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
import DiscourseURL from 'discourse/lib/url';
|
|
import computed from 'ember-addons/ember-computed-decorators';
|
|
|
|
export default Ember.Controller.extend({
|
|
queryParams: ["period"],
|
|
|
|
period: "all",
|
|
|
|
@computed("period")
|
|
startDate(period) {
|
|
if (period === "all") return null;
|
|
|
|
switch (period) {
|
|
case "yearly":
|
|
return moment().subtract(1, "year").startOf("day");
|
|
break;
|
|
case "quarterly":
|
|
return moment().subtract(3, "month").startOf("day");
|
|
break;
|
|
case "weekly":
|
|
return moment().subtract(1, "week").startOf("day");
|
|
break;
|
|
case "monthly":
|
|
return moment().subtract(1, "month").startOf("day");
|
|
break;
|
|
case "daily":
|
|
return moment().startOf("day");
|
|
break;
|
|
}
|
|
},
|
|
|
|
@computed("period")
|
|
endDate(period) {
|
|
if (period === "all") return null;
|
|
|
|
return moment().endOf("day");
|
|
},
|
|
|
|
actions: {
|
|
changePeriod(period) {
|
|
DiscourseURL.routeTo(this._reportsForPeriodURL(period));
|
|
}
|
|
},
|
|
|
|
_reportsForPeriodURL(period) {
|
|
return `/admin/dashboard_next?period=${period}`;
|
|
}
|
|
});
|