-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.component.ts
79 lines (63 loc) · 1.67 KB
/
example.component.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import {
Component,
OnInit,
Input,
ViewChild
} from '@angular/core';
import {ActivatedRoute} from '@angular/router';
import {HttpClient} from '@angular/common/http';
@Component({
selector: 'main',
templateUrl: './example.component.html',
styleUrls: ['./example.component.css']
})
export class ExampleComponent implements OnInit {
@Input() outsideVar = 'Testing';
itemList: any[];
items: any[];
removedItems: any[];
amountOwed = 0;
showExampleButton = true;
/**
*
* @param route
* @param http
*/
constructor(
public route: ActivatedRoute,
public http: HttpClient) {
}
onInt() {
this.showExampleButton = false; // Let's hide the button!
console.log('Testing this example component!');
}
/**
* Total Owed
*
* Loop through an array of items and get their cost,
* then add them all up to output into the front-end
*/
totalOwed() {
let due;
this.itemList.forEach(item => {
due += item.cost;
});
this.amountOwed = parseInt(due, 10);
}
/**
* Remove items without a name, then
* adds them into a removed item list
* incase we need to remember which were removed
*/
removeItems() {
// this.items are an array of various products
// Reiterate to remove categories with no specs.
this.items.forEach((item, index) => {
if (!item.name.length) {
this.items.splice(index, 1);
// now push it to a remove item list for tracking
this.removedItems.push(item);
}
});
}
}