-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadd-game.component.ts
119 lines (107 loc) · 2.6 KB
/
add-game.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import { Component } from '@angular/core';
import { Router } from '@angular/router';
import { GameService } from 'src/app/services/game.service';
@Component({
selector: 'app-add-game',
templateUrl: './add-game.component.html',
})
export class AddGameComponent {
category: string;
name: string;
price: number;
os: string;
processor: string;
memory: string;
directX: string;
network: string;
hardDrive: string;
soundcard: string;
graphics: string;
imageField: File = null;
imageFields: File[];
description: string;
displayed: boolean = true;
constructor(private gameService: GameService, public router: Router) {}
checkEmpty(input: string) {
if (input == undefined || input == '') {
return false;
}
return true;
}
checkPrice() {
if (
typeof this.price === 'number' &&
!Number.isNaN(this.price) &&
Number.isFinite(this.price) &&
this.price % 1 !== 0
) {
return;
} else {
return 'Price must be a number';
}
}
onFilesSelected(event: any) {
if (event.target.files.length > 0) {
this.imageFields = event.target.files;
}
}
onFileSelected(event: any) {
this.imageField = event.target.files[0];
}
upload(event: any) {
event.preventDefault();
if (
!this.checkEmpty(this.name) ||
!this.checkEmpty(this.category) ||
!this.checkEmpty(this.os) ||
!this.checkEmpty(this.processor) ||
!this.checkEmpty(this.memory) ||
!this.checkEmpty(this.directX) ||
!this.checkEmpty(this.network) ||
!this.checkEmpty(this.hardDrive) ||
!this.checkEmpty(this.soundcard) ||
!this.checkEmpty(this.graphics) ||
!this.checkEmpty(this.description)
) {
this.displayed = false;
return;
}
if (this.checkPrice() == 'Price must be a number') {
this.displayed = false;
return;
}
if (this.imageField == null) {
this.displayed = false;
return;
}
if (this.imageFields == null || this.imageFields.length == 0) {
this.displayed = false;
return;
}
this.gameService
.addGame(
this.name,
this.category,
this.price,
this.os,
this.processor,
this.memory,
this.directX,
this.network,
this.hardDrive,
this.soundcard,
this.graphics,
this.imageField,
this.imageFields,
this.description
)
.subscribe(
(response) => {
this.router.navigate(['']);
},
(error) => {
this.router.navigate(['error/' + error.status]);
}
);
}
}