AFRAME.registerComponent('manual', { schema: { foo: { type:"string"} }, init: function () { // requires are loaded this.el.addEventListener('ready', () => this.el.dom.style.display = 'none' ) }, 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 winboxcss: "https://unpkg.com/winbox@0.2.82/dist/css/winbox.min.css", // deadsimple windows: https://nextapps-de.github.io/winbox }, dom: { scale: 3, events: ['click','keydown'], html: (me) => `

Welcome to XRSHell




The xrsh (xrshell) brings the FOSS- and Linux-soul to WebXR, promoting the use of (interactive text) terminal and user-provided operating systems inside WebXR.

Technically, xrsh is a bundle of freshly created re-usable FOSS WebXR components.
These provide a common filesystem interface for interacting with WebXR, offering the well-known linux/unix toolchain including a commandline to invoke, store, edit and run WebXR utilities - regardless of their implementation.

Think of it as termux for the VR/AR headset browser, which can be used to e.g. livecode (using terminal auto-completion!) for XR component (registries).
`, css: (me) => `.manual > div { padding:11px }` }, events:{ // component events html: function( ){ console.log("html-mesh requirement mounted") }, // combined AFRAME+DOM reactive events click: function(e){ }, // keydown: function(e){ }, // // reactive events for this.data updates myvalue: function(e){ this.el.dom.querySelector('b').innerText = this.data.myvalue }, launcher: function(){ new WinBox( this.manifest.name, { width: '70%', height: '70%', x:"center", y:"center", id: this.el.uid, // important hint for html-mesh root: document.querySelector("#overlay"), mount: this.el.dom, onclose: () => { this.el.dom.style.display = 'none'; return false; } }); this.el.dom.style.display = '' this.el.setAttribute("xrf", document.location.search || "https://coderofsalvation.github.io/xrsh-media/assets/background.glb") // navigate with: AFRAME.XRF.navigator.to("https://xrfragment.org/index.glb") }, DOMready: function( ){ this.el.dom.style.display = 'none' console.log("this.el.dom has been added to DOM") this.data.myvalue = 1 setInterval( () => this.data.myvalue++, 100 ) } }, manifest: { // HTML5 manifest to identify app to xrsh "short_name": "XRSH Manual", "name": "XRSH Manual", "icons": [ { "src": "https://css.gg/coffee.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 [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":` Helloworld application 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. ` } });