151 lines
4.9 KiB
HTML
151 lines
4.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>SQL Processor</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font: 1rem 'Roboto', Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #f5f5f5;
|
|
color: #333;
|
|
}
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 1rem;
|
|
}
|
|
header {
|
|
text-align: center;
|
|
padding: 1rem 0;
|
|
background: #fff;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
margin-bottom: 1rem;
|
|
}
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
color: #4a90e2;
|
|
margin: 0;
|
|
font-weight: 500;
|
|
}
|
|
form {
|
|
background: #fff;
|
|
padding: 2rem;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
}
|
|
textarea, input[type="text"] {
|
|
width: 100%;
|
|
height: 40px;
|
|
margin-bottom: 1rem;
|
|
font: inherit;
|
|
border: 1px solid #ddd;
|
|
border-radius: 6px;
|
|
padding: 0.6rem;
|
|
background: #f9f9f9;
|
|
resize: none;
|
|
}
|
|
textarea { height: 200px; }
|
|
button {
|
|
display: inline-block;
|
|
background: #4a90e2;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 6px;
|
|
padding: 0.75rem 1.5rem;
|
|
font: 600 1rem 'Roboto', Arial, sans-serif;
|
|
cursor: pointer;
|
|
transition: background 0.3s ease;
|
|
}
|
|
button:hover { background: #357ab8; }
|
|
#resultArea {
|
|
margin-top: 1rem;
|
|
padding: 1rem;
|
|
background: #fff;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
display: none;
|
|
}
|
|
.output-box {
|
|
border: 1px solid #ddd;
|
|
padding: 1rem;
|
|
margin-bottom: 1rem;
|
|
border-radius: 6px;
|
|
background: #f9f9f9;
|
|
}
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
color: #4a90e2;
|
|
margin: 0 0 0.5rem 0;
|
|
font-weight: 500;
|
|
}
|
|
.output-box textarea {
|
|
background: #fff;
|
|
border: 1px solid #ddd;
|
|
}
|
|
.error {
|
|
color: #dc3545;
|
|
background: #ffebee;
|
|
padding: 0.6rem;
|
|
border-radius: 6px;
|
|
}
|
|
.success {
|
|
color: #28a745;
|
|
background: #d4edda;
|
|
padding: 0.6rem;
|
|
border-radius: 6px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header><h1>SQL Processor</h1></header>
|
|
<form id="sqlForm">
|
|
<textarea id="sqlInput" placeholder="Enter your SQL here..."></textarea>
|
|
<label for="hologresConnection">Hologres Connection Info:</label>
|
|
<input type="text" id="hologresConnection" name="hologresConnection" value="hgprecn-cn-i7m2ssubq004-cn-hangzhou-internal.hologres.aliyuncs.com:80" placeholder="Enter Hologres connection info...">
|
|
<button type="submit">Convert</button>
|
|
</form>
|
|
<div id="resultArea" class="output-box"></div>
|
|
</div>
|
|
|
|
<script>
|
|
document.getElementById('sqlForm').addEventListener('submit', async (e) => {
|
|
e.preventDefault();
|
|
const sql = document.getElementById('sqlInput').value;
|
|
const connection = document.getElementById('hologresConnection').value;
|
|
const resultArea = document.getElementById('resultArea');
|
|
|
|
try {
|
|
const response = await fetch('/convert', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
|
|
body: `sql=${encodeURIComponent(sql)}&hologresConnection=${encodeURIComponent(connection)}`
|
|
});
|
|
const data = await response.json();
|
|
|
|
if (data.error) {
|
|
resultArea.innerHTML = `<div class="output-box error"><textarea readonly>${data.error}</textarea></div>`;
|
|
} else {
|
|
const tables = data.parsed_result || '请检查输入建表语句';
|
|
resultArea.innerHTML = `
|
|
<div class="output-box success">
|
|
<h2>Processed SQL:</h2>
|
|
<textarea readonly>${tables}</textarea>
|
|
<p>${data.message}</p>
|
|
</div>
|
|
`;
|
|
}
|
|
} catch (error) {
|
|
console.error('Error:', error);
|
|
resultArea.innerHTML = `<div class="output-box error"><textarea readonly>An unexpected error occurred. Please try again.</textarea></div>`;
|
|
}
|
|
resultArea.style.display = 'block';
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |