accountant-ui/src/operations/category-chart.component.ts

128 lines
4.1 KiB
TypeScript
Raw Normal View History

2017-07-02 00:13:04 +02:00
// vim: set tw=80 ts=4 sw=4 sts=4:
/*
This file is part of Accountant.
Accountant is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Accountant is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Accountant. If not, see <http://www.gnu.org/licenses/>.
*/
/* jshint node: true */
'use strict';
2017-07-27 14:30:12 +02:00
import * as moment from 'moment';
import * as c3 from 'c3';
2017-07-02 00:13:04 +02:00
import {
Component, ElementRef,
Inject, Input, Output, EventEmitter,
OnInit, OnChanges
} from '@angular/core';
import { Account } from '../accounts/account';
import { CategoryService } from './category.service';
@Component({
selector: 'category-chart',
template: '<div></div>'
})
export class CategoryChartComponent implements OnInit, OnChanges {
@Input() minDate: Date;
@Input() maxDate: Date;
@Input() account: Account;
chart: c3.ChartAPI;
constructor(
private elementRef: ElementRef,
private categoryService: CategoryService,
) {}
loadData(account: Account) {
this.categoryService.query(
account.id,
this.minDate,
this.maxDate
).subscribe((results) => {
2017-07-05 21:48:20 +02:00
var expenses=[],
revenues=[],
colors={},
names={};
var revenuesColor = 'green',
expensesColor = 'orange';
for(let result of results) {
2017-07-05 21:48:20 +02:00
2017-07-05 23:19:24 +02:00
if(result.revenues > 0) {
var revenuesName = 'revenues-' + result.category;
2017-07-05 21:48:20 +02:00
2017-07-05 23:19:24 +02:00
revenues.push([revenuesName, result.revenues]);
names[revenuesName] = result.category;
colors[revenuesName] = revenuesColor;
}
2017-07-05 21:48:20 +02:00
2017-07-05 23:19:24 +02:00
if(result.expenses < 0) {
var expensesName = 'expenses-' + result.category;
expenses.splice(0, 0, [expensesName, -result.expenses]);
names[expensesName] = result.category;
colors[expensesName] = expensesColor;
}
};
2017-07-05 21:48:20 +02:00
this.chart.unload();
2017-07-05 21:48:20 +02:00
this.chart.load({
2017-07-05 21:48:20 +02:00
columns: revenues.concat(expenses),
names: names,
colors: colors
});
2017-07-02 00:13:04 +02:00
});
2017-07-05 21:48:20 +02:00
};
ngOnInit() {
this.chart = c3.generate({
bindto: this.elementRef.nativeElement.children[0],
2017-07-05 21:48:20 +02:00
data: {
columns: [],
type: 'donut',
order: null,
},
tooltip: {
format: {
value: function(value, ratio, id, index) {
return value + '€';
}
2017-07-02 00:13:04 +02:00
}
2017-07-05 21:48:20 +02:00
},
donut: {
label: {
format: function(value) {
return value + '€';
}
2017-07-02 00:13:04 +02:00
}
2017-07-05 21:48:20 +02:00
},
legend: {
show: false
2017-07-02 00:13:04 +02:00
}
2017-07-05 21:48:20 +02:00
});
};
ngOnChanges(changes) {
if('account' in changes && changes.account.currentValue) {
this.loadData(changes.account.currentValue);
} else if (this.account) {
this.loadData(this.account);
}
2017-07-05 21:48:20 +02:00
};
}