xrsh-com/com/example/helloworld-window.js

115 lines
3.3 KiB
JavaScript
Raw Normal View History

2024-01-08 14:43:28 +01:00
AFRAME.registerComponent('helloworld-window', {
schema: {
foo: { type:"string"}
},
2024-05-23 14:14:53 +02:00
dependencies: ['dom'],
2024-01-08 14:43:28 +01:00
2024-05-29 12:22:35 +02:00
init: async function(){
2024-05-23 14:14:53 +02:00
this.el.object3D.visible = false
2024-05-29 12:22:35 +02:00
2024-01-08 14:43:28 +01:00
},
dom: {
scale: 1,
2024-01-08 14:43:28 +01:00
events: ['click','keydown'],
html: (me) => `<div>
<div class="pad"> ${me.data.foo} <b>${me.data.myvalue}</b></span>
</div>`,
2024-01-22 10:38:16 +01:00
2024-04-19 16:42:46 +02:00
css: (me) => `.helloworld-window div.pad { padding:11px; }`
2024-01-08 14:43:28 +01:00
},
events:{
// 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 },
2024-05-23 14:14:53 +02:00
launcher: async function(){
2024-05-29 12:22:35 +02:00
let s = await AFRAME.utils.require({
2024-05-23 14:14:53 +02:00
dom: "./com/dom.js", // interpret .dom object
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", //
})
2024-05-29 12:22:35 +02:00
console.dir(s)
this.el.setAttribute("dom","")
this.el.setAttribute("data2event","")
this.el.setAttribute("html","")
this.el.dom.style.display = 'none'
2024-01-08 14:43:28 +01:00
this.data.myvalue = 1
2024-05-29 12:22:35 +02:00
return
2024-01-08 14:43:28 +01:00
setInterval( () => this.data.myvalue++, 100 )
2024-01-22 10:38:16 +01:00
new WinBox("Hello World",{
width: 250,
height: 150,
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 = ''
},
2024-01-08 14:43:28 +01:00
},
manifest: { // HTML5 manifest to identify app to xrsh
2024-05-23 14:14:53 +02:00
"short_name": "Hello world window",
"name": "Hello world window",
2024-01-08 14:43:28 +01:00
"icons": [
{
2024-01-22 10:38:16 +01:00
"src": "https://css.gg/browser.svg",
2024-01-08 14:43:28 +01:00
"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":`
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.
`
}
});