feat (ui): exec fase 2

This commit is contained in:
kodi
2026-03-06 17:25:11 +01:00
parent 92e0e04905
commit 39a33e5711
4 changed files with 529 additions and 21 deletions
+9 -1
View File
@@ -366,19 +366,27 @@
<div class="modalTitle" id="execModalTitle">Exec</div>
<div class="flex">
<span class="statusline" id="execTerminalStatus">Disconnected</span>
<button class="btn small ghost" id="execRawModeBtn" onclick="containerExecToggleRawMode()">Raw keys: Off</button>
<button class="btn small ghost" onclick="containerExecClose()">Sluiten</button>
</div>
</div>
<div class="modalBody execBody">
<pre id="execTerminalOutput" class="execOutput"></pre>
<div class="execInputRow">
<span class="statusline" id="execTerminalBufferInfo"></span>
<input
class="input mono"
id="execTerminalInput"
placeholder="Type command and press Enter..."
onkeydown="containerExecHandleInputKey(event)"
onpaste="containerExecHandleInputPaste(event)"
onblur="containerExecHandleInputBlur(event)"
autocomplete="off"
autocorrect="off"
autocapitalize="off"
spellcheck="false"
/>
<button class="btn" onclick="containerExecSendInput()">Send</button>
<button class="btn" id="execTerminalSendBtn" onclick="containerExecSendInput()">Send</button>
</div>
</div>
</div>