ui/app: (wasm) create and add container div if one is not provided

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2019-08-02 09:04:00 +02:00
parent 28bd97f877
commit eee497f22a
+13 -7
View File
@@ -1,7 +1,6 @@
package app
import (
"errors"
"image"
"sync"
"syscall/js"
@@ -32,14 +31,11 @@ var mainDone = make(chan struct{})
func createWindow(win *Window, opts *WindowOptions) error {
doc := js.Global().Get("document")
parent := doc.Call("getElementById", "giowindow")
if parent == js.Null() {
return errors.New("app: #giowindow not found")
}
cont := getContainer(doc)
cnv := createCanvas(doc)
parent.Call("appendChild", cnv)
cont.Call("appendChild", cnv)
tarea := createTextArea(doc)
parent.Call("appendChild", tarea)
cont.Call("appendChild", tarea)
w := &window{
cnv: cnv,
tarea: tarea,
@@ -64,6 +60,16 @@ func createWindow(win *Window, opts *WindowOptions) error {
return nil
}
func getContainer(doc js.Value) js.Value {
cont := doc.Call("getElementById", "giowindow")
if cont != js.Null() {
return cont
}
cont = doc.Call("createElement", "DIV")
doc.Get("body").Call("appendChild", cont)
return cont
}
func createTextArea(doc js.Value) js.Value {
tarea := doc.Call("createElement", "input")
style := tarea.Get("style")