Add a clear button
This commit is contained in:
@@ -9,10 +9,13 @@
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">
|
||||
<input type="text" id="word-input" autocapitalize="off" spellcheck="false" />
|
||||
<div class="input">
|
||||
<input type="text" id="word-input" autocapitalize="off" spellcheck="false" />
|
||||
<div id="light"></div>
|
||||
</div>
|
||||
<div class="input">
|
||||
<div id="input-buttons"></div>
|
||||
<div id="light"></div>
|
||||
<button id="clear-button">Clear</button>
|
||||
</div>
|
||||
<pre id="pen"></pre>
|
||||
<pre id="state-graph"></pre>
|
||||
|
@@ -6,6 +6,7 @@ const IS_INVALID = 'is-invalid';
|
||||
|
||||
const wordInput = /** @type {HTMLInputElement} */ (document.getElementById('word-input'));
|
||||
const buttons = /** @type {HTMLDivElement} */ (document.getElementById('input-buttons'));
|
||||
const clearButton = /** @type {HTMLButtonElement} */ (document.getElementById('clear-button'));
|
||||
const light = /** @type {HTMLDivElement} */ (document.getElementById('light'));
|
||||
|
||||
mermaid.initialize({
|
||||
@@ -80,7 +81,6 @@ for (const letter of alphabet) {
|
||||
// Reacts to input in the text box
|
||||
wordInput.addEventListener('input', () => {
|
||||
const value = wordInput.value;
|
||||
console.log(value);
|
||||
builder = '';
|
||||
state = 0;
|
||||
for (const letter of value) {
|
||||
@@ -91,4 +91,11 @@ wordInput.addEventListener('input', () => {
|
||||
}
|
||||
});
|
||||
|
||||
clearButton.addEventListener('click', () => {
|
||||
wordInput.value = '';
|
||||
builder = '';
|
||||
state = 0;
|
||||
updateUIState();
|
||||
});
|
||||
|
||||
updateUIState();
|
||||
|
@@ -36,10 +36,10 @@ h1 {
|
||||
.input {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
input {
|
||||
padding: 0.3em 0.5em;
|
||||
margin-bottom: 0.5em;
|
||||
font-size: 1.1em;
|
||||
width: 6em;
|
||||
background-color: transparent;
|
||||
|
Reference in New Issue
Block a user