2014-07-22 23:20:45 -04:00
|
|
|
export default Ember.ObjectController.extend({
|
2013-03-17 15:02:36 -04:00
|
|
|
viewMode: 'table',
|
2013-05-29 13:33:54 -04:00
|
|
|
viewingTable: Em.computed.equal('viewMode', 'table'),
|
|
|
|
viewingBarChart: Em.computed.equal('viewMode', 'barChart'),
|
2014-11-05 14:46:27 -05:00
|
|
|
startDate: null,
|
|
|
|
endDate: null,
|
|
|
|
refreshing: false,
|
2013-03-17 15:02:36 -04:00
|
|
|
|
2013-09-16 14:08:55 -04:00
|
|
|
actions: {
|
2014-11-05 14:46:27 -05:00
|
|
|
refreshReport: function() {
|
|
|
|
var self = this;
|
|
|
|
this.set('refreshing', true);
|
|
|
|
Discourse.Report.find(this.get('type'), this.get('startDate'), this.get('endDate')).then(function(r) {
|
|
|
|
self.set('model', r);
|
|
|
|
}).finally(function() {
|
|
|
|
self.set('refreshing', false);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2013-09-16 14:08:55 -04:00
|
|
|
viewAsTable: function() {
|
|
|
|
this.set('viewMode', 'table');
|
|
|
|
},
|
2013-03-17 15:02:36 -04:00
|
|
|
|
2013-09-16 14:08:55 -04:00
|
|
|
viewAsBarChart: function() {
|
|
|
|
this.set('viewMode', 'barChart');
|
|
|
|
}
|
2013-03-17 15:02:36 -04:00
|
|
|
}
|
2014-06-10 11:54:38 -04:00
|
|
|
});
|