-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScript1.js
169 lines (141 loc) · 4.51 KB
/
Script1.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
159
160
161
162
163
164
165
166
167
168
169
import { getLocalData, setLocalData } from './modules/localStorage.js';
import textContent from './modules/textContent.js';
//ARRAYS WITH INDEXES TO ACCES ARRAYS FROM JSON
const ALLKEYS = {
knownWordsArr: [],
doubtfulWordsArr: [],
unknownWordsArr: Array.from(Array(1000).keys()),
likedWordsArr: []
};
//GETTING DATA FROM LOCAL STORAGE FROM PREVIOUS SESSION IF PRESENT
getLocalData(ALLKEYS);
let CURRENTARRAY = ALLKEYS.unknownWordsArr;
let INDEX = 0;
let HEADERCOLOR = 'red';
const id = (id) => {
return document.getElementById(id)
};
const update = () => {
if (CURRENTARRAY) INDEX = CURRENTARRAY[0];
const star = () => {
if (ALLKEYS.likedWordsArr.includes(INDEX)) {
id("like").setAttribute("src", "img/like.png");
} else {
id("like").setAttribute("src", "img/unlike.png");
}
};
star();
id("menuHead").style.backgroundColor = HEADERCOLOR;
textContent(CURRENTARRAY, INDEX, ALLKEYS);
}
update();
document.addEventListener("click", update);
const actions = (moveTo, swipeDirection) => {
const toggleLike = () => {
if (!moveTo.includes(INDEX)) {
moveTo.push(INDEX);
}
else {
ALLKEYS.likedWordsArr.splice(ALLKEYS.likedWordsArr.indexOf(INDEX), 1);
}
};
const move = () => {
if (CURRENTARRAY !== moveTo &&
CURRENTARRAY !== ALLKEYS.likedWordsArr) {
CURRENTARRAY.splice(CURRENTARRAY.indexOf(INDEX), 1);
moveTo.push(INDEX);
}
}
const swipe = () => {
if (swipeDirection == "right") {
const firstElement = CURRENTARRAY.shift();
CURRENTARRAY.push(firstElement);
}
if (swipeDirection == "left") {
const lastElement = CURRENTARRAY.pop();
CURRENTARRAY.unshift(lastElement);
}
};
if (INDEX > -1) {
if (moveTo == ALLKEYS.likedWordsArr && !swipeDirection) {
toggleLike();
}
else {
move();
swipe();
}
}
//SAVING EDITED ARRAYS TO LOCAL STORAGE
setLocalData(ALLKEYS);
};
const swipeCardAnimation = (btn, swipeDirection, arr) => {
id(btn).addEventListener("click", () => {
if (arr !== CURRENTARRAY) {
actions(CURRENTARRAY, swipeDirection);
id("card").classList.add("swipe" + swipeDirection);
setTimeout(() => { id("card").classList.remove("swipe" + swipeDirection); }, 1000)
}
});
}
swipeCardAnimation("arrowRight", "right");
swipeCardAnimation("arrowLeft", "left");
const moveWord = (btn, arr) => {
swipeCardAnimation(btn, "down", arr);
id(btn).addEventListener("click", () => {
actions(arr, "down");
});
};
moveWord("know", ALLKEYS.knownWordsArr);
moveWord("doubt", ALLKEYS.doubtfulWordsArr);
moveWord("dontKnow", ALLKEYS.unknownWordsArr);
const like = () => {
id("like").addEventListener("click", () => {
actions(ALLKEYS.likedWordsArr);
});
}
like();
const flip = () => {
id("flip").addEventListener("click", () => {
id("card").classList.toggle("flip");
setTimeout(() => { id("transcription").classList.toggle("active"); }, 150)
});
};
flip();
const changeVisibility = (obj, visibility) => {
obj.style.display = visibility;
};
const showMenu = () => {
id("menuBtn").addEventListener("click", () => {
CURRENTARRAY = null;
HEADERCOLOR = "darkblue";
changeVisibility(card, "none");
changeVisibility(id("topPanel"), "none");
changeVisibility(id("panel"), "none");
changeVisibility(id("menu"), "flex");
changeVisibility(id("arrows"), "none");
});
};
showMenu();
const switchList = (btn, arr, color) => {
const hideMenu = () => {
changeVisibility(card, "flex");
changeVisibility(id("topPanel"), "flex");
changeVisibility(id("panel"), "flex");
changeVisibility(id("menu"), "none");
changeVisibility(id("arrows"), "flex");
};
btn.addEventListener("click", () => {
btn.style.boxShadow = "10px 5px 5px Highlight";
setTimeout(() => {
btn.style.boxShadow = "none";
HEADERCOLOR = color;
hideMenu();
CURRENTARRAY = arr;
update();
}, 300)
})
};
switchList(id("unknownList"), ALLKEYS.unknownWordsArr, "red");
switchList(id("doubtfulList"), ALLKEYS.doubtfulWordsArr, "yellow");
switchList(id("knownList"), ALLKEYS.knownWordsArr, "green");
switchList(id("favouriteList"), ALLKEYS.likedWordsArr, "darkgoldenrod");