vuego

package module
v1.3.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 12, 2019 License: MIT Imports: 3 Imported by: 0

README

VueGo: Go for Vue.js!

This is a WebAssembly Vue.js wrapper written in Go.

How to run Example:

  • Download vuego with : git clone https://gitlab.com/AndrusGerman/vuego
  • Enter the folder with:
    cd vuego/example/
  • Run build and execute server: ./build-server.sh
  • Open in your browser: http://localhost:5000

How to Create basic app:

Creating the code for app (Hello VueGo):
  • Go: (main.go)
package main

import (
	"gitlab.com/AndrusGerman/vuego"
)

func  main() {
	// Create Basic app
	app  := vuego.Vue {
		El: "#app",
		Primitive: vuego.Primitive{
			// Defined vars For Vue
			Data: map[string]interface{}{
				"message": "HelloWord VueGo",
			},
		},
	} 
	// Start and Wait
	app.StartWait()
}
  • Html: (index.html)
<!DOCTYPE  html>
<html  lang="en">
<head>
	<meta  charset="UTF-8">
	<meta  name="viewport"  content="width=device-width, initial-scale=1.0">
	<meta  http-equiv="X-UA-Compatible"  content="ie=edge">
	<title>Hello VueGo</title>
	<!-- VueJs import --> 
	<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
	<!-- Wasm Runtime forGo --> 
	<script src="./wasm_exec.js"></script>
</head>
	<body>
		<!-- Div App Content -->
		<div id="app">
			{{ message }}
		</div>
		<!-- Call VueGo App -->
		<script>
            const go = new Go();
            WebAssembly.instantiateStreaming(fetch('./main.wasm'),go.importObject).then(v =>go.run(v.instance));
        </script>
	</body>
</html>
  • wasm_exec (wasm_exec.js):
    • Execute in console: cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" .

    When this finalize command generates the desired file automatically

Build and Run:
  • Build:
    • Open folder in console and execute GOOS=js GOARCH=wasm go build -o main.wasm
  • Run:
    • Open folder and install 'serve' for create basic server: go get -v github.com/mattn/serve
    • And Run basic server (Unix): "$(go env GOPATH)/bin/serve"
    • And Run basic server (Windows): "serve"

Components

Components are reusable Vue instances with a name. in this case, <button-counter>

  • Go (main.go):
app  := vuego.Vue{El:"#demo-component"}

// Define Component
component  := vuego.Component{
	Template: `<button v-on:click="count++">You clicked me {{ count }} times.</button>`,
	Primitive: vuego.Primitive{
		// Define Var components
		Data: map[string]interface{}{"count": 0},
	},
}

// Set in vue
component.Set("button-counter")

// Run app
app.StartWait()
  • HTML (index.html):
<div  id="demo-component">
	<button-counter></button-counter>
	<button-counter></button-counter>
</div>

Methods

  • HTML (methods.html)
<div  id="demo-methods">
	<p>Alert Simple: </p>
	<button  v-on:click="alertFunc('Hi')">Alert Simple</button>

	<br>

	<p>Alert Input: "{{messagealert}}"</p>
	<input  placeholder="Input For: Alert Input"  v-model="messagealert">
	<button  v-on:click="alertInputFunc">Alert Input</button>
</div>
  • Go (methods.go)
package main

import (
	"syscall/js"
	"gitlab.com/AndrusGerman/vuego"
)

func  main() {
	// Create Basic app
	app  := vuego.Vue{
		El: "#demo-methods",
		Primitive: vuego.Primitive{
		// Methods
		Methods: map[string]js.Func{
			// Alert Simple Function
			"alertFunc": js.FuncOf(func(this js.Value, args []js.Value) interface{} {
				js.Global().Call("alert", args[0])
				return  nil
			}),
			// Alert Input
			"alertInputFunc": js.FuncOf(func(this js.Value, args []js.Value) interface{} {
				js.Global().Call("alert", this.Get("messagealert")) // Alert input example
				return  nil
			}),
		},

		// Data
		Data: map[string]interface{}{
			"messagealert": "",
			},
		},
	}

	// Start and Wait
	app.StartWait()
}

Watch

  • HTML (watch.html)
<div  id="demo-watch">
	<input  placeholder="Input Log"  v-model="textinput">
</div>
  • Go (watch.go)
package main

import (
	"syscall/js"
	"gitlab.com/AndrusGerman/vuego"
)

func  main() {
	// Create Basic app
	app  := vuego.Vue{
		El: "#demo-watch",
		Primitive: vuego.Primitive{
			// Watch Methods
			Watch: map[string]js.Func{
			// Watch for 'textinput'
			"textinput": js.FuncOf(func(this js.Value, args []js.Value) interface{} {
				newText  := args[0].String()
				oldText  := args[1].String()
				fmt.Printf("Old: '%s', New: '%s'\n", oldText, newText)
				return  nil
				}),
			},
			// Data
			Data: map[string]interface{}{"textinput": ""},
		},
	}
	// Start and Wait
	app.StartWait()
}

Params:

Params is the ability to add custom parameters when creating a Vue instance.

Vuetify on VueGO thanks to params:

HTML =
  • Add CSS Vuetify HEAD HTML (index.html)
<head>
  <link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
  <link href="https://cdn.jsdelivr.net/npm/@mdi/font@4.x/css/materialdesignicons.min.css" rel="stylesheet">
  <link href="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.min.css" rel="stylesheet">
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
</head>
  • Add JS Vuetify BODY HTML (index.html) after importing vue and before VueGo:
 <script src="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.js"></script>
  • Add Code App in BODY HTML (index.html)
<div  id="demo-vuetify-params">
	<v-app>
		<v-content>
			<v-container>Hello VueGo (Vuetify)</v-container>
		</v-content>
	</v-app>
</div>
GO =
  • Create basic app:
// Create Basic app
app  := vuego.Vue{El: "#demo-vuetify-params"}
  • Add Param Vuetify in Start or StartWait:
// Start and Wait

app.StartWait(
	vuego.Params{Name: "vuetify", Value:js.Global().Get("Vuetify").New()},
)
All Code (Go,HTML) Vuetify Params:
  • GO
package main

import (
	"syscall/js"
	"gitlab.com/AndrusGerman/vuego"
)

func  main() {
	// Create Basic app
	app  := vuego.Vue{El: "#demo-vuetify-params"}
	// Start and Wait
	app.StartWait(
		vuego.Params{Name: "vuetify", Value: js.Global().Get("Vuetify").New()},
	)
}
  • HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hello VueGo</title>
<!-- Styles -->
<link  href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900"  rel="stylesheet">
<link  href="https://cdn.jsdelivr.net/npm/@mdi/font@4.x/css/materialdesignicons.min.css"  rel="stylesheet">
<link  href="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.min.css"  rel="stylesheet">
<meta  name="viewport"  content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<!-- Scripts-->
<script  src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script  src="https://cdn.jsdelivr.net/npm/vuetify@2.x/dist/vuetify.js"></script>
<script  src="./wasm_exec.js"></script>
</head>
<body>
	<div id="demo-vuetify-params">
		<v-app>
			<v-content>
				<v-container>Hello VueGo (Vuetify)</v-container>
			</v-content>
		</v-app>
	</div>
	<script>
	const go = new Go();
	WebAssembly.instantiateStreaming(fetch('./main.wasm'), go.importObject).then(v => go.run(v.instance));
	</script>
</body>
</html>

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Component

type Component struct {

	// Template : string data
	Template string
	// Primitive data
	Primitive
	// contains filtered or unexported fields
}

Component Model for Vue

func (*Component) GetDataObject added in v1.1.0

func (ctx *Component) GetDataObject(vparams ...Params) js.Value

GetDataObject Convert Component data in Object

func (*Component) Set

func (ctx *Component) Set(instance string) js.Value

Set VueComponet Component instance: Example 'user-componet'

type Params

type Params struct {
	Name string
	// Value : js.Value or primitive Go
	Value interface{}
}

Params is custom params in newVue Object

type Primitive

type Primitive struct {
	// Data: Vars vue
	Data map[string]interface{}
	// Methods: Methods Vue
	Methods map[string]js.Func
	// Watch: Watch functions
	Watch map[string]js.Func
	// Created: func call on created componet
	Created func(this js.Value)
	// Params: Ccustom params in newVue Object
	Params []Params
}

Primitive Model

type Vue

type Vue struct {
	// El: id element html 'main'
	El string
	// Primitive Data for Vue
	Primitive
}

Vue Model

func (*Vue) Start

func (ctx *Vue) Start(vparams ...Params) (js.Value, error)

Start Vue Component

func (*Vue) StartWait

func (ctx *Vue) StartWait(vparams ...Params)

StartWait : Start vue and wait

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL