Documentation ¶
Overview ¶
Package vugu provides core functionality including vugu->go codegen and in-browser DOM syncing running in WebAssembly. See http://www.vugu.org/
Since Vugu projects can have both client-side (running in WebAssembly) as well as server-side functionality many of the items in this package are available in both environments. Some however are either only available or only generally useful in one environment.
Common functionality includes the ComponentType interface, and ComponentInst struct corresponding to an instantiated componnet. VGNode and related structs are used to represent a virtual Document Object Model. It is based on golang.org/x/net/html but with additional fields needed for Vugu. Data hashing is performed by ComputeHash() and can be customized by implementing the DataHasher interface.
Client-side code uses JSEnv to maintain a render loop and regenerate virtual DOM and efficiently synchronize it with the browser as needed. DOMEvent is a wrapper around events from the browser and EventEnv is used to synchronize data access when writing event handler code that spawns goroutines. Where appropriate, server-side stubs are available so components can be compiled for both client (WebAssembly) and server (server-side rendering and testing).
Server-side code can use ParserGo and ParserGoPkg to parse .vugu files and code generate a corresponding .go file. StaticHTMLEnv can be used to generate static HTML, similar to the output of JSEnv but can be run on the server. Supported features are approximately the same minus event handling, unapplicable to static output.
Index ¶
- Constants
- func MakeCompKeyID(t time.Time, data uint32) uint64
- func MakeCompKeyIDNowRand() uint64
- func MakeCompKeyIDTimeHash(t time.Time, b []byte) uint64
- type BeforeBuilder
- type BuildEnv
- type BuildIn
- type BuildOut
- type BuildResults
- type Builder
- type BuilderFunc
- type ChangeCounter
- type CompKey
- type DOMEvent
- func (e *DOMEvent) EventEnv() EventEnv
- func (e *DOMEvent) EventSummary() map[string]interface{}
- func (e *DOMEvent) JSEvent() js.Value
- func (e *DOMEvent) JSEventCurrentTarget() js.Value
- func (e *DOMEvent) JSEventTarget() js.Value
- func (e *DOMEvent) PreventDefault()
- func (e *DOMEvent) Prop(keys ...string) interface{}
- func (e *DOMEvent) PropBool(keys ...string) bool
- func (e *DOMEvent) PropFloat64(keys ...string) float64
- func (e *DOMEvent) PropString(keys ...string) string
- func (e *DOMEvent) StopPropagation()
- type DOMEventHandlerSpec
- type EventEnv
- type EventEnvImpl
- type ModChecker
- type ModTracker
- type VGAttribute
- type VGNode
- type VGNodeType
- type VGProperty
Constants ¶
const ( ErrorNode = VGNodeType(0) TextNode = VGNodeType(1) DocumentNode = VGNodeType(2) ElementNode = VGNodeType(3) CommentNode = VGNodeType(4) DoctypeNode = VGNodeType(5) )
Available VGNodeTypes.
Variables ¶
This section is empty.
Functions ¶
func MakeCompKeyID ¶ added in v0.2.0
MakeCompKeyID forms a value for CompKey.ID from the given time the uint32 you provide for the lower 32 bits.
func MakeCompKeyIDNowRand ¶ added in v0.2.0
func MakeCompKeyIDNowRand() uint64
MakeCompKeyIDNowRand generates a value for CompKey.ID based on the current unix timestamp in seconds for the top 32 bits and the bottom 32 bits populated from a random source
Types ¶
type BeforeBuilder ¶ added in v0.2.0
type BeforeBuilder interface {
BeforeBuild()
}
BeforeBuilder can be implemented by components that need a chance to compute internal values after properties have been set but before Build is called.
type BuildEnv ¶ added in v0.2.0
type BuildEnv struct {
// contains filtered or unexported fields
}
BuildEnv is the environment used when building virtual DOM.
func NewBuildEnv ¶ added in v0.2.0
NewBuildEnv returns a newly initialized BuildEnv.
func (*BuildEnv) CachedComponent ¶ added in v0.2.0
CachedComponent will return the component that corresponds to a given CompKey. The CompKey must contain a unique ID for the instance in question, and an optional IterKey if applicable in the caller. A nil value will be returned if nothing is found. During a single build pass only one component will be returned for a specified key (it is removed from the pool), in order to protect against broken callers that accidentally forget to set IterKey properly and ask for the same component over and over, in whiich case the first call will return a value and subsequent calls will return nil.
func (*BuildEnv) RunBuild ¶ added in v0.2.0
func (e *BuildEnv) RunBuild(builder Builder) *BuildResults
RunBuild performs a bulid on a component, managing the lifecycles of nested components and related concerned. In the map that is output, m[builder] will give the BuildOut for the component in question. Child components can likewise be indexed using the component (which should be a struct pointer) as the key. Callers should not modify the return value as it is reused by subsequent calls.
func (*BuildEnv) SetWireFunc ¶ added in v0.2.0
SetWireFunc assigns the function to be called by WireComponent. If not set then WireComponent will have no effect.
func (*BuildEnv) UseComponent ¶ added in v0.2.0
UseComponent indicates the component which was actually used for a specified CompKey during this build pass and stores it for later use. In the next build pass, components which have be provided UseComponent() will be available via CachedComponent().
func (*BuildEnv) WireComponent ¶ added in v0.2.0
WireComponent calls the wire function on this component. This is called during component creation and use and provides an opportunity to inject things into this component.
type BuildIn ¶ added in v0.2.0
type BuildIn struct {
BuildEnv *BuildEnv
}
BuildIn is the input to a Build call.
type BuildOut ¶ added in v0.2.0
type BuildOut struct { // output element(s) - usually just one that is parent to the rest but slots can have multiple Out []*VGNode // components that need to be built next - corresponding to each VGNode in Out with a Component value set, // we make the Builder populate this so BuildEnv doesn't have to traverse Out to gather up each node with a component // FIXME: should this be called ChildComponents, NextComponents? something to make it clear that these are pointers to more work to // do rather than something already done Components []Builder // optional CSS style or link tag(s) CSS []*VGNode // optional JS script tag(s) JS []*VGNode }
BuildOut is the output from a Build call. It includes Out as the DOM elements produced, plus slices for CSS and JS elements.
type BuildResults ¶ added in v0.2.0
type BuildResults struct { Out *BuildOut // contains filtered or unexported fields }
BuildResults contains the BuildOut values for full tree of components built.
func (*BuildResults) ResultFor ¶ added in v0.2.0
func (r *BuildResults) ResultFor(component interface{}) *BuildOut
ResultFor is alias for indexing into AllOut.
type Builder ¶ added in v0.2.0
type Builder interface { // Build is called to construct a tree of VGNodes corresponding to the DOM of this component. // Note that Build does not return an error because there is nothing the caller can do about // it except for stop rendering. This way we force errors during Build to either be handled // internally or to explicitly result in a panic. Build(in *BuildIn) (out *BuildOut) }
Builder is the interface that components implement.
type BuilderFunc ¶ added in v0.2.0
BuilderFunc is a Build-like function that implements Builder.
func (BuilderFunc) Build ¶ added in v0.2.0
func (f BuilderFunc) Build(in *BuildIn) (out *BuildOut)
Build implements Builder.
type ChangeCounter ¶ added in v0.2.0
type ChangeCounter int
ChangeCounter is a number that can be incremented to indicate modification. The ModCheck method is implemented using this number. A ChangeCounter can be used directly or embedded in a struct, with its methods calling Changed on each mutating operation, in order to track its modification.
func (*ChangeCounter) Changed ¶ added in v0.2.0
func (c *ChangeCounter) Changed()
Changed increments the counter to indicate a modification.
func (*ChangeCounter) ModCheck ¶ added in v0.2.0
func (c *ChangeCounter) ModCheck(mt *ModTracker, oldData interface{}) (isModified bool, newData interface{})
ModCheck implements the ModChecker interface.
type CompKey ¶ added in v0.2.0
type CompKey struct { ID uint64 // unique ID for this instance of a component, randomly generated and embeded into source code IterKey interface{} // optional iteration key to distinguish the same component reference in source code but different loop iterations }
CompKey is the key used to identify and look up a component instance.
func MakeCompKey ¶ added in v0.2.0
MakeCompKey creates a CompKey from the id and iteration key you provide. The purpose is to hide the implementation of CompKey as it can vary.
type DOMEvent ¶
type DOMEvent struct {
// contains filtered or unexported fields
}
DOMEvent is an event originated in the browser. It wraps the JS event that comes in. It is meant to be used in WebAssembly but some methods exist here so code can compile server-side as well (although DOMEvents should not ever be generated server-side).
func NewDOMEvent ¶ added in v0.2.0
NewDOMEvent returns a new initialized DOMEvent.
func (*DOMEvent) EventEnv ¶
EventEnv returns the EventEnv for the current environment and allows locking and unlocking around modifications. See EventEnv struct.
func (*DOMEvent) EventSummary ¶ added in v0.2.0
EventSummary returns a map with simple properties (primitive types) from the event. Accessing values returns by EventSummary incurs no additional performance or memory penalty, whereas calls to JSEvent, JSEventTarget, etc. require a call into the browser JS engine and the attendant resource usage. So if you can get the information you need from the EventSummary, that's better.
func (*DOMEvent) JSEvent ¶
JSEvent this returns a js.Value in wasm that corresponds to the event object. Non-wasm implementation returns nil.
func (*DOMEvent) JSEventCurrentTarget ¶ added in v0.2.0
JSEventCurrentTarget returns the value of the "currentTarget" property of the event, the element that is currently processing the event.
func (*DOMEvent) JSEventTarget ¶ added in v0.2.0
JSEventTarget returns the value of the "target" property of the event, the element that the event was originally fired/registered on.
func (*DOMEvent) PreventDefault ¶
func (e *DOMEvent) PreventDefault()
PreventDefault calls preventDefault() on the underlying DOM event. May only be used within event handler in same goroutine.
func (*DOMEvent) Prop ¶ added in v0.2.0
Prop returns a value from the EventSummary using the keys you specify. The keys is a list of map keys to be looked up. For example: e.Prop("target", "name") will return the same value as e.EventSummary()["target"]["name"], except that Prop helps with some edge cases and if a value is missing of the wrong type, nil will be returned, instead of panicing.
func (*DOMEvent) PropBool ¶ added in v0.2.0
PropBool is like Prop but returns it's value as a bool. No type conversion is done, if the requested value is not already a bool then false will be returned.
func (*DOMEvent) PropFloat64 ¶ added in v0.2.0
PropFloat64 is like Prop but returns it's value as a float64. No type conversion is done, if the requested value is not already a float64 then float64(0) will be returned.
func (*DOMEvent) PropString ¶ added in v0.2.0
PropString is like Prop but returns it's value as a string. No type conversion is done, if the requested value is not already a string then an empty string will be returned.
func (*DOMEvent) StopPropagation ¶ added in v0.2.0
func (e *DOMEvent) StopPropagation()
StopPropagation calls stopPropagation() on the underlying DOM event. May only be used within event handler in same goroutine.
type DOMEventHandlerSpec ¶ added in v0.2.0
type EventEnv ¶
type EventEnv interface { Lock() // acquire write lock UnlockOnly() // release write lock UnlockRender() // release write lock and request re-render RLock() // acquire read lock RUnlock() // release read lock }
EventEnv provides locking mechanism to for rendering environment to events so data access and rendering can be synchronized and avoid race conditions.
type EventEnvImpl ¶ added in v0.2.0
type EventEnvImpl struct {
// contains filtered or unexported fields
}
EventEnvImpl implements EventEnv
func NewEventEnvImpl ¶ added in v0.2.0
func NewEventEnvImpl(rwmu *sync.RWMutex, requestRenderCH chan bool) *EventEnvImpl
NewEventEnvImpl creates and returns a new EventEnvImpl.
func (*EventEnvImpl) Lock ¶ added in v0.2.0
func (ee *EventEnvImpl) Lock()
Lock will acquire write lock
func (*EventEnvImpl) RLock ¶ added in v0.2.0
func (ee *EventEnvImpl) RLock()
RLock will acquire a read lock
func (*EventEnvImpl) RUnlock ¶ added in v0.2.0
func (ee *EventEnvImpl) RUnlock()
RUnlock will release the read lock
func (*EventEnvImpl) UnlockOnly ¶ added in v0.2.0
func (ee *EventEnvImpl) UnlockOnly()
UnlockOnly will release the write lock
func (*EventEnvImpl) UnlockRender ¶ added in v0.2.0
func (ee *EventEnvImpl) UnlockRender()
UnlockRender will release write lock and request re-render
type ModChecker ¶ added in v0.2.0
type ModChecker interface {
ModCheck(mt *ModTracker, oldData interface{}) (isModified bool, newData interface{})
}
ModChecker interface is implemented by types that want to implement their own modification tracking. The ModCheck method is passed a ModTracker (for use in checking child values for modification if needed), and the prior data value stored corresponding to this value (will be nil on the first call). ModCheck should return true if this instance is modified, as well as a new data value to be stored. It is up to the specific implementation to decide what type to use for oldData and newData and how to compare them. In some cases it may be appropriate to return the value itself or a summarized version of it. But for types that use lots of memory and would otherwise take too much time to traverse, a counter or other value can be used to indicate that some changed is occured, with the rest of the application using mutator methods to increment this value upon change.
type ModTracker ¶ added in v0.2.0
type ModTracker struct {
// contains filtered or unexported fields
}
ModTracker tracks modifications and maintains the appropriate state for this.
func NewModTracker ¶ added in v0.2.0
func NewModTracker() *ModTracker
NewModTracker creates an empty ModTracker, calls TrackNext on it, and returns it.
func (*ModTracker) ModCheckAll ¶ added in v0.2.0
func (mt *ModTracker) ModCheckAll(values ...interface{}) (ret bool)
ModCheckAll performs a modification check on the values provided. For values implementing the ModChecker interface, the ModCheck method will be called. All values passed should be pointers to the types described below. Single-value primitive types are supported. Structs are supported and and are traversed by calling ModCheckAll on each with the tag `vugu:"modcheck"`. Arrays and slices of supported types are supported, their length is compared as well as a pointer to each member. As a special case []byte is treated like a string. Maps are not supported at this time. Other weird and wonderful things like channels and funcs are not supported. Passing an unsupported type will result in a panic.
func (*ModTracker) TrackNext ¶ added in v0.2.0
func (mt *ModTracker) TrackNext()
TrackNext moves the "current" information to the "old" position - starting a new round of change tracking. Calls to ModCheckAll after calling TrackNext will compare current values to the values from before the call to TrackNext. It is generally called once at the start of each build and render cycle. This method must be called at least once before doing modification checks.
type VGAttribute ¶
type VGAttribute struct {
Namespace, Key, Val string
}
VGAttribute is the attribute on an HTML tag.
type VGNode ¶
type VGNode struct {
Parent, FirstChild, LastChild, PrevSibling, NextSibling *VGNode
Type VGNodeType
// DataAtom VGAtom // this needed to come out, we're not using it and without well-defined behavior it just becomes confusing and problematic
Data string
Namespace string
Attr []VGAttribute
// JS properties to e set during render
Prop []VGProperty
InnerHTML *string // indicates that children should be ignored and this raw HTML is the children of this tag; nil means not set, empty string means explicitly set to empty string
DOMEventHandlerSpecList []DOMEventHandlerSpec // replacing DOMEventHandlers
// indicates this node's output should be delegated to the specified component
Component interface{}
}
VGNode represents a node from our virtual DOM with the dynamic parts wired up into functions.
func (*VGNode) AppendChild ¶
AppendChild adds a node c as a child of n.
It will panic if c already has a parent or siblings.
func (*VGNode) InsertBefore ¶
InsertBefore inserts newChild as a child of n, immediately before oldChild in the sequence of n's children. oldChild may be nil, in which case newChild is appended to the end of n's children.
It will panic if newChild already has a parent or siblings.
func (*VGNode) RemoveChild ¶
RemoveChild removes a node c that is a child of n. Afterwards, c will have no parent and no siblings.
It will panic if c's parent is not n.
func (*VGNode) Walk ¶
Walk will walk the tree under a VGNode using the specified callback function. If the function provided returns a non-nil error then walking will be stopped and this error will be returned. Only FirstChild and NextSibling are used while walking and so with well-formed documents should not loop. (But loops created manually by modifying FirstChild or NextSibling pointers could cause this function to recurse indefinitely.) Note that f may modify nodes as it visits them with predictable results as long as it does not modify elements higher on the tree (up, toward the parent); it is safe to modify self and children.
type VGNodeType ¶
type VGNodeType uint32
VGNodeType is one of the valid node types (error, text, document, element, comment, doctype). Note that only text, element and comment are currently used.
type VGProperty ¶ added in v0.2.0
VGProperty is a JS property to be set on a DOM element.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
cmd
|
|
vugugen
vugugen is a command line tool to convert .vugu files into Go source code.
|
vugugen is a command line tool to convert .vugu files into Go source code. |
Package distutil has some useful functions for building your Vugu application's distribution Rather than introducing third party build tools.
|
Package distutil has some useful functions for building your Vugu application's distribution Rather than introducing third party build tools. |
examples
|
|
fetch-and-display
Module
|
|
simple
Module
|
|
full-test-data
|
|
test1
Module
|
|
test2
Module
|
|
test3
Module
|
|
internal
|
|
htmlx
Package htmlx is a fork of https://github.com/golang/net/html.
|
Package htmlx is a fork of https://github.com/golang/net/html. |
htmlx/atom
Package atom provides integer codes (also known as atoms) for a fixed set of frequently occurring HTML strings: tag names and attribute keys such as "p" and "id".
|
Package atom provides integer codes (also known as atoms) for a fixed set of frequently occurring HTML strings: tag names and attribute keys such as "p" and "id". |
htmlx/charset
Package charset provides common text encodings for HTML documents.
|
Package charset provides common text encodings for HTML documents. |
Package js is a drop-in replacement for syscall/js that provides identical behavior in a WebAssembly environment, and useful non-functional behavior outside of WebAssembly.
|
Package js is a drop-in replacement for syscall/js that provides identical behavior in a WebAssembly environment, and useful non-functional behavior outside of WebAssembly. |
magefiles
module
|
|
Package simplehttp provides an http.Handler that makes it easy to serve Vugu applications.
|
Package simplehttp provides an http.Handler that makes it easy to serve Vugu applications. |
Package vugufmt provides gofmt-like functionality for vugu files.
|
Package vugufmt provides gofmt-like functionality for vugu files. |
wasm-test-suite
|
|
test-001-simple
Module
|
|
test-002-click
Module
|
|
test-003-prop
Module
|
|
test-004-component
Module
|
|
test-005-issue-80
Module
|
|
test-006-issue-81
Module
|
|
test-007-issue-85
Module
|
|
test-008-for-i
Module
|
|
test-008-for-keyvalue
Module
|
|
test-008-for-kv
Module
|
|
test-009-trim-unused
Module
|
|
test-010-listener-readd
Module
|
|
test-011-wire
Module
|
|
test-012-router
Module
|
|
test-013-issue-117
Module
|
|
test-014-attrintf
Module
|
|
test-015-attribute-lister
Module
|
|
test-016-svg
Module
|
|
test-017-nesting
Module
|
|
test-018-comp-events
Module
|
|
test-019-js-create-populate
Module
|
|
test-020-vgform
Module
|
|
test-021-slots
Module
|
|
test-022-event-listener
Module
|
|
test-023-lifecycle-callbacks
Module
|
|
test-024-event-buffer-size
Module
|