Show sourcecode
The following files exists in this folder. Click to view.
PageElement.js
practice.js
style.css
practice.js
256 lines ASCII Windows (CRLF)
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
// practice module
function Practice() {
// api definition
async function submitGuess(translationResults) {
await fetch("api/submit-problem-result.php", {
method: "POST",
body: JSON.stringify({
translations: translationResults,
}),
});
}
async function disableToggled(toDisable) {
await fetch("api/disable-translation.php", {
method: "POST",
body: JSON.stringify({
translations: toDisable,
}),
});
}
async function getProblem() {
const res = await fetch("api/get-problem.php");
const data = await res.json();
return data;
}
// misc data
function getTransaltions() {
return page.pageElements
.filter((x) => x.name === "translation")
.map((pageElement) => ({
id: pageElement.id,
toggled: pageElement.element.hasAttribute("toggled"),
}));
}
// page
const page = new Page();
// basic element getters
const pageElements = (() => {
return {
get translationContainer() {
return page.getPageElement({
name: "translationContainer",
});
},
get wordContainer() {
return page.getPageElement({
name: "wordContainer",
});
},
get submitButton() {
return page.getPageElement({
name: "submitButton",
});
},
get disableButton() {
return page.getPageElement({
name: "disableButton",
});
},
get revealButton() {
return page.getPageElement({
name: "revealButton",
});
},
};
})();
// basic flow functions
function setTranslations(translations) {
page.pageElements
.filter((x) => x.name === "translation")
.forEach((pageElement) => page.remove(pageElement));
translations.forEach((translation) => {
const button = new PageElement()
.elementToggleButton(translation.translation)
.setId(translation.id)
.setName("translation");
button.classList().add("text-selectable");
page.addPageElement(button);
pageElements.translationContainer.appendChild(button);
});
}
function renderPracticeProblem(problem) {
pageElements.wordContainer.element.innerText = problem.word.word;
practice.setTranslations(problem.translations);
}
async function newPracticeProblem() {
const problem = await practice.getProblem();
renderPracticeProblem(problem);
}
function initialize({
translationContainer,
wordContainer,
submitButton,
revealButton,
disableButton,
}) {
const onSubmit = async () => {
pageElements.revealButton.hide();
await practice.submitGuess(
practice
.getTransaltions()
.map((x) => ({ success: x.toggled, id: x.id }))
);
pageElements.submitButton.hide();
pageElements.translationContainer.hide();
pageElements.disableButton.hide();
await newPracticeProblem();
pageElements.revealButton.show();
};
const onReveal = () => {
pageElements.translationContainer.show();
pageElements.submitButton.show();
pageElements.disableButton.show();
};
const onDisable = () => {
const toDisable = practice.getTransaltions().filter((t) => t.toggled);
disableToggled(toDisable);
toDisable.forEach((x) => page.remove(page.getPageElement({ id: x.id })));
};
page.addPageElement(translationContainer.setName("translationContainer"));
page.addPageElement(wordContainer.setName("wordContainer"));
page.addPageElement(
submitButton.setName("submitButton").addEventListener("click", onSubmit)
);
page.addPageElement(
revealButton.setName("revealButton").addEventListener("click", onReveal)
);
page.addPageElement(
disableButton
.setName("disableButton")
.addEventListener("click", onDisable)
);
}
return {
submitGuess,
getProblem,
disableToggled,
getTransaltions,
setTranslations,
initialize,
newPracticeProblem,
get page() {
return page;
},
get currentWord() {
return pageElements.wordContainer.element.innerText;
},
get currentTranslations() {
return page.pageElements
.filter((x) => x.name === "translation")
.map((x) => x.element.innerText);
},
};
}
const practice = Practice();
function initialize() {
const translationContainer = new PageElement()
.getElementById("translations")
.hide();
const wordContainer = new PageElement().getElementById("word-container");
const submitButton = new PageElement()
.getElementById("submit-problem")
.hide();
const revealButton = new PageElement().getElementById("reveal-answers");
const disableButton = new PageElement()
.getElementById("disable-selected")
.hide();
practice.initialize({
translationContainer,
wordContainer,
submitButton,
revealButton,
disableButton,
});
practice.newPracticeProblem();
function generatePrompt(word, contexts, answers) {
const prompt = `You should grade the following scentances where I was instructed to write diferent scentences using the word "${word}" in diferent contextexts of the word.
contexts and scentences:
${contexts
.map((x, i) => `${i + 1}. Context: "${x}"\nAnswer: "${answers[i]}"`)
.join("\n")}
Also, please comment on any odidies normal spanish speakers would notice or think about and dont be to picky about miss spellings`;
return prompt;
}
const gptExamWindow = new PageElement()
.getElementById("gpt-exam-window")
.hide();
const gptExamQuestionContainer = new PageElement().getElementById(
"gpt-exam-questions"
);
const inputs = [];
const gptExamCopy = new PageElement()
.getElementById("gpt-exam-copy")
.addEventListener("click", () => {
const prompt = generatePrompt(
practice.currentWord,
practice.currentTranslations,
inputs.map((x) => x.element.value)
);
navigator.clipboard.writeText(prompt);
});
const gptExamClose = new PageElement()
.getElementById("gpt-exam-close")
.addEventListener("click", () => {
gptExamWindow.hide();
});
const openGptExam = new PageElement()
.getElementById("gpt-exam-open")
.addEventListener("click", () => {
gptExamWindow.show();
inputs.length = 0;
gptExamQuestionContainer.replaceChildren([]);
practice.currentTranslations.forEach((translation) => {
const text = new PageElement().fromTag("p");
text.element.innerText = translation;
const input = new PageElement().fromTag("input");
inputs.push(input);
gptExamQuestionContainer.appendChild(text);
gptExamQuestionContainer.appendChild(input);
});
});
}
initialize();