mirror of
https://github.com/taigrr/wails.git
synced 2026-04-05 14:42:40 -07:00
* Get it compiling
* Stubs in place to compile
* Semi runs
* add darwin platform for server
* Evaluation working correctly. Still WIP
* Ignore favicon for desktop
* lint
* Remove feature flag code
* More feature flag removal
* Support sending messages to the backend
* Callbacks working
* Add Center + refactor prefs
* Fix logger
* Callback hooks for MOAE
* Update packages
* ignore test builds
* Support Un/Fullscreen
* vscode stuff
* Only show window when rendered
* Get it compiling again!
* Support tons of stuff!
* Tidy up
* More refactoring
* WIP [bugged]
* Got get frame working
* fix setsize and setposition
* Add Mac Application Options
* Add HideTitleBar
* Support more mac window options
* Add Toolbar support for Mac
* Support colour
* Support runtime colour change
* Moved options to own package
* Refactored mac titlebar options
* Support hidden titlebar
* Support HiddenInset Titlebar
* Support TitleBar Default
Fixed merging defaults
* Sample titlebars
* Fix minmax app
* Min/Max size supported
* WIP: Support multiple value return
* Support OpenDialog
* Remove old dialog code
* change service bus topics for dialogs
* Revert changes to v1
* Use options struct for dialogs
* Initial support for OpenDialog
* Support selecting files+dirs
* Support multiple files in dialog
* Support all dialog properties
* Add comments
* Filter support
* Support default directory
* Support SaveDialog
* Tidy Up
* WIP: Basics of window drag
* Support window dragging
* Update tests
* Frameless is calculated for Mac
* Tidy up
* Support vibrancy and transparency for webview
Options Colour -> RGBA
* Rename vibrancy to appearance
* Add default appearance
* Refactor part 1
* Refactor Part 2
* Support Translucent Window Background
* Update runtime test
* Add IsDarkMode
Updated runtime test
* Support theme mode change event
* Misc fixes for events
* Support OnMultiple
* Small fixes to frontend events
* Add System calls to runtime
* Add system calls to js runtime
* Support System calls in Go Runtime
* Port Sync Store
* Refactor store. Add get().
* Refactor system. Add IsDarkMode state store
* Use IsDarkMode state store
* Remove generated files
* Support setting app state at startup
* Add Store to go runtime
* Update runtime to v1.0.3
* Remove unused event messages
* Debugging
* initial kitchen sink
* Fix right click crash
* Better drag support
* WIP
* Remove log package
* Add Log to Go runtime
* Add logging to kitchen sink
* Improved CodeBlock. Dark mode to store.
* Start Events. List styling moved to global scope.
* Make logger a public package
* Revert logger package
* Major logging refactor
* Make Ffenestri use logging subsystem.
* Debug refactor
* Add trace to JS runtime
* Migrate runtime to @wails
* Support Trace in kitchensink
* Support trace in go runtime
* Support log level
* Support Print in JS runtime
* Runtime v1.0.1
* Move Info message to Trace
* Support Print logging
* Updated Logger interface
* Fix number of methods in Log
* Support SetLogLevel() at runtime
Refactor of loglevel
* Made go runtime package public.
Using loglevel store to keep loglevel in sync
* Support dynamic loglevel
* Runtime refactor
* Fully refactored logging
* Better looking scrollbar
* Terminal output component
* Link component
* SetLogLevel fully supported
* Runtime defs update.
Slight System refactor
* More Logging updates
* Move preview for SetLogLevel
* Fix log level reactivity.
Misc fixes and tweaks
* logging: slight refactor
* Update logger constants to fix default values
* @wails/runtime v1.0.4
* Fix change in logging levels
* hook in windowWillClose
* refactor clilogger
* WIP Events.On
* Add Events.On
* Improved error handling?
* Disable annoying smart quotes
* update runtime definitions
* Support Emit & Once. Improved On.
* Remove old event methods
* Remove old Event methods
* Update runtime in kitchensink
* Revert Fatal on JS Error
* Tidy up events runtime
* Finish events page
* Update Browser runtime API
* Unify Browser runtime
* JS Runtime v1.0.8
* Fix browser runtime export
* Remove debug line
* Add Browser examples
* Update title
* Improved runtime.System
* Update runtime.System to make all methods
* Expose System methods in Go runtime
* Add System to kitchensink
* Huge improvement to calls: Now handles objects
* Add JS runtime Dialog
* Dialog WIP
* Js package generation (#554)
* WIP
* Generation of index.js
* Add RelativeToCwd
* Add JSDoc comments
* Convert to ES6 syntax
* Fix typo
* Initial generation of typescript declarations
* Typescript improvements
* Improved @returns jsdoc
* Improved declaration files
* Simplified output
* Rename file
* Tidy up
* Revert "Simplified output"
This reverts commit 15cdf7382b.
* Now parsing actual code
* Support Array types
* Reimagined parser
* Wrap parsing in Parser
* Rewritten module generator (TS Only)
* Final touches
* Slight refactor to improve output
* Struct comments. External struct literal binding
* Reworked project parser *working*
* remove debug info
* Refactor of parser
* remove the spew
* Better Ts support
* Better project generation logic
* Support local functions in bind()
* JS Object generation. Linting.
* Support json tags in module generation
* Updated mod files
* Support vscode file generation
* Better global.d.ts
* add ts-check to templates
* Support TS declaration files
* improved 'generate' command for module
Co-authored-by: Travis McLane <tmclane@gmail.com>
151 lines
4.1 KiB
Go
151 lines
4.1 KiB
Go
package binding
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"reflect"
|
|
"strings"
|
|
)
|
|
|
|
// BoundMethod defines all the data related to a Go method that is
|
|
// bound to the Wails application
|
|
type BoundMethod struct {
|
|
Name string `json:"name"`
|
|
Inputs []*Parameter `json:"inputs,omitempty"`
|
|
Outputs []*Parameter `json:"outputs,omitempty"`
|
|
Comments string `json:"comments,omitempty"`
|
|
Method reflect.Value `json:"-"`
|
|
}
|
|
|
|
// IsWailsInit returns true if the method name is "WailsInit"
|
|
func (b *BoundMethod) IsWailsInit() bool {
|
|
return strings.HasSuffix(b.Name, "WailsInit")
|
|
}
|
|
|
|
// IsWailsShutdown returns true if the method name is "WailsShutdown"
|
|
func (b *BoundMethod) IsWailsShutdown() bool {
|
|
return strings.HasSuffix(b.Name, "WailsShutdown")
|
|
}
|
|
|
|
// VerifyWailsInit checks if the WailsInit signature is correct
|
|
func (b *BoundMethod) VerifyWailsInit() error {
|
|
// Must only have 1 input
|
|
if b.InputCount() != 1 {
|
|
return fmt.Errorf("invalid method signature for %s: expected `WailsInit(*wails.Runtime) error`", b.Name)
|
|
}
|
|
|
|
// Check input type
|
|
if !b.Inputs[0].IsType("*runtime.Runtime") {
|
|
return fmt.Errorf("invalid method signature for %s: expected `WailsInit(*wails.Runtime) error`", b.Name)
|
|
}
|
|
|
|
// Must only have 1 output
|
|
if b.OutputCount() != 1 {
|
|
return fmt.Errorf("invalid method signature for %s: expected `WailsInit(*wails.Runtime) error`", b.Name)
|
|
}
|
|
|
|
// Check output type
|
|
if !b.Outputs[0].IsError() {
|
|
return fmt.Errorf("invalid method signature for %s: expected `WailsInit(*wails.Runtime) error`", b.Name)
|
|
}
|
|
|
|
// Input must be of type Runtime
|
|
return nil
|
|
}
|
|
|
|
// VerifyWailsShutdown checks if the WailsShutdown signature is correct
|
|
func (b *BoundMethod) VerifyWailsShutdown() error {
|
|
// Must have no inputs
|
|
if b.InputCount() != 0 {
|
|
return fmt.Errorf("invalid method signature for WailsShutdown: expected `WailsShutdown()`")
|
|
}
|
|
|
|
// Must have no outputs
|
|
if b.OutputCount() != 0 {
|
|
return fmt.Errorf("invalid method signature for WailsShutdown: expected `WailsShutdown()`")
|
|
}
|
|
|
|
// Input must be of type Runtime
|
|
return nil
|
|
}
|
|
|
|
// InputCount returns the number of inputs this bound method has
|
|
func (b *BoundMethod) InputCount() int {
|
|
return len(b.Inputs)
|
|
}
|
|
|
|
// OutputCount returns the number of outputs this bound method has
|
|
func (b *BoundMethod) OutputCount() int {
|
|
return len(b.Outputs)
|
|
}
|
|
|
|
// ParseArgs method converts the input json into the types expected by the method
|
|
func (b *BoundMethod) ParseArgs(args []json.RawMessage) ([]interface{}, error) {
|
|
|
|
result := make([]interface{}, b.InputCount())
|
|
for index, arg := range args {
|
|
typ := b.Inputs[index].reflectType
|
|
inputValue := reflect.New(typ).Interface()
|
|
err := json.Unmarshal(arg, inputValue)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if inputValue == nil {
|
|
result[index] = reflect.Zero(typ).Interface()
|
|
} else {
|
|
result[index] = reflect.ValueOf(inputValue).Elem().Interface()
|
|
}
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
// Call will attempt to call this bound method with the given args
|
|
func (b *BoundMethod) Call(args []interface{}) (interface{}, error) {
|
|
// Check inputs
|
|
expectedInputLength := len(b.Inputs)
|
|
actualInputLength := len(args)
|
|
if expectedInputLength != actualInputLength {
|
|
return nil, fmt.Errorf("%s takes %d inputs. Received %d", b.Name, expectedInputLength, actualInputLength)
|
|
}
|
|
|
|
/** Convert inputs to reflect values **/
|
|
|
|
// Create slice for the input arguments to the method call
|
|
callArgs := make([]reflect.Value, expectedInputLength)
|
|
|
|
// Iterate over given arguments
|
|
for index, arg := range args {
|
|
// Save the converted argument
|
|
callArgs[index] = reflect.ValueOf(arg)
|
|
}
|
|
|
|
// Do the call
|
|
callResults := b.Method.Call(callArgs)
|
|
|
|
//** Check results **//
|
|
var returnValue interface{}
|
|
var err error
|
|
|
|
switch b.OutputCount() {
|
|
case 1:
|
|
// Loop over results and determine if the result
|
|
// is an error or not
|
|
for _, result := range callResults {
|
|
interfac := result.Interface()
|
|
temp, ok := interfac.(error)
|
|
if ok {
|
|
err = temp
|
|
} else {
|
|
returnValue = interfac
|
|
}
|
|
}
|
|
case 2:
|
|
returnValue = callResults[0].Interface()
|
|
if temp, ok := callResults[1].Interface().(error); ok {
|
|
err = temp
|
|
}
|
|
}
|
|
|
|
return returnValue, err
|
|
}
|