mirror of
https://github.com/olehomelchenko/astrolabe.git
synced 2025-12-21 21:22:25 +00:00
47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Vega-Lite Editor Integration</title>
|
|
<script src="https://cdn.jsdelivr.net/npm/vega@5"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/vega-lite@5"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/vega-embed@6"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.47.0/min/vs/loader.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/jsonc-parser@3.2.0/lib/umd/main.js"></script>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="panel">
|
|
<div class="panel-header">
|
|
<h2>Snippets</h2>
|
|
<button class="button" id="new-snippet">New Snippet</button>
|
|
</div>
|
|
<div class="snippet-list" id="snippet-list">
|
|
<!-- Snippets will be populated here -->
|
|
</div>
|
|
</div>
|
|
<div class="resize-handle"></div>
|
|
<div class="panel">
|
|
<div class="panel-header">
|
|
<h2>Editor</h2>
|
|
<button class="button" id="save-snippet" disabled>Save Changes</button>
|
|
</div>
|
|
<div id="monaco-editor"></div>
|
|
</div>
|
|
<div class="resize-handle"></div>
|
|
<div class="panel preview-panel">
|
|
<div class="panel-header">
|
|
<h2>Preview</h2>
|
|
</div>
|
|
<div id="vis"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="module" src="src/main.js"></script>
|
|
</body>
|
|
|
|
</html> |