-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bouquet.js
138 lines (99 loc) · 2.45 KB
/
Bouquet.js
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
class Bouquet {
constructor(line){
this.bouquetRemain = 0;
this.qtyDone = 0;
this.txt = line;
this.size = line.charAt(1);
this.name = line.charAt(0) + this.size;
var s = this.size
let d = line.slice(2, line.length);
let flowersRaw = d.match(/\d+[a-z]/g).map(String)
const _this = this;
this.folowers = flowersRaw.map((value)=> x(value, _this))
function x(value, self){
var type= value.slice(-1) + s;
var fQty = parseInt(value.slice(0,value.length-1))
_this.bouquetRemain += fQty;
return new Flower(fQty, type);
}
this.qty = d.match(/\d+/g).map(Number).pop()
this.remain = this.qty;
let qty = this.qty - this.bouquetRemain;
if (qty > 0) {
this.folowers.push(new Flower(qty, this.name));
}
}
getQtyDone() {
return this.qtyDone;
}
getName() {
return this.name;
}
getText() {
return this.txt;
}
getTotalRemain(){
return this.remain;
}
getRemain() {
return this.bouquetRemain;
}
getFlowers() {
return this.folowers;
}
reset() {
this.remain = this.qty;
this.qtyDone++;
this.bouquetRemain = 0;
this.folowers.forEach((flower) => {
this.bouquetRemain += flower.reset();
});
}
setbouquetRemainPlus(qty){
this.bouquetRemain += qty;
}
setbouquetRemainMines(qty){
this.bouquetRemain--;
this.remain --;
}
}
class Flower {
constructor(qty, type){
this.qty = qty;
this.type = type;
this.currentQty = 0;
this.remain = qty;
}
setQt(qty) {
this.qty = qty;
}
setType(type) {
this.type = type;
}
setCurrentQty() {
this.currentQty++;
this.remain--;
// bouquetRemain--;
}
setRemain(remain) {
this.remain = remain;
}
getQty() {
return this.qty;
}
getType() {
return this.type;
}
getCurrentQty() {
return this.currentQty;
}
getRemain() {
return this.remain;
}
reset() {
this.currentQty = 0;
this.remain = this.qty;
return this.remain;
}
}
module.exports = Bouquet