mirror of
https://github.com/spchcap/speech.capital.git
synced 2026-01-14 08:38:42 +00:00
64 lines
2.2 KiB
HTML
64 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Schema Admin</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body class="bg-gray-900 text-gray-200 font-mono min-h-screen p-8">
|
|
|
|
<div class="max-w-4xl mx-auto space-y-6">
|
|
<h1 class="text-xl font-bold">D1 Schema Management</h1>
|
|
|
|
<div class="space-y-2">
|
|
<label for="adminPass" class="block text-sm font-medium">Admin Password:</label>
|
|
<input id="adminPass" type="password" class="bg-gray-800 border border-gray-600 rounded w-full px-3 py-2 focus:ring-blue-500 focus:border-blue-500">
|
|
</div>
|
|
|
|
<div class="flex gap-4">
|
|
<button id="getSchema" class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded">Get Schema</button>
|
|
<button id="createSchema" class="bg-green-600 hover:bg-green-700 px-4 py-2 rounded">Create/Verify Schema</button>
|
|
<button id="deleteSchema" class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded">Delete Schema</button>
|
|
</div>
|
|
|
|
<div>
|
|
<h2 class="text-lg mb-2">Output:</h2>
|
|
<pre id="output" class="bg-black p-4 rounded-lg text-sm whitespace-pre-wrap break-all min-h-[200px]"></pre>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
const out = document.getElementById('output');
|
|
const pass = document.getElementById('adminPass');
|
|
const btns = {
|
|
get: document.getElementById('getSchema'),
|
|
create: document.getElementById('createSchema'),
|
|
delete: document.getElementById('deleteSchema'),
|
|
};
|
|
|
|
const exec = async (action) => {
|
|
out.textContent = `Executing "${action}"...`;
|
|
try {
|
|
const res = await fetch('/api/schema', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ action, password: pass.value })
|
|
});
|
|
const data = await res.json();
|
|
out.textContent = JSON.stringify(data, null, 2);
|
|
if (!res.ok) throw new Error(`HTTP ${res.status}: ${data.error?.message || data.error}`);
|
|
} catch (e) {
|
|
out.textContent = `Error: ${e.message}`;
|
|
}
|
|
};
|
|
|
|
btns.get.addEventListener('click', () => exec('get'));
|
|
btns.create.addEventListener('click', () => exec('create'));
|
|
btns.delete.addEventListener('click', () => {
|
|
if (confirm('DELETE ALL TABLES? This is irreversible.')) exec('delete');
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|