nezha/resource/template/dashboard/terminal.html

62 lines
2.1 KiB
HTML
Raw Normal View History

2021-08-17 23:56:54 -04:00
{{define "dashboard/terminal"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2021-08-18 05:42:26 -04:00
<title>tty#{{.SessionID}} - {{.Title}}</title>
2021-08-17 23:56:54 -04:00
<link rel="shortcut icon" type="image/png" href="/static/logo.svg?v20210804" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/xterm@4.13.0/css/xterm.css">
</head>
<style>
html,
body,
#terminal-container {
padding: unset;
margin: unset;
width: 100vw;
height: 100vh;
}
</style>
2021-08-18 05:42:26 -04:00
<body onresize="onResize()">
2021-08-17 23:56:54 -04:00
<div id="terminal-container"></div>
<script src="https://cdn.jsdelivr.net/npm/xterm@4.13.0/lib/xterm.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/xterm-addon-attach@0.6.0/lib/xterm-addon-attach.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/xterm-addon-fit@0.5.0/lib/xterm-addon-fit.min.js"></script>
<script>
const term = new Terminal({
screenKeys: true,
useStyle: true,
cursorBlink: true,
});
const socket = new WebSocket((window.location.protocol == 'https:' ? 'wss' : 'ws') + '://' + window.location.host + '/terminal/' + '{{.SessionID}}');
const attachAddon = new AttachAddon.AttachAddon(socket);
const fitAddon = new FitAddon.FitAddon();
term.loadAddon(attachAddon);
term.loadAddon(fitAddon);
term.open(document.getElementById('terminal-container'));
2021-08-18 05:42:26 -04:00
function onResize() {
fitAddon.fit()
const w = fitAddon.proposeDimensions();
const prefix = new Int8Array([1]);
const resizeMessage = new TextEncoder().encode(JSON.stringify({
Rows: w.rows,
Cols: w.cols,
}));
var msg = new Int8Array(prefix.length + resizeMessage.length);
msg.set(prefix);
msg.set(resizeMessage, prefix.length);
socket.send(msg)
}
2021-08-17 23:56:54 -04:00
</script>
</body>
</html>
{{end}}