sqllineage/templates/index.html

151 lines
4.9 KiB
HTML
Raw Normal View History

2025-02-05 14:18:02 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2025-02-05 15:57:40 +08:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-02-05 14:18:02 +08:00
<title>SQL Processor</title>
2025-02-05 15:57:40 +08:00
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
2025-02-05 14:18:02 +08:00
<style>
body {
2025-02-05 15:57:40 +08:00
font: 1rem 'Roboto', Arial, sans-serif;
margin: 0;
padding: 0;
background: #f5f5f5;
color: #333;
2025-02-05 14:18:02 +08:00
}
2025-02-05 15:57:40 +08:00
.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;
2025-02-05 14:18:02 +08:00
}
2025-02-05 15:57:40 +08:00
h1 {
font-size: 2.5rem;
color: #4a90e2;
margin: 0;
font-weight: 500;
2025-02-05 14:18:02 +08:00
}
2025-02-05 15:57:40 +08:00
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; }
2025-02-05 14:18:02 +08:00
button {
2025-02-05 15:57:40 +08:00
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;
2025-02-05 14:18:02 +08:00
}
2025-02-05 15:57:40 +08:00
button:hover { background: #357ab8; }
2025-02-05 14:18:02 +08:00
#resultArea {
2025-02-05 15:57:40 +08:00
margin-top: 1rem;
padding: 1rem;
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
2025-02-05 14:18:02 +08:00
display: none;
}
.output-box {
2025-02-05 15:57:40 +08:00
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;
2025-02-05 14:18:02 +08:00
}
2025-02-05 15:57:40 +08:00
.error {
color: #dc3545;
background: #ffebee;
padding: 0.6rem;
border-radius: 6px;
}
.success {
color: #28a745;
background: #d4edda;
padding: 0.6rem;
border-radius: 6px;
2025-02-05 14:18:02 +08:00
}
</style>
</head>
<body>
2025-02-05 15:57:40 +08:00
<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>
2025-02-05 14:18:02 +08:00
</div>
<script>
2025-02-05 15:57:40 +08:00
document.getElementById('sqlForm').addEventListener('submit', async (e) => {
e.preventDefault();
2025-02-05 14:18:02 +08:00
const sql = document.getElementById('sqlInput').value;
2025-02-05 15:57:40 +08:00
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();
2025-02-05 14:18:02 +08:00
if (data.error) {
2025-02-05 15:57:40 +08:00
resultArea.innerHTML = `<div class="output-box error"><textarea readonly>${data.error}</textarea></div>`;
2025-02-05 14:18:02 +08:00
} else {
2025-02-05 15:57:40 +08:00
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>
2025-02-05 14:18:02 +08:00
`;
}
2025-02-05 15:57:40 +08:00
} 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';
2025-02-05 14:18:02 +08:00
});
</script>
</body>
</html>