xrsh-com/app/isoterminal.js

183 lines
5.0 KiB
JavaScript
Raw Normal View History

2024-01-22 10:38:16 +01:00
AFRAME.registerComponent('isoterminal', {
2024-04-19 16:42:46 +02:00
schema: {
cols: { type: 'number', default: 120 },
rows: { type: 'number', default: 50 },
2024-04-19 10:40:30 +02:00
transparent: { type:'boolean', default:false } // need good gpu
2024-01-22 10:38:16 +01:00
},
2024-04-19 16:42:46 +02:00
init: function(){
2024-04-19 10:40:30 +02:00
this.el.object3D.visible = false
},
2024-01-22 10:38:16 +01:00
requires:{
html: "https://unpkg.com/aframe-htmlmesh@2.1.0/build/aframe-html.js", // html to AFRAME
winboxjs: "https://unpkg.com/winbox@0.2.82/dist/winbox.bundle.min.js", // deadsimple windows: https://nextapps-de.github.io/winbox
2024-04-19 16:42:46 +02:00
winboxcss: "https://unpkg.com/winbox@0.2.82/dist/css/winbox.min.css", //
2024-04-18 17:10:07 +02:00
xtermcss: "https://unpkg.com/xterm@3.12.0/dist/xterm.css",
xtermjs: "https://unpkg.com/xterm@3.12.0/dist/xterm.js",
axterm: "https://unpkg.com/aframe-xterm-component/aframe-xterm-component.js"
2024-01-22 10:38:16 +01:00
},
dom: {
scale: 3,
events: ['click','keydown'],
2024-04-19 10:40:30 +02:00
html: (me) => `<div></div>`,
2024-01-22 10:38:16 +01:00
2024-04-19 16:42:46 +02:00
css: (me) => `.isoterminal{
2024-04-19 10:40:30 +02:00
overflow:hidden;
}`
},
createTerminal: function(){
this.el.object3D.visible = true
2024-04-19 16:42:46 +02:00
2024-04-19 10:40:30 +02:00
const term = this.term = new Terminal({
allowTransparency: this.data.transparent,
cursorBlink: true,
disableStdin: false,
rows: this.data.rows,
cols: this.data.cols,
2024-04-19 16:42:46 +02:00
fontSize: 16
2024-04-19 10:40:30 +02:00
})
term.open(this.el.dom)
this.canvas = this.el.dom.querySelector('.xterm-text-layer')
this.canvas.id = 'terminal-' + (terminalInstance++)
this.canvasContext = this.canvas.getContext('2d')
this.cursorCanvas = this.el.dom.querySelector('.xterm-cursor-layer')
2024-04-19 16:42:46 +02:00
//this.el.setAttribute('material', `transparent: ${this.data.transparent?'true':'false'}; src: #${this.canvas.id}` )
2024-04-19 10:40:30 +02:00
term.on('refresh', () => {
2024-04-19 16:42:46 +02:00
console.log("refresh")
2024-04-19 10:40:30 +02:00
})
term.on('data', (data) => {
this.el.emit('xterm-data', data)
})
this.el.addEventListener('click', () => {
term.focus()
})
2024-04-19 16:42:46 +02:00
const message = 'Hello from \x1B[1;3;31mWebVR\x1B[0m !\r\n$ '
2024-04-19 10:40:30 +02:00
term.write(message)
2024-01-22 10:38:16 +01:00
},
events:{
// combined AFRAME+DOM reactive events
2024-04-19 16:42:46 +02:00
click: function(e){ }, //
keydown: function(e){ }, //
2024-01-22 10:38:16 +01:00
2024-04-19 16:42:46 +02:00
// reactive events for this.data updates
2024-01-22 10:38:16 +01:00
myvalue: function(e){ this.el.dom.querySelector('b').innerText = this.data.myvalue },
2024-04-19 16:42:46 +02:00
ready: function( ){
2024-01-22 10:38:16 +01:00
this.el.dom.style.display = 'none'
},
launcher: function(){
this.el.dom.style.display = ''
2024-04-19 16:42:46 +02:00
this.createTerminal()
2024-04-19 10:40:30 +02:00
2024-04-19 16:42:46 +02:00
new WinBox( this.manifest.iso + ' ' + this.manifest.name, {
width: window.innerWidth*0.8,
height: window.innerHeight*0.8,
2024-04-19 10:40:30 +02:00
x:"center",
y:"center",
2024-04-19 16:42:46 +02:00
id: this.el.uid, // important hint for html-mesh
2024-04-19 10:40:30 +02:00
root: document.querySelector("#overlay"),
mount: this.el.dom,
2024-04-19 16:42:46 +02:00
onclose: () => {
if( !confirm('do you want to kill this virtual machine and all its processes?') ) return true
2024-04-19 10:40:30 +02:00
this.el.dom.style.display = 'none'
return false
}
});
2024-01-22 10:38:16 +01:00
},
},
manifest: { // HTML5 manifest to identify app to xrsh
"iso": "linux-x64-4.15.iso",
"short_name": "ISOTerm",
"name": "terminal",
"icons": [
{
"src": "https://css.gg/terminal.svg",
"type": "image/svg+xml",
"sizes": "512x512"
}
],
"id": "/?source=pwa",
"start_url": "/?source=pwa",
"background_color": "#3367D6",
"display": "standalone",
"scope": "/",
"theme_color": "#3367D6",
"shortcuts": [
{
"name": "What is the latest news?",
"cli":{
"usage": "helloworld <type> [options]",
"example": "helloworld news",
"args":{
"--latest": {type:"string"}
}
},
"short_name": "Today",
"description": "View weather information for today",
"url": "/today?source=pwa",
"icons": [{ "src": "/images/today.png", "sizes": "192x192" }]
}
],
"description": "Hello world information",
"screenshots": [
{
"src": "/images/screenshot1.png",
"type": "image/png",
"sizes": "540x720",
"form_factor": "narrow"
}
],
"help":`
2024-04-19 16:42:46 +02:00
Helloworld application
2024-01-22 10:38:16 +01:00
This is a help file which describes the application.
It will be rendered thru troika text, and will contain
headers based on non-punctualized lines separated by linebreaks,
in above's case "\nHelloworld application\n" will qualify as header.
`
}
});
2024-04-18 17:10:07 +02:00
AFRAME.registerComponent('xterm-shell', {
dependencies: ['xterm'],
init: function() {
const message = 'Run \x1B[1;3;31m\'node server.js\'\x1B[0m to open a shell\r\n'
const xterm = this.el.components['xterm']
xterm.write(message)
const socket = new WebSocket('ws://localhost:8080/')
// Listen on data, write it to the terminal
socket.onmessage = ({data}) => {
xterm.write(data)
}
socket.onclose = () => {
xterm.write('\r\nConnection closed.\r\n')
}
// Listen on user input, send it to the connection
this.el.addEventListener('xterm-data', ({detail}) => {
socket.send(detail)
})
}
})