-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.js
158 lines (138 loc) · 3.9 KB
/
user.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
var User = function() {
this.categories = [];
};
User.prototype.removeCategory = function(categoryName) {
var one = 1;
for (var i = 0; i < this.categories.length; i++) {
if (this.categories[i].name == categoryName) {
this.categories.splice(i, 1); //removes 1 element at the index: "indexRemove"
}
}
}
User.prototype.insertCategory = function(categoryObject) {
this.categories.push(categoryObject);
};
User.prototype.getAllCategories = function() {
return this.categories;
}
User.prototype.insertName = function(categoryName, name) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
category.name = name;
}
});
}
User.prototype.insertLowScore = function(categoryName, score) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
category.low_score = score;
console.log("LOOWWW SCORE:", category.low_score);
}
});
}
User.prototype.insertHighScore = function(categoryName, score) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
category.high_score = score;
}
});
}
User.prototype.insertExtraCredit = function(categoryName, extra_credit) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
category.extra_credit = extra_credit;
}
});
}
User.prototype.insertZeroes = function(categoryName, zeroes) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
category.zeroes = zeroes;
}
});
}
User.prototype.addZero = function(categoryName, zero) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
category.zeroes.push(zero);
}
});
}
User.prototype.insertReceived = function(categoryName, received) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
console.log("RECEIVED", received);
category.received = received;
}
});
}
User.prototype.insertScore = function(categoryName, score) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
category.score = score;
}
});
}
User.prototype.insertTotal = function(categoryName, total) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
category.total = total;
}
});
}
User.prototype.insertWeight = function(categoryName, weight) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
category.weight = weight;
}
});
}
User.prototype.getName = function(categoryName, callback) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
callback(category.name);
}
});
}
User.prototype.getReceived = function(categoryName, callback) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
callback(category.received);
}
});
}
User.prototype.getScore = function(categoryName, callback) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
callback(category.score);
}
});
}
User.prototype.getTotal = function(categoryName, callback) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
callback(category.total);
}
});
}
User.prototype.getWeight = function(categoryName, callback) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
callback(category.weight);
}
});
}
User.prototype.getLowScore = function(categoryName, callback) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
callback(category.low_score);
}
});
}
User.prototype.getHighScore = function(categoryName, callback) {
this.categories.forEach(function(category) {
if (category.name == categoryName) {
callback(category.high_score);
}
});
}