|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>DuckDB Explorer</title> |
|
<style> |
|
|
|
:root { |
|
--bg-color: #f4f7f6; |
|
--text-color: #333; |
|
--header-bg: #4CAF50; |
|
--header-text: white; |
|
--sidebar-bg: #e9ecef; |
|
--sidebar-text: #495057; |
|
--sidebar-hover-bg: #d4dadf; |
|
--sidebar-active-bg: #007bff; |
|
--sidebar-active-text: white; |
|
--content-bg: #fff; |
|
--border-color: #dee2e6; |
|
--border-color-light: #e9ecef; |
|
--table-header-bg: #f8f9fa; |
|
--table-row-even-bg: #fdfdfe; |
|
--button-primary-bg: #28a745; |
|
--button-primary-hover-bg: #218838; |
|
--button-primary-text: white; |
|
--status-success-bg: #d1e7dd; |
|
--status-success-text: #0f5132; |
|
--status-success-border: #badbcc; |
|
--status-error-bg: #f8d7da; |
|
--status-error-text: #842029; |
|
--status-error-border: #f5c2c7; |
|
--loader-border: #f3f3f3; |
|
--loader-spinner: #007bff; |
|
--input-border: #ced4da; |
|
--input-bg: #fff; |
|
--link-color: #007bff; |
|
} |
|
|
|
@media (prefers-color-scheme: dark) { |
|
:root { |
|
--bg-color: #1a1a1a; |
|
--text-color: #e8e8e8; |
|
--header-bg: #2a622d; |
|
--header-text: #e8e8e8; |
|
--sidebar-bg: #2c2c2c; |
|
--sidebar-text: #adb5bd; |
|
--sidebar-hover-bg: #444; |
|
--sidebar-active-bg: #0056b3; |
|
--sidebar-active-text: white; |
|
--content-bg: #212121; |
|
--border-color: #444; |
|
--border-color-light: #333; |
|
--table-header-bg: #2c2c2c; |
|
--table-row-even-bg: #252525; |
|
--button-primary-bg: #218838; |
|
--button-primary-hover-bg: #1e7e34; |
|
--button-primary-text: white; |
|
--status-success-bg: #143620; |
|
--status-success-text: #a3cfbb; |
|
--status-success-border: #2a622d; |
|
--status-error-bg: #58151c; |
|
--status-error-text: #f5c6cb; |
|
--status-error-border: #842029; |
|
--loader-border: #444; |
|
--loader-spinner: #4dabf7; |
|
--input-border: #555; |
|
--input-bg: #333; |
|
--link-color: #4dabf7; |
|
} |
|
|
|
input[type="text"], textarea { |
|
color: var(--text-color); |
|
background-color: var(--input-bg); |
|
} |
|
|
|
th, td { |
|
color: var(--text-color); |
|
} |
|
|
|
::placeholder { |
|
color: #888; |
|
opacity: 1; |
|
} |
|
:-ms-input-placeholder { |
|
color: #888; |
|
} |
|
::-ms-input-placeholder { |
|
color: #888; |
|
} |
|
} |
|
|
|
|
|
body { |
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; |
|
margin: 0; |
|
padding: 0; |
|
display: flex; |
|
flex-direction: column; |
|
height: 100vh; |
|
background-color: var(--bg-color); |
|
color: var(--text-color); |
|
transition: background-color 0.3s, color 0.3s; |
|
} |
|
a { |
|
color: var(--link-color); |
|
} |
|
|
|
|
|
header { |
|
background-color: var(--header-bg); |
|
color: var(--header-text); |
|
padding: 15px 20px; |
|
display: flex; |
|
align-items: center; |
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1); |
|
font-size: 1.2em; |
|
font-weight: bold; |
|
transition: background-color 0.3s, color 0.3s; |
|
} |
|
header .loader { |
|
border: 3px solid var(--loader-border); |
|
border-top: 3px solid var(--header-text); |
|
border-radius: 50%; |
|
width: 18px; |
|
height: 18px; |
|
animation: spin 1s linear infinite; |
|
display: none; |
|
margin-left: 15px; |
|
} |
|
|
|
|
|
.container { |
|
display: flex; |
|
flex: 1; |
|
overflow: hidden; |
|
} |
|
|
|
|
|
#sidebar { |
|
width: 220px; |
|
background-color: var(--sidebar-bg); |
|
padding: 15px; |
|
overflow-y: auto; |
|
border-right: 1px solid var(--border-color); |
|
transition: background-color 0.3s; |
|
} |
|
#sidebar h3 { |
|
margin-top: 0; |
|
margin-bottom: 15px; |
|
color: var(--sidebar-text); |
|
border-bottom: 1px solid var(--border-color); |
|
padding-bottom: 10px; |
|
} |
|
#tableList { |
|
list-style: none; |
|
padding: 0; |
|
margin: 0; |
|
} |
|
#tableList li { |
|
padding: 8px 10px; |
|
cursor: pointer; |
|
border-radius: 4px; |
|
margin-bottom: 5px; |
|
transition: background-color 0.2s, color 0.2s; |
|
font-size: 0.95em; |
|
color: var(--sidebar-text); |
|
} |
|
#tableList li:hover { |
|
background-color: var(--sidebar-hover-bg); |
|
} |
|
#tableList li.active { |
|
background-color: var(--sidebar-active-bg); |
|
color: var(--sidebar-active-text); |
|
font-weight: bold; |
|
} |
|
|
|
|
|
#mainContent { |
|
flex: 1; |
|
display: flex; |
|
flex-direction: column; |
|
padding: 20px; |
|
overflow: hidden; |
|
} |
|
.content-area { |
|
flex: 1; |
|
display: flex; |
|
flex-direction: column; |
|
overflow: hidden; |
|
gap: 15px; |
|
} |
|
#schemaDisplay, #dataDisplayContainer, #queryResultContainer { |
|
background-color: var(--content-bg); |
|
border: 1px solid var(--border-color); |
|
border-radius: 5px; |
|
padding: 15px; |
|
margin-bottom: 0; |
|
overflow: auto; |
|
box-shadow: 0 1px 3px rgba(0,0,0,0.05); |
|
transition: background-color 0.3s, border-color 0.3s; |
|
} |
|
#schemaDisplay h4, #dataDisplayContainer h4, #queryResultContainer h4 { |
|
margin-top: 0; |
|
color: var(--sidebar-text); |
|
border-bottom: 1px solid var(--border-color-light); |
|
padding-bottom: 10px; |
|
margin-bottom: 15px; |
|
} |
|
#dataDisplayContainer { |
|
flex: 1; |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
#dataDisplay { |
|
flex: 1; |
|
overflow: auto; |
|
min-height: 100px; |
|
} |
|
#schemaDisplay p, #dataDisplayContainer p { |
|
color: #888; |
|
} |
|
|
|
|
|
|
|
#queryArea { |
|
padding-top: 20px; |
|
border-top: 1px solid var(--border-color); |
|
background-color: var(--content-bg); |
|
padding: 15px; |
|
border-radius: 5px; |
|
box-shadow: 0 -1px 3px rgba(0,0,0,0.05); |
|
margin-top: 15px; |
|
transition: background-color 0.3s, border-color 0.3s; |
|
} |
|
#queryArea h4 { |
|
margin-top: 0; |
|
margin-bottom: 10px; |
|
color: var(--sidebar-text); |
|
} |
|
#queryArea textarea { |
|
width: 100%; |
|
min-height: 80px; |
|
padding: 10px; |
|
border: 1px solid var(--input-border); |
|
border-radius: 4px; |
|
box-sizing: border-box; |
|
font-family: monospace; |
|
margin-bottom: 10px; |
|
resize: vertical; |
|
background-color: var(--input-bg); |
|
color: var(--text-color); |
|
transition: background-color 0.3s, border-color 0.3s, color 0.3s; |
|
} |
|
#queryArea button { |
|
padding: 10px 20px; |
|
background-color: var(--button-primary-bg); |
|
color: var(--button-primary-text); |
|
border: none; |
|
border-radius: 4px; |
|
cursor: pointer; |
|
transition: background-color 0.2s; |
|
font-weight: bold; |
|
} |
|
#queryArea button:hover { |
|
background-color: var(--button-primary-hover-bg); |
|
} |
|
|
|
|
|
table { |
|
width: 100%; |
|
border-collapse: collapse; |
|
margin-top: 0; |
|
font-size: 0.9em; |
|
} |
|
th, td { |
|
border: 1px solid var(--border-color-light); |
|
padding: 10px 12px; |
|
text-align: left; |
|
white-space: nowrap; |
|
max-width: 250px; |
|
overflow: hidden; |
|
text-overflow: ellipsis; |
|
color: var(--text-color); |
|
transition: border-color 0.3s; |
|
} |
|
th { |
|
background-color: var(--table-header-bg); |
|
font-weight: 600; |
|
position: sticky; |
|
top: 0; |
|
z-index: 1; |
|
transition: background-color 0.3s; |
|
} |
|
tr:nth-child(even) { |
|
background-color: var(--table-row-even-bg); |
|
transition: background-color 0.3s; |
|
} |
|
tr:nth-child(odd) { |
|
background-color: var(--content-bg); |
|
transition: background-color 0.3s; |
|
} |
|
|
|
|
|
#statusMessage { |
|
padding: 10px 15px; |
|
margin-top: 15px; |
|
border-radius: 4px; |
|
display: none; |
|
font-size: 0.9em; |
|
transition: background-color 0.3s, color 0.3s, border-color 0.3s; |
|
} |
|
#statusMessage.success { |
|
background-color: var(--status-success-bg); |
|
color: var(--status-success-text); |
|
border: 1px solid var(--status-success-border); |
|
} |
|
#statusMessage.error { |
|
background-color: var(--status-error-bg); |
|
color: var(--status-error-text); |
|
border: 1px solid var(--status-error-border); |
|
} |
|
|
|
.loader { |
|
border: 4px solid var(--loader-border); |
|
border-top: 4px solid var(--loader-spinner); |
|
border-radius: 50%; |
|
width: 20px; |
|
height: 20px; |
|
animation: spin 1s linear infinite; |
|
display: none; |
|
} |
|
@keyframes spin { |
|
0% { transform: rotate(0deg); } |
|
100% { transform: rotate(360deg); } |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
|
|
<header> |
|
<span>🦆 DuckDB Explorer</span> |
|
<div class="loader" id="loadingIndicator"></div> |
|
</header> |
|
|
|
<div class="container"> |
|
<aside id="sidebar"> |
|
<h3>Tables</h3> |
|
<ul id="tableList"> |
|
<li>Loading...</li> |
|
</ul> |
|
</aside> |
|
|
|
<main id="mainContent"> |
|
<div class="content-area"> |
|
<div id="schemaDisplay"> |
|
<h4>Schema</h4> |
|
<p id="schemaPlaceholder">Select a table from the list.</p> |
|
<table id="schemaTable"></table> |
|
</div> |
|
<div id="dataDisplayContainer"> |
|
<h4>Data <span id="tableDataHeader"></span></h4> |
|
<p id="dataPlaceholder">Select a table from the list.</p> |
|
<div id="dataDisplay"> |
|
<table id="dataTable"></table> |
|
</div> |
|
</div> |
|
<div id="queryResultContainer" style="display: none;"> |
|
<h4>Query Result</h4> |
|
<div id="queryResultDisplay"> |
|
<table id="queryResultTable"></table> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div id="queryArea"> |
|
<h4>Custom SQL Query (SELECT/SHOW/PRAGMA only)</h4> |
|
<textarea id="sqlInput" placeholder="Enter your SELECT query here... e.g., SELECT * FROM table_name LIMIT 10"></textarea> |
|
<button id="runSqlButton">Run SQL</button> |
|
</div> |
|
|
|
<div id="statusMessage"></div> |
|
</main> |
|
</div> |
|
<script> |
|
|
|
const tableList = document.getElementById('tableList'); |
|
const schemaDisplay = document.getElementById('schemaDisplay'); |
|
const schemaTable = document.getElementById('schemaTable'); |
|
const schemaPlaceholder = document.getElementById('schemaPlaceholder'); |
|
const dataDisplayContainer = document.getElementById('dataDisplayContainer'); |
|
const dataDisplay = document.getElementById('dataDisplay'); |
|
const dataTable = document.getElementById('dataTable'); |
|
const dataPlaceholder = document.getElementById('dataPlaceholder'); |
|
const tableDataHeader = document.getElementById('tableDataHeader'); |
|
const sqlInput = document.getElementById('sqlInput'); |
|
const runSqlButton = document.getElementById('runSqlButton'); |
|
const queryResultContainer = document.getElementById('queryResultContainer'); |
|
const queryResultDisplay = document.getElementById('queryResultDisplay'); |
|
const queryResultTable = document.getElementById('queryResultTable'); |
|
const statusMessage = document.getElementById('statusMessage'); |
|
const loadingIndicator = document.getElementById('loadingIndicator'); |
|
|
|
|
|
const API_BASE_URL = ''; |
|
let currentTables = []; |
|
let selectedTable = null; |
|
let currentCustomSQL = ''; |
|
let pollingIntervalId = null; |
|
const POLLING_INTERVAL_MS = 5000; |
|
|
|
|
|
function showLoader(show, isPolling = false) { |
|
|
|
if (!isPolling) { |
|
loadingIndicator.style.display = show ? 'inline-block' : 'none'; |
|
} |
|
} |
|
|
|
function showStatus(message, isError = false) { |
|
statusMessage.textContent = message; |
|
statusMessage.className = isError ? 'error' : 'success'; |
|
statusMessage.style.display = 'block'; |
|
setTimeout(() => { statusMessage.style.display = 'none'; }, 5000); |
|
} |
|
|
|
function clearStatus() { |
|
statusMessage.textContent = ''; |
|
statusMessage.style.display = 'none'; |
|
} |
|
|
|
async function fetchAPI(endpoint, options = {}, isPolling = false) { |
|
showLoader(true, isPolling); |
|
clearStatus(); |
|
const url = `${API_BASE_URL}${endpoint}`; |
|
try { |
|
const response = await fetch(url, options); |
|
if (!response.ok) { |
|
let errorDetail = `HTTP error! status: ${response.status}`; |
|
try { |
|
const errorJson = await response.json(); |
|
errorDetail += ` - ${errorJson.detail || JSON.stringify(errorJson)}`; |
|
} catch (e) { } |
|
throw new Error(errorDetail); |
|
} |
|
const contentType = response.headers.get("content-type"); |
|
if (contentType && contentType.includes("application/json")) { |
|
return await response.json(); |
|
} |
|
return await response.text(); |
|
} catch (error) { |
|
console.error('API Fetch Error:', error); |
|
|
|
if (!isPolling) { |
|
showStatus(`Error: ${error.message}`, true); |
|
} else { |
|
console.warn(`Polling Error: ${error.message}`); |
|
} |
|
throw error; |
|
} finally { |
|
showLoader(false, isPolling); |
|
} |
|
} |
|
|
|
function renderTable(data, tableElement) { |
|
tableElement.innerHTML = ''; |
|
if (!data || !Array.isArray(data)) { |
|
tableElement.innerHTML = '<tbody><tr><td>Invalid data format received.</td></tr></tbody>'; |
|
console.error("Invalid data format for renderTable:", data); |
|
return; |
|
} |
|
if (data.length === 0) { |
|
tableElement.innerHTML = '<tbody><tr><td>No data available.</td></tr></tbody>'; |
|
return; |
|
} |
|
const headers = Object.keys(data[0]); |
|
const thead = tableElement.createTHead(); |
|
const headerRow = thead.insertRow(); |
|
headers.forEach(headerText => { |
|
const th = document.createElement('th'); |
|
th.textContent = headerText; |
|
headerRow.appendChild(th); |
|
}); |
|
const tbody = tableElement.createTBody(); |
|
data.forEach(rowData => { |
|
const row = tbody.insertRow(); |
|
headers.forEach(header => { |
|
const cell = row.insertCell(); |
|
const value = rowData[header]; |
|
cell.textContent = (value === null || value === undefined) ? 'NULL' : String(value); |
|
}); |
|
}); |
|
} |
|
|
|
function renderSchema(schemaData) { |
|
schemaTable.innerHTML = ''; |
|
schemaPlaceholder.style.display = 'none'; |
|
if (!schemaData || !schemaData.columns || schemaData.columns.length === 0) { |
|
schemaTable.innerHTML = '<tbody><tr><td colspan="2">No schema information available.</td></tr></tbody>'; |
|
return; |
|
} |
|
|
|
const thead = schemaTable.createTHead(); |
|
const headerRow = thead.insertRow(); |
|
['Name', 'Type'].forEach(headerText => { |
|
const th = document.createElement('th'); |
|
th.textContent = headerText; |
|
headerRow.appendChild(th); |
|
}); |
|
const tbody = schemaTable.createTBody(); |
|
schemaData.columns.forEach(column => { |
|
const row = tbody.insertRow(); |
|
row.insertCell().textContent = column.name; |
|
row.insertCell().textContent = column.type; |
|
}); |
|
} |
|
|
|
|
|
|
|
async function loadTables(isPolling = false) { |
|
if (!isPolling) { |
|
tableList.innerHTML = '<li>Loading tables...</li>'; |
|
resetDisplays(); |
|
} |
|
try { |
|
const newTables = await fetchAPI('/tables', {}, isPolling); |
|
if (JSON.stringify(newTables) !== JSON.stringify(currentTables)) { |
|
console.log("Table list changed, updating UI."); |
|
currentTables = newTables; |
|
displayTables(currentTables); |
|
|
|
|
|
if (selectedTable && !currentTables.includes(selectedTable)) { |
|
console.log(`Selected table "${selectedTable}" removed.`); |
|
resetToInitialState(); |
|
} |
|
} |
|
|
|
|
|
if (currentTables.length === 0 && !isPolling) { |
|
tableList.innerHTML = '<li>No tables found.</li>'; |
|
schemaPlaceholder.textContent = 'No tables found in the database.'; |
|
schemaPlaceholder.style.display = 'block'; |
|
dataPlaceholder.textContent = 'No tables found in the database.'; |
|
dataPlaceholder.style.display = 'block'; |
|
} else if (currentTables.length > 0 && !selectedTable && !currentCustomSQL && !isPolling) { |
|
schemaPlaceholder.style.display = 'block'; |
|
dataPlaceholder.style.display = 'block'; |
|
} |
|
|
|
} catch (error) { |
|
if (!isPolling) { |
|
tableList.innerHTML = '<li>Error loading tables.</li>'; |
|
schemaPlaceholder.textContent = 'Error loading tables.'; |
|
schemaPlaceholder.style.display = 'block'; |
|
dataPlaceholder.textContent = 'Error loading tables.'; |
|
dataPlaceholder.style.display = 'block'; |
|
} else { |
|
console.error("Polling error (loadTables):", error); |
|
} |
|
|
|
stopPolling(); |
|
showStatus("Could not update table list. Polling stopped.", true); |
|
} |
|
} |
|
|
|
function displayTables(tables) { |
|
tableList.innerHTML = ''; |
|
if (tables.length === 0) { |
|
tableList.innerHTML = '<li>No tables found.</li>'; |
|
return; |
|
} |
|
tables.sort().forEach(tableName => { |
|
const li = document.createElement('li'); |
|
li.textContent = tableName; |
|
li.dataset.tableName = tableName; |
|
li.onclick = () => handleTableSelection(li); |
|
if (tableName === selectedTable) { |
|
li.classList.add('active'); |
|
} |
|
tableList.appendChild(li); |
|
}); |
|
} |
|
|
|
async function loadTableSchemaAndData(tableName, isPolling = false) { |
|
if (!tableName) return; |
|
|
|
|
|
if (!isPolling) { |
|
dataDisplayContainer.style.display = 'flex'; |
|
queryResultContainer.style.display = 'none'; |
|
dataPlaceholder.style.display = 'none'; |
|
schemaPlaceholder.style.display = 'none'; |
|
tableDataHeader.textContent = `for table "${tableName}"`; |
|
schemaTable.innerHTML = '<tbody><tr><td colspan="2">Loading schema...</td></tr></tbody>'; |
|
dataTable.innerHTML = '<tbody><tr><td>Loading data...</td></tr></tbody>'; |
|
} |
|
|
|
try { |
|
|
|
const [schemaResponse, tableDataResponse] = await Promise.all([ |
|
fetchAPI(`/tables/${tableName}/schema`, {}, isPolling), |
|
fetchAPI(`/tables/${tableName}?limit=100`, {}, isPolling) |
|
]); |
|
|
|
if (selectedTable === tableName) { |
|
renderSchema(schemaResponse); |
|
renderTable(tableDataResponse, dataTable); |
|
} |
|
} catch (error) { |
|
|
|
|
|
if (selectedTable === tableName) { |
|
if (!isPolling) { |
|
schemaTable.innerHTML = '<tbody><tr><td colspan="2">Error loading schema.</td></tr></tbody>'; |
|
dataTable.innerHTML = '<tbody><tr><td>Error loading data.</td></tr></tbody>'; |
|
} else { |
|
console.error(`Polling error for table ${tableName}:`, error); |
|
|
|
|
|
} |
|
} |
|
} |
|
} |
|
|
|
function handleTableSelection(listItem) { |
|
const currentActive = tableList.querySelector('.active'); |
|
if (currentActive) { |
|
currentActive.classList.remove('active'); |
|
} |
|
listItem.classList.add('active'); |
|
|
|
selectedTable = listItem.dataset.tableName; |
|
currentCustomSQL = ''; |
|
sqlInput.value = ''; |
|
|
|
loadTableSchemaAndData(selectedTable, false); |
|
} |
|
|
|
async function runCustomQuery(isPolling = false) { |
|
const sql = sqlInput.value.trim(); |
|
if (!sql) { |
|
if (!isPolling) showStatus("SQL query cannot be empty.", true); |
|
return; |
|
} |
|
|
|
|
|
if (!isPolling) { |
|
|
|
const currentActive = tableList.querySelector('.active'); |
|
if (currentActive) { |
|
currentActive.classList.remove('active'); |
|
} |
|
selectedTable = null; |
|
|
|
resetDisplays(); |
|
dataDisplayContainer.style.display = 'none'; |
|
queryResultContainer.style.display = 'block'; |
|
queryResultTable.innerHTML = '<tbody><tr><td>Running query...</td></tr></tbody>'; |
|
currentCustomSQL = sql; |
|
} |
|
|
|
try { |
|
const resultData = await fetchAPI('/query', { |
|
method: 'POST', |
|
headers: { 'Content-Type': 'application/json', }, |
|
body: JSON.stringify({ sql: sql }), |
|
}, isPolling); |
|
|
|
|
|
if (currentCustomSQL === sql) { |
|
renderTable(resultData, queryResultTable); |
|
if (!isPolling) showStatus("Query executed successfully.", false); |
|
} |
|
} catch (error) { |
|
|
|
if (currentCustomSQL === sql) { |
|
if (!isPolling) { |
|
queryResultTable.innerHTML = '<tbody><tr><td>Error executing query. See status message.</td></tr></tbody>'; |
|
} else { |
|
console.error(`Polling error for query "${sql}":`, error); |
|
} |
|
} |
|
} |
|
} |
|
|
|
function resetDisplays() { |
|
|
|
schemaDisplay.innerHTML = '<h4>Schema</h4><p id="schemaPlaceholder">Select a table or run a query.</p><table id="schemaTable"></table>'; |
|
|
|
dataDisplayContainer.innerHTML = '<h4>Data <span id="tableDataHeader"></span></h4><p id="dataPlaceholder">Select a table or run a query.</p><div id="dataDisplay"><table id="dataTable"></table></div>'; |
|
|
|
queryResultContainer.style.display = 'none'; |
|
queryResultTable.innerHTML = ''; |
|
|
|
|
|
schemaTable = document.getElementById('schemaTable'); |
|
dataTable = document.getElementById('dataTable'); |
|
schemaPlaceholder = document.getElementById('schemaPlaceholder'); |
|
dataPlaceholder = document.getElementById('dataPlaceholder'); |
|
tableDataHeader = document.getElementById('tableDataHeader'); |
|
} |
|
|
|
function resetToInitialState() { |
|
selectedTable = null; |
|
currentCustomSQL = ''; |
|
sqlInput.value = ''; |
|
resetDisplays(); |
|
|
|
if (currentTables.length > 0) { |
|
schemaPlaceholder.style.display = 'block'; |
|
dataPlaceholder.style.display = 'block'; |
|
} |
|
} |
|
|
|
|
|
|
|
async function pollForUpdates() { |
|
console.log("Polling for updates..."); |
|
try { |
|
await loadTables(true); |
|
|
|
if (selectedTable) { |
|
|
|
await loadTableSchemaAndData(selectedTable, true); |
|
} else if (currentCustomSQL) { |
|
|
|
await runCustomQuery(true); |
|
} |
|
} catch (error) { |
|
|
|
console.error("Error during polling cycle:", error); |
|
|
|
} |
|
} |
|
|
|
function startPolling() { |
|
stopPolling(); |
|
console.log(`Starting polling every ${POLLING_INTERVAL_MS / 1000} seconds.`); |
|
|
|
pollForUpdates(); |
|
pollingIntervalId = setInterval(pollForUpdates, POLLING_INTERVAL_MS); |
|
} |
|
|
|
function stopPolling() { |
|
if (pollingIntervalId) { |
|
console.log("Stopping polling."); |
|
clearInterval(pollingIntervalId); |
|
pollingIntervalId = null; |
|
} |
|
} |
|
|
|
|
|
runSqlButton.onclick = () => runCustomQuery(false); |
|
|
|
document.addEventListener('DOMContentLoaded', () => { |
|
loadTables().then(() => { |
|
if (currentTables.length >= 0) { |
|
startPolling(); |
|
} |
|
}); |
|
}); |
|
|
|
|
|
document.addEventListener("visibilitychange", () => { |
|
if (document.visibilityState === 'hidden') { |
|
stopPolling(); |
|
} else { |
|
|
|
loadTables().then(() => { |
|
if (selectedTable) { |
|
loadTableSchemaAndData(selectedTable); |
|
} else if (currentCustomSQL) { |
|
runCustomQuery(); |
|
} |
|
startPolling(); |
|
}); |
|
} |
|
}); |
|
|
|
</script> |
|
|
|
</body> |
|
</html> |