mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 11:20:54 +01:00
Quality of life improvements to web demo (#297)
- Upgrade CodeMirror to 5.65 - Enable matching paren highlighting via an addon - Remove extra buttons and replace clear output with a checkbox - Highlight error line on parsing/execution error - Change demo layout to wide to increase available width
This commit is contained in:
parent
019eeeb853
commit
9e7e779c02
2 changed files with 29 additions and 48 deletions
|
@ -4,66 +4,38 @@
|
||||||
<br>
|
<br>
|
||||||
<textarea rows="10" cols="70" id="script"></textarea>
|
<textarea rows="10" cols="70" id="script"></textarea>
|
||||||
<div class="button-group">
|
<div class="button-group">
|
||||||
<button class="demo-button negative" style="margin: 8px 8px" onclick="clearInput(); return false;">
|
<button onclick="executeScript(); return false;" class="demo-button">Run</button>
|
||||||
Clear Input
|
<input type="checkbox" checked="true" class="demo-button" id="output-clear">Clear Output</input>
|
||||||
</button>
|
|
||||||
<button class="demo-button positive" onclick="executeScript(); return false;">
|
|
||||||
Run
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<!-- centered header saying Output -->
|
|
||||||
<label class="header-center"><b>Output</b></label>
|
<label class="header-center"><b>Output</b></label>
|
||||||
<br>
|
<br>
|
||||||
<textarea readonly rows="10" cols="70" id="output"></textarea>
|
<textarea readonly rows="10" cols="70" id="output"></textarea>
|
||||||
<div class="button-group">
|
|
||||||
<button class="demo-button negative" onclick="clearOutput(); return false;">
|
|
||||||
Clear Output
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<!-- Styles for editor -->
|
<!-- Styles for editor -->
|
||||||
<style>
|
<style>
|
||||||
.button-group {
|
|
||||||
display: flex;
|
|
||||||
justify-content: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-center {
|
.header-center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.demo-button {
|
.demo-button {
|
||||||
color: white;
|
padding: 7px 7px;
|
||||||
padding: 14px 20px;
|
vertical-align: middle;
|
||||||
margin: 8px 0;
|
|
||||||
border: none;
|
|
||||||
cursor: pointer;
|
|
||||||
width: 30%;
|
|
||||||
display: inline;
|
|
||||||
}
|
}
|
||||||
|
.line-error {
|
||||||
.demo-button-rightmost {
|
background: #e65f55;
|
||||||
margin: inherit 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.positive {
|
|
||||||
background-color: #4CAF50;
|
|
||||||
}
|
|
||||||
|
|
||||||
.negative {
|
|
||||||
background-color: #f44336;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<!-- Luau WASM (async fetch) -->
|
<!-- Luau WASM (async fetch) -->
|
||||||
<script async src="https://github.com/Roblox/luau/releases/latest/download/Luau.Web.js"></script>
|
<script async src="https://github.com/Roblox/luau/releases/latest/download/Luau.Web.js"></script>
|
||||||
<!-- CodeMirror -->
|
<!-- CodeMirror -->
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.32.0/codemirror.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.0/codemirror.min.js"></script>
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.32.0/codemirror.min.css" />
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.0/addon/edit/matchbrackets.min.js"></script>
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.0/codemirror.min.css" />
|
||||||
<!-- Luau Parser for CodeMirror -->
|
<!-- Luau Parser for CodeMirror -->
|
||||||
<script src="assets/js/luau_mode.js"></script>
|
<script src="assets/js/luau_mode.js"></script>
|
||||||
<!-- CodeMirror Luau Editor (MUST BE LOADED AFTER CODEMIRROR!) -->
|
<!-- CodeMirror Luau Editor (MUST BE LOADED AFTER CODEMIRROR!) -->
|
||||||
|
@ -88,9 +60,14 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Misc Functions
|
var lastError = undefined;
|
||||||
|
|
||||||
function output(text) {
|
function output(text) {
|
||||||
output_box = document.getElementById("output");
|
var output_clear = document.getElementById("output-clear");
|
||||||
|
var output_box = document.getElementById("output");
|
||||||
|
if (output_clear.checked) {
|
||||||
|
output_box.value = '';
|
||||||
|
}
|
||||||
output_box.value += text.replace('stdin:', '') + "\n";
|
output_box.value += text.replace('stdin:', '') + "\n";
|
||||||
// scroll to bottom
|
// scroll to bottom
|
||||||
output_box.scrollTop = output_box.scrollHeight;
|
output_box.scrollTop = output_box.scrollHeight;
|
||||||
|
@ -100,18 +77,21 @@
|
||||||
'print': function (msg) { output(msg) }
|
'print': function (msg) { output(msg) }
|
||||||
};
|
};
|
||||||
|
|
||||||
function clearInput() {
|
|
||||||
editor.setValue("");
|
|
||||||
}
|
|
||||||
|
|
||||||
function clearOutput() {
|
|
||||||
document.getElementById("output").value = "";
|
|
||||||
}
|
|
||||||
|
|
||||||
function executeScript() {
|
function executeScript() {
|
||||||
|
if (lastError) {
|
||||||
|
editor.removeLineClass(lastError, "background", "line-error");
|
||||||
|
lastError = undefined;
|
||||||
|
}
|
||||||
|
|
||||||
var err = Module.ccall('executeScript', 'string', ['string'], [editor.getValue()]);
|
var err = Module.ccall('executeScript', 'string', ['string'], [editor.getValue()]);
|
||||||
if (err) {
|
if (err) {
|
||||||
output('Error:' + err.replace('stdin:', ''));
|
var err_text = err.replace('stdin:', '');
|
||||||
|
output('Error:' + err_text);
|
||||||
|
|
||||||
|
var err_line = parseInt(err_text);
|
||||||
|
if (err_line) {
|
||||||
|
lastError = editor.addLineClass(err_line-1, "background", "line-error");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
---
|
---
|
||||||
permalink: /demo
|
permalink: /demo
|
||||||
title: Demo
|
title: Demo
|
||||||
|
classes: wide
|
||||||
---
|
---
|
||||||
|
|
||||||
{% include repl.html %}
|
{% include repl.html %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue