Remove unused event and logger.
This commit is contained in:
parent
f913d52842
commit
9b9a64fb52
@ -9,18 +9,12 @@ import {
|
|||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import { ActivatedRoute, Router, ParamMap } from '@angular/router';
|
import { ActivatedRoute, Router, ParamMap } from '@angular/router';
|
||||||
|
|
||||||
import { Logger } from '@nsalaun/ng-logger';
|
|
||||||
import { jqxChartComponent } from 'jqwidgets-scripts/jqwidgets-ts/angular_jqxchart';
|
import { jqxChartComponent } from 'jqwidgets-scripts/jqwidgets-ts/angular_jqxchart';
|
||||||
|
|
||||||
import { Account } from '../accounts/account';
|
import { Account } from '../accounts/account';
|
||||||
import { DailyBalance } from './dailyBalance';
|
import { DailyBalance } from './dailyBalance';
|
||||||
import { DailyBalanceService } from '../accounts/dailyBalance.service';
|
import { DailyBalanceService } from '../accounts/dailyBalance.service';
|
||||||
|
|
||||||
class DateRange {
|
|
||||||
minDate: Date;
|
|
||||||
maxDate: Date;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'balance-chart',
|
selector: 'balance-chart',
|
||||||
template: `
|
template: `
|
||||||
@ -39,7 +33,6 @@ class DateRange {
|
|||||||
})
|
})
|
||||||
export class BalanceChartComponent implements OnInit, OnChanges {
|
export class BalanceChartComponent implements OnInit, OnChanges {
|
||||||
@Input() account: Account;
|
@Input() account: Account;
|
||||||
@Output() onUpdate: EventEmitter<DateRange> = new EventEmitter<DateRange>();
|
|
||||||
@ViewChild('balanceChart') chart: jqxChartComponent;
|
@ViewChild('balanceChart') chart: jqxChartComponent;
|
||||||
|
|
||||||
public data;
|
public data;
|
||||||
@ -129,7 +122,6 @@ export class BalanceChartComponent implements OnInit, OnChanges {
|
|||||||
constructor(
|
constructor(
|
||||||
private router: Router,
|
private router: Router,
|
||||||
private activatedRoute: ActivatedRoute,
|
private activatedRoute: ActivatedRoute,
|
||||||
private logger: Logger,
|
|
||||||
private dailyBalanceService: DailyBalanceService,
|
private dailyBalanceService: DailyBalanceService,
|
||||||
) {
|
) {
|
||||||
this.data = [];
|
this.data = [];
|
||||||
@ -146,11 +138,6 @@ export class BalanceChartComponent implements OnInit, OnChanges {
|
|||||||
let lastResult = results[results.length -1];
|
let lastResult = results[results.length -1];
|
||||||
|
|
||||||
this.updateXBands(results[0].operation_date, lastResult.operation_date);
|
this.updateXBands(results[0].operation_date, lastResult.operation_date);
|
||||||
|
|
||||||
this.onUpdate.emit({
|
|
||||||
minDate: moment(results[0].operation_date).toDate(),
|
|
||||||
maxDate: moment(lastResult.operation_date).toDate()
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -166,13 +153,10 @@ export class BalanceChartComponent implements OnInit, OnChanges {
|
|||||||
let fromDay = params.get('from');
|
let fromDay = params.get('from');
|
||||||
let toDay = params.get('to');
|
let toDay = params.get('to');
|
||||||
|
|
||||||
this.logger.info('Setting from and to', fromDay, toDay);
|
|
||||||
|
|
||||||
this.xAxis.minValue = moment(fromDay).toDate();
|
this.xAxis.minValue = moment(fromDay).toDate();
|
||||||
this.xAxis.maxValue = moment(toDay).toDate();
|
this.xAxis.maxValue = moment(toDay).toDate();
|
||||||
|
|
||||||
if(this.chart && this.chart.host) {
|
if(this.chart && this.chart.host) {
|
||||||
this.logger.info('Chart', this.chart);
|
|
||||||
this.chart.refresh();
|
this.chart.refresh();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -202,8 +186,6 @@ export class BalanceChartComponent implements OnInit, OnChanges {
|
|||||||
|
|
||||||
this.updateXBands(args.minValue, args.maxValue);
|
this.updateXBands(args.minValue, args.maxValue);
|
||||||
|
|
||||||
this.onUpdate.emit({minDate: args.minValue, maxDate: args.maxValue});
|
|
||||||
|
|
||||||
let accountId = this.activatedRoute.snapshot.paramMap.get('accountId');
|
let accountId = this.activatedRoute.snapshot.paramMap.get('accountId');
|
||||||
|
|
||||||
this.router.navigate(['account', accountId, 'operations'], {
|
this.router.navigate(['account', accountId, 'operations'], {
|
||||||
|
Loading…
Reference in New Issue
Block a user