-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtableTimeLines.js
More file actions
61 lines (50 loc) · 1.16 KB
/
tableTimeLines.js
File metadata and controls
61 lines (50 loc) · 1.16 KB
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
class TableTimeLines {
tbody;
rows = [];
constructor(name, tableBody) {
this.name = name;
this.tbody = tableBody;
}
add() {
let row = new RowTimeLines(this.tbody, this);
this.rows.push(row);
}
saveData() {
localStorage.setItem(this.name, JSON.stringify(this.getData()));
}
fillData() {
let store = localStorage.getItem(this.name);
console.log(store);
if (store) {
let data = JSON.parse(store);
for (let item of data) {
let row = new RowTimeLines(this.tbody, this);
row.name = item.name;
row.numberOfPeriods = item.numberOfPeriods;
row.weights = item.weights;
row.setInputsState(false);
this.rows.push(row);
}
}
}
getData() {
let result = [];
for (let row of this.rows) {
if (row.status === "Active") {
result.push({ name: row.name, numberOfPeriods: row.numberOfPeriods, weights: row.weights });
}
}
return result;
}
remove() {
localStorage.setItem(this.name);
}
isExistName(name) {
for (let row of this.rows) {
if (row.name === name) {
return true;
}
}
return false;
}
}