This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
FoodLoop-Web/src/app/dashboard/dashboard-customer.component.ts

179 lines
4.1 KiB
TypeScript
Raw Normal View History

import { Directive, Component, OnInit } from '@angular/core';
import { ApiService } from '../providers/api-service';
import { Router } from '@angular/router';
import { GraphWidget } from '../widgets/graph-widget.component';
import { CustBarSnippetComponent } from '../snippets/cust-snippet-bar.component';
import { PiePanel } from '../panels/pie-panel.component';
import { DataType } from '../shared/data-types.enum';
@Component({
templateUrl: 'dashboard-customer.component.html'
})
export class DashboardCustomerComponent implements OnInit {
/* Setting up dashboard's main variables*/
name: any;
email: any;
myPearPoints: any;
trends: any;
myRank: any;
username: any;
2017-12-15 17:44:50 +00:00
maxPurchase: number = 0;
disableSectorButton: boolean = false;
2017-12-14 20:14:47 +00:00
weekPurchaseList = {
first: 0,
second: 0,
max: 0,
sum: 0,
count: 0,
2017-12-14 20:14:47 +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',
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[] = [];
sectorLimit: number = 10;
2017-12-15 17:20:18 +00:00
2017-12-14 20:14:47 +00:00
sectorList: any;
// Graph widgets
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,
},
];
constructor(
private api: ApiService,
) {
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);
2017-12-14 20:14:47 +00:00
},
error => {
console.log('Retrieval Error');
console.log( error._body );
}
);
}
public setWeekPurchaseList (data: any) {
this.weekPurchaseList = {
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]);
}
2018-01-22 17:23:56 +00:00
private loadMore () {
this.disableSectorButton = true;
this.sectorLimit = 22;
}
ngOnInit(): void {
}
}