-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.js
198 lines (163 loc) · 4.73 KB
/
index.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
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
import "./components/quiz-list.js";
import "./components/quiz-content.js";
import "./components/code-editor.js";
import "./components/table-viewer.js";
import "./components/query-result.js";
import "./components/control-bar.js";
import "./components/solution-modal.js";
import SEED_SQL from "./seed.js";
import sqls from "./quiz/index.js";
import { gluesql } from "https://cdn.jsdelivr.net/npm/[email protected]/gluesql.js";
const state = {
category: "",
quiz: "",
expected: "",
};
let db;
let sql;
async function init() {
db = await gluesql();
await db.query([SEED_SQL, ...sqls].join(""));
window.globaldb = db;
await initQuizList();
initControlBar();
initCodeEditor();
}
async function initControlBar() {
const controlBar = document.querySelector("glue-control-bar");
controlBar.addEventListener("prev", () => console.log("prev clicked"));
controlBar.addEventListener("next", () => console.log("next clicked"));
controlBar.addEventListener("solution", async () => {
let quiz = await db.query(
`SELECT * FROM Quiz WHERE category = "${state.category}" AND name = "${state.quiz}"`
);
quiz = quiz[0].rows[0];
document
.querySelector("glue-solution-modal")
.setAttribute("data-sql", btoa(quiz.solution_sql));
});
controlBar.addEventListener("run", async () => {
if (!sql) return;
console.log("[run]", sql);
let result;
try {
result = await state.db.query(sql);
} catch (message) {
result = [
{
type: "ERROR",
message,
},
];
}
document
.querySelector("glue-query-result")
.setAttribute("data-query-result", JSON.stringify(result));
});
controlBar.addEventListener("submit", async () => {
if (!sql) {
window.alert("Input SQL is empty");
return;
}
let quiz = await db.query(`
SELECT
solution_sql as solutionSQL
FROM
Quiz
WHERE
category = "${state.category}" AND
name = "${state.quiz}";
`);
quiz = quiz[0].rows[0];
try {
const submitted = await state.db.query(sql);
console.log("submitted", submitted);
console.log("expected", state.expected);
if (JSON.stringify(submitted) !== JSON.stringify(state.expected)) {
window.alert("Wrong answer");
} else {
window.alert("Correct answer");
}
} catch (error) {
window.alert(`[ERROR] ${error}`);
}
});
}
async function initQuizList() {
const dataQuizList = await db
.query(
"SELECT q.name, q.category FROM Quiz AS q INNER JOIN Category AS c ON q.category = c.name"
)
.then((res) => res[0].rows);
const firstQuiz = dataQuizList[0];
selectQuiz({
quiz: firstQuiz.name,
category: firstQuiz.category,
});
const quizList = document.querySelector("glue-quiz-list");
quizList.setAttribute("data-quiz-list", JSON.stringify(dataQuizList));
quizList.setAttribute("selected-quiz", JSON.stringify(state));
quizList.addEventListener("select", (event) => {
selectQuiz({
quiz: event.detail.quiz,
category: event.detail.category,
});
});
}
function initCodeEditor(sqlQuery = "") {
const codeEditor = document.querySelector("glue-code-editor.main");
codeEditor.setAttribute("sql", sqlQuery);
codeEditor.addEventListener("change", (event) => {
sql = event.detail;
});
}
async function selectQuiz(arg) {
state.quiz = arg.quiz;
state.category = arg.category;
document
.querySelector("glue-quiz-list")
.setAttribute("selected-quiz", JSON.stringify(arg));
state.db = await gluesql();
let quiz = await db.query(`
SELECT
category,
name,
schema_sql as schemaSQL,
data_sql as dataSQL,
solution_sql as solutionSQL
FROM
Quiz
WHERE
category = "${state.category}" AND
name = "${state.quiz}";
`);
quiz = quiz[0].rows[0];
await state.db.query(quiz.schemaSQL);
await state.db.query(quiz.dataSQL);
state.expected = await state.db.query(quiz.solutionSQL);
const { tables } = (await state.db.query("SHOW TABLES"))[0];
const dataList = await Promise.all(
tables.map(async (tableName) => {
const { rows } = (await state.db.query(`SELECT * FROM ${tableName}`))[0];
return {
name: tableName,
rows,
};
})
);
const content = {
category: quiz.category,
name: quiz.name,
schemaSQL: quiz.schemaSQL,
dataList,
};
const quizContent = document.querySelector("glue-quiz-content");
quizContent.setAttribute("data-content", JSON.stringify(content));
const expectedResult = await state.db
.query(quiz.solutionSQL)
.then((res) => res[0])
.then(({ rows }) => rows)
.then(JSON.stringify);
quizContent.setAttribute("expected-result", expectedResult);
}
init();