aboutsummaryrefslogtreecommitdiff
path: root/superadmin/public/script.js
diff options
context:
space:
mode:
Diffstat (limited to 'superadmin/public/script.js')
-rw-r--r--superadmin/public/script.js51
1 files changed, 51 insertions, 0 deletions
diff --git a/superadmin/public/script.js b/superadmin/public/script.js
new file mode 100644
index 0000000..282e846
--- /dev/null
+++ b/superadmin/public/script.js
@@ -0,0 +1,51 @@
+const pullButton = document.getElementById("pull-button");
+const pullResponse = document.getElementById("pull-response");
+
+const queryForm = document.getElementById("query-form");
+const queryResponse = document.getElementById("query-response");
+
+pullButton.addEventListener("click", async e => {
+ const resp = await fetch("api/pull");
+ const res = await resp.json();
+ if (res.success) {
+ pullResponse.textContent = res.stdout;
+ } else {
+ console.log(res.error);
+ pullResponse.textContent = res.stderr;//.replace(/\n/g, "\n\r");
+ }
+});
+
+queryForm.addEventListener("submit", async e => {
+ e.preventDefault();
+ const textarea = queryForm.querySelector("textarea");
+ const body = JSON.stringify({ query: textarea.value.trim() });
+ const resp = await fetch("api/query", {
+ method: "POST", body, headers: { "Content-Type": "application/json" }
+ });
+ const res = await resp.json();
+ while (queryResponse.children.length > 0) queryResponse.removeChild(queryResponse.children[0]);
+ if (res.success && res.response.length > 0) {
+ const keys = Object.keys(res.response[0]);
+ const head = document.createElement("thead");
+ for (const key of keys) {
+ const th = document.createElement("th");
+ th.textContent = key;
+ head.append(th);
+ }
+ for (const row of res.response) {
+ const tr = document.createElement("tr");
+ for (const colI in row) {
+ if (!row.hasOwnProperty(colI)) continue;
+ const td = document.createElement("td");
+ td.textContent = row[colI];
+ tr.append(td);
+ }
+ queryResponse.append(tr);
+ }
+ queryResponse.append(head);
+ } else if (!res.success && res.message) {
+ const span = document.createElement("span");
+ span.textContent = JSON.stringify(res.message);
+ queryResponse.append(span);
+ }
+}); \ No newline at end of file