2017-08-31 16:06:47 +01:00
|
|
|
import { Directive, Component, OnInit } from '@angular/core';
|
2018-04-13 16:07:26 +01:00
|
|
|
import { CurrencyPipe } from '@angular/common';
|
2017-08-31 16:06:47 +01:00
|
|
|
import { ApiService } from '../providers/api-service';
|
|
|
|
import { Router } from '@angular/router';
|
|
|
|
import { GraphWidget } from '../widgets/graph-widget.component';
|
2017-12-12 15:10:44 +00:00
|
|
|
import { CustBarSnippetComponent } from '../snippets/cust-snippet-bar.component';
|
2017-12-13 12:37:11 +00:00
|
|
|
import { PiePanel } from '../panels/pie-panel.component';
|
2017-12-12 15:10:44 +00:00
|
|
|
import { DataType } from '../shared/data-types.enum';
|
2018-04-13 16:37:26 +01:00
|
|
|
import * as moment from 'moment';
|
|
|
|
import 'rxjs/add/operator/map';
|
2017-08-31 16:06:47 +01:00
|
|
|
|
|
|
|
@Component({
|
2017-08-31 18:44:17 +01:00
|
|
|
templateUrl: 'dashboard-customer.component.html'
|
2017-08-31 16:06:47 +01:00
|
|
|
})
|
2017-08-31 18:44:17 +01:00
|
|
|
export class DashboardCustomerComponent implements OnInit {
|
|
|
|
|
|
|
|
/* Setting up dashboard's main variables*/
|
|
|
|
name: any;
|
2017-09-19 15:04:49 +01:00
|
|
|
email: any;
|
2017-08-31 18:44:17 +01:00
|
|
|
myPearPoints: any;
|
|
|
|
trends: any;
|
|
|
|
myRank: any;
|
|
|
|
username: any;
|
2017-12-15 17:44:50 +00:00
|
|
|
maxPurchase: number = 0;
|
2017-08-31 18:44:17 +01:00
|
|
|
|
2017-12-19 18:01:29 +00:00
|
|
|
disableSectorButton: boolean = false;
|
|
|
|
|
2018-04-13 16:07:26 +01:00
|
|
|
public chartType = 'doughnut';
|
|
|
|
public chartLegend = true;
|
2018-04-13 16:37:26 +01:00
|
|
|
public doughnutChartDataCategory: any[] = [];
|
2018-04-13 16:07:26 +01:00
|
|
|
public doughnutChartLabelsCategory: string[] = [];
|
|
|
|
|
2018-05-01 13:23:47 +01:00
|
|
|
public doughnutChartOptionsCategory:any = {
|
2018-04-13 16:07:26 +01:00
|
|
|
tooltips: {
|
|
|
|
callbacks: {
|
|
|
|
label: (tooltip, data) => {
|
|
|
|
return this.tooltipLabelCallback(tooltip, data);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
myWeek1: any;
|
|
|
|
|
|
|
|
weekList1 = [];
|
|
|
|
|
|
|
|
public purchaseNotEssential: number;
|
|
|
|
public purchaseEssential: number;
|
|
|
|
public showEssentialBarChart = false;
|
|
|
|
public showCategoryBarChart = false;
|
|
|
|
public showCategoryDoughnutChart = false;
|
|
|
|
|
|
|
|
public barChartDataEssential:any[]=[
|
|
|
|
{data: 0, label: 'Essential', stack: '1'},
|
|
|
|
{data: 0, label: 'Non-Essential', stack: '1'},
|
|
|
|
];
|
|
|
|
public barChartLabelsEssential:string[] = ['All Purchases'];
|
|
|
|
public barChartOptionsEssential:any = {
|
|
|
|
responsive: true,
|
|
|
|
scales:{
|
|
|
|
xAxes:[{
|
|
|
|
stacked:true
|
|
|
|
}],
|
|
|
|
yAxes:[{
|
|
|
|
stacked:true
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
};
|
|
|
|
public barChartTypeEssential:string = 'horizontalBar';
|
|
|
|
|
|
|
|
public barChartOptionsCategory:any = {
|
|
|
|
scaleShowVerticalLines: false,
|
|
|
|
responsive: true,
|
|
|
|
scales: {
|
|
|
|
yAxes: [{
|
|
|
|
ticks: {
|
|
|
|
beginAtZero: true,
|
|
|
|
callback: label => `£${label}`
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
callbacks: {
|
|
|
|
label: (tooltip, data) => {
|
|
|
|
return this.tooltipLabelCallback(tooltip, data);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
public barChartTypeCategory:string = 'bar';
|
|
|
|
public barChartLegendCategory:boolean = false;
|
|
|
|
public barChartDataCategory:any[]=[];
|
|
|
|
public barChartLabelsCategory:string[] = [];
|
|
|
|
|
2017-12-14 20:14:47 +00:00
|
|
|
weekPurchaseList = {
|
2017-12-19 18:01:29 +00:00
|
|
|
first: 0,
|
|
|
|
second: 0,
|
|
|
|
max: 0,
|
|
|
|
sum: 0,
|
|
|
|
count: 0,
|
2017-12-14 20:14:47 +00:00
|
|
|
};
|
2017-12-13 12:37:11 +00:00
|
|
|
|
2017-12-15 17:20:18 +00:00
|
|
|
sectorNames = {
|
|
|
|
A: 'Agriculture, Forestry & Fishing',
|
|
|
|
B: 'Mining & Quarrying',
|
|
|
|
C: 'Manufacturing',
|
|
|
|
D: 'Electricity, Gas, Steam & Air Conditioning',
|
|
|
|
E: 'Water & Waste Management',
|
|
|
|
F: 'Construction',
|
|
|
|
G: 'Wholesale & Retail Trade',
|
|
|
|
H: 'Transportation & Storage',
|
|
|
|
I: 'Accomodation & Food Services',
|
|
|
|
J: 'Information & Communication',
|
|
|
|
K: 'Financial & Insurance Activities',
|
|
|
|
L: 'Real Estate',
|
|
|
|
M: 'Professional, Scientfic & Technical',
|
|
|
|
N: 'Administrative & Support Services',
|
|
|
|
O: 'Public Administration, Defence & Social Security',
|
|
|
|
P: 'Education',
|
|
|
|
Q: 'Human Health & Social Work',
|
|
|
|
R: 'Arts, Entertainment & Recreation',
|
|
|
|
S: 'Other Service Activities',
|
|
|
|
T: 'Household Domestic Business',
|
2017-12-18 16:20:31 +00:00
|
|
|
U: 'Extraterritorial Organisations and Bodies'
|
2017-12-15 17:20:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sectorIcons = {
|
|
|
|
A: 'icon-drop',
|
|
|
|
B: 'icon-diamond',
|
|
|
|
C: 'icon-settings',
|
|
|
|
D: 'icon-energy',
|
|
|
|
E: 'icon-trash',
|
|
|
|
F: 'icon-wrench',
|
|
|
|
G: 'icon-tag',
|
|
|
|
H: 'icon-speedometer',
|
|
|
|
I: 'icon-cup',
|
2017-12-18 16:20:31 +00:00
|
|
|
J: 'icon-feed',
|
2017-12-15 17:20:18 +00:00
|
|
|
K: 'icon-credit-card',
|
|
|
|
L: 'icon-graph',
|
|
|
|
M: 'icon-chemistry',
|
|
|
|
N: 'icon-drawer',
|
|
|
|
O: 'icon-pie-chart',
|
|
|
|
P: 'icon-graduation',
|
|
|
|
Q: 'icon-support',
|
|
|
|
R: 'icon-film',
|
|
|
|
S: 'icon-calendar',
|
|
|
|
T: 'icon-home',
|
2017-12-19 18:01:29 +00:00
|
|
|
U: 'icon-globe',
|
2017-12-15 17:20:18 +00:00
|
|
|
}
|
|
|
|
|
2017-12-20 13:41:13 +00:00
|
|
|
sectorClasses = {
|
|
|
|
A: 'bg-primary',
|
|
|
|
B: 'bg-success',
|
|
|
|
C: 'bg-danger',
|
|
|
|
D: 'bg-warning',
|
|
|
|
E: 'bg-info',
|
|
|
|
F: 'bg-primary',
|
|
|
|
G: 'bg-success',
|
|
|
|
H: 'bg-danger',
|
|
|
|
I: 'bg-warning',
|
|
|
|
J: 'bg-info',
|
|
|
|
K: 'bg-primary',
|
|
|
|
L: 'bg-success',
|
|
|
|
M: 'bg-danger',
|
|
|
|
N: 'bg-warning',
|
|
|
|
O: 'bg-info',
|
|
|
|
P: 'bg-primary',
|
|
|
|
Q: 'bg-success',
|
|
|
|
R: 'bg-danger',
|
|
|
|
S: 'bg-warning',
|
|
|
|
T: 'bg-info',
|
|
|
|
U: 'bg-primary',
|
|
|
|
}
|
|
|
|
|
2017-12-15 17:20:18 +00:00
|
|
|
sectorLetters: string[] = [];
|
|
|
|
sectorPurchases: number[] = [];
|
2017-12-19 18:01:29 +00:00
|
|
|
sectorLimit: number = 10;
|
2017-12-15 17:20:18 +00:00
|
|
|
|
2017-12-14 20:14:47 +00:00
|
|
|
sectorList: any;
|
|
|
|
|
|
|
|
// Graph widgets
|
2017-12-12 15:10:44 +00:00
|
|
|
public widgetList = [
|
|
|
|
{
|
|
|
|
type: 'graph',
|
|
|
|
name: 'total_last_week',
|
|
|
|
icon: 'icon-diamond',
|
|
|
|
title: 'Last Week Total',
|
|
|
|
dataType: DataType.currency,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'graph',
|
|
|
|
name: 'avg_spend_last_week',
|
|
|
|
icon: 'icon-diamond',
|
|
|
|
title: 'Last Week Avg. Spend',
|
|
|
|
dataType: DataType.currency,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'graph',
|
|
|
|
name: 'total_last_month',
|
|
|
|
title: 'Last Month Total',
|
|
|
|
dataType: DataType.currency,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'graph',
|
|
|
|
name: 'avg_spend_last_month',
|
|
|
|
title: 'Last Month Avg. Spend',
|
|
|
|
dataType: DataType.currency,
|
|
|
|
},
|
|
|
|
];
|
2017-08-31 16:06:47 +01:00
|
|
|
|
|
|
|
constructor(
|
|
|
|
private api: ApiService,
|
2018-04-13 16:07:26 +01:00
|
|
|
private currencyPipe: CurrencyPipe,
|
2017-08-31 16:06:47 +01:00
|
|
|
) {
|
2018-04-13 16:07:26 +01:00
|
|
|
this.setDate();
|
2017-12-18 12:57:40 +00:00
|
|
|
this.api.customerStats().subscribe(
|
2017-12-14 20:14:47 +00:00
|
|
|
result => {
|
2017-12-15 17:20:18 +00:00
|
|
|
this.setWeekPurchaseList(result.weeks);
|
|
|
|
this.setSectorList(result.sectors);
|
2018-04-13 16:07:26 +01:00
|
|
|
this.setWeekData(result);
|
|
|
|
this.setChartData(result.data.cat_total);
|
|
|
|
this.purchaseEssential = result.data.essentials.purchase_no_essential_total;
|
|
|
|
this.purchaseNotEssential = result.data.essentials.purchase_no_total - this.purchaseEssential;
|
|
|
|
this.barChartDataEssential = [
|
|
|
|
{data: [this.purchaseEssential], label: 'Essential', stack: '1'},
|
|
|
|
{data: [this.purchaseNotEssential], label: 'Non-Essential', stack: '1'},
|
|
|
|
];
|
|
|
|
this.showEssentialBarChart = true;
|
2017-12-14 20:14:47 +00:00
|
|
|
},
|
|
|
|
error => {
|
|
|
|
console.log('Retrieval Error');
|
|
|
|
console.log( error._body );
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-04-13 16:07:26 +01:00
|
|
|
private setChartData(dataCat: any) {
|
|
|
|
this.barChartLabelsCategory = Object.keys(dataCat);
|
|
|
|
let barChartDataCategoryInitial = Object.keys(dataCat).map(key => dataCat[key]);
|
|
|
|
this.barChartDataCategory = [
|
|
|
|
{data: barChartDataCategoryInitial, label: 'Series A'},
|
|
|
|
];
|
|
|
|
this.showCategoryBarChart = true;
|
2018-04-16 15:41:45 +01:00
|
|
|
if (this.weekList1) {
|
|
|
|
let doughnutChartDataCategoryInitial = this.weekList1.map(function(a) {return a.value;});
|
|
|
|
this.doughnutChartDataCategory = [
|
|
|
|
{data: doughnutChartDataCategoryInitial, label: 'Series A'},
|
|
|
|
];
|
|
|
|
// setTimeout is currently a workaround for ng2-charts labels
|
|
|
|
setTimeout(() => this.doughnutChartLabelsCategory = this.weekList1.map(function(a) {return a.category;}), 0);
|
|
|
|
this.showCategoryDoughnutChart = true;
|
|
|
|
}
|
2018-04-13 16:07:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private setDate () {
|
|
|
|
this.myWeek1 = moment().startOf('isoWeek').format('YYYY-MM-DD');
|
|
|
|
}
|
|
|
|
|
|
|
|
private setWeekData (data: any) {
|
|
|
|
function prop<T, K extends keyof T>(obj: T, key: K) {
|
|
|
|
return obj[key];
|
|
|
|
}
|
|
|
|
this.weekList1 = prop(data.data.categories, this.myWeek1);
|
|
|
|
}
|
|
|
|
|
2017-12-14 20:14:47 +00:00
|
|
|
public setWeekPurchaseList (data: any) {
|
|
|
|
this.weekPurchaseList = {
|
2017-12-19 18:01:29 +00:00
|
|
|
first: data.first,
|
|
|
|
second: data.second,
|
|
|
|
max: data.max,
|
|
|
|
sum: data.sum,
|
|
|
|
count: data.count,
|
2017-12-14 20:14:47 +00:00
|
|
|
};
|
2017-12-15 17:20:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public setSectorList (data: any) {
|
2017-12-15 17:38:59 +00:00
|
|
|
this.sectorLetters = Object.keys(data.sectors).map(key => data.sectors[key]);
|
|
|
|
this.sectorPurchases = Object.keys(data.purchases).map(key => data.purchases[key]);
|
2017-08-31 16:06:47 +01:00
|
|
|
}
|
|
|
|
|
2018-01-22 17:23:56 +00:00
|
|
|
private loadMore () {
|
2017-12-19 18:01:29 +00:00
|
|
|
this.disableSectorButton = true;
|
|
|
|
this.sectorLimit = 22;
|
|
|
|
}
|
|
|
|
|
2018-04-13 16:07:26 +01:00
|
|
|
public convertHex(hex: string, opacity: number) {
|
|
|
|
hex = hex.replace('#', '');
|
|
|
|
const r = parseInt(hex.substring(0, 2), 16);
|
|
|
|
const g = parseInt(hex.substring(2, 4), 16);
|
|
|
|
const b = parseInt(hex.substring(4, 6), 16);
|
|
|
|
|
|
|
|
const rgba = 'rgba(' + r + ', ' + g + ', ' + b + ', ' + opacity / 100 + ')';
|
|
|
|
return rgba;
|
|
|
|
}
|
|
|
|
|
|
|
|
private tooltipLabelCallback(tooltipItem: any, data: any) {
|
|
|
|
var dataset = data.datasets[tooltipItem.datasetIndex];
|
|
|
|
var value = dataset.data[tooltipItem.index];
|
|
|
|
return this.currencyPipe.transform(value, 'GBP', 'symbol', '1.2-2');
|
|
|
|
}
|
|
|
|
|
|
|
|
// events
|
|
|
|
public chartClicked(e: any): void {
|
|
|
|
}
|
|
|
|
|
|
|
|
public chartHovered(e: any): void {
|
|
|
|
}
|
|
|
|
|
2017-08-31 16:06:47 +01:00
|
|
|
ngOnInit(): void {
|
|
|
|
}
|
|
|
|
}
|