mirror of
https://github.com/taigrr/wails.git
synced 2026-04-14 02:48:21 -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>
208 lines
4.9 KiB
Go
208 lines
4.9 KiB
Go
// +build !server,!desktop,hybrid
|
|
|
|
package app
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/leaanthony/clir"
|
|
"github.com/wailsapp/wails/v2/internal/binding"
|
|
"github.com/wailsapp/wails/v2/internal/ffenestri"
|
|
"github.com/wailsapp/wails/v2/internal/logger"
|
|
"github.com/wailsapp/wails/v2/internal/messagedispatcher"
|
|
"github.com/wailsapp/wails/v2/internal/servicebus"
|
|
"github.com/wailsapp/wails/v2/internal/subsystem"
|
|
"github.com/wailsapp/wails/v2/internal/webserver"
|
|
)
|
|
|
|
// Config defines the Application's configuration
|
|
type Config struct {
|
|
Title string // Title is the value to be displayed in the title bar
|
|
Width int // Width is the desired window width
|
|
Height int // Height is the desired window height
|
|
DevTools bool // DevTools enables or disables the browser development tools
|
|
Resizable bool // Resizable when False prevents window resizing
|
|
ServerEnabled bool // ServerEnabled when True allows remote connections
|
|
}
|
|
|
|
// App defines a Wails application structure
|
|
type App struct {
|
|
config Config
|
|
window *ffenestri.Application
|
|
webserver *webserver.WebServer
|
|
binding *subsystem.Binding
|
|
call *subsystem.Call
|
|
event *subsystem.Event
|
|
log *subsystem.Log
|
|
runtime *subsystem.Runtime
|
|
|
|
bindings *binding.Bindings
|
|
logger *logger.Logger
|
|
dispatcher *messagedispatcher.Dispatcher
|
|
servicebus *servicebus.ServiceBus
|
|
|
|
debug bool
|
|
}
|
|
|
|
// Create App
|
|
func CreateApp(options *Options) *App {
|
|
|
|
// Merge default options
|
|
options.mergeDefaults()
|
|
|
|
// Set up logger
|
|
myLogger := logger.New(os.Stdout)
|
|
myLogger.SetLogLevel(logger.INFO)
|
|
|
|
window := ffenestri.NewApplicationWithConfig(&ffenestri.Config{
|
|
Title: options.Title,
|
|
Width: options.Width,
|
|
Height: options.Height,
|
|
MinWidth: options.MinWidth,
|
|
MinHeight: options.MinHeight,
|
|
MaxWidth: options.MaxWidth,
|
|
MaxHeight: options.MaxHeight,
|
|
StartHidden: options.StartHidden,
|
|
|
|
// This should be controlled by the compile time flags...
|
|
DevTools: true,
|
|
|
|
Resizable: !options.DisableResize,
|
|
Fullscreen: options.Fullscreen,
|
|
}, myLogger)
|
|
|
|
app := &App{
|
|
window: window,
|
|
webserver: webserver.NewWebServer(myLogger),
|
|
servicebus: servicebus.New(myLogger),
|
|
logger: myLogger,
|
|
bindings: binding.NewBindings(myLogger),
|
|
}
|
|
|
|
// Initialise the app
|
|
app.Init()
|
|
|
|
return app
|
|
}
|
|
|
|
// Run the application
|
|
func (a *App) Run() error {
|
|
|
|
// Default app options
|
|
var port = 8080
|
|
var ip = "localhost"
|
|
var suppressLogging = false
|
|
|
|
// Create CLI
|
|
cli := clir.NewCli(filepath.Base(os.Args[0]), "Desktop/Server Build", "")
|
|
|
|
// Setup flags
|
|
cli.IntFlag("p", "Port to serve on", &port)
|
|
cli.StringFlag("i", "IP to serve on", &ip)
|
|
cli.BoolFlag("q", "Suppress logging", &suppressLogging)
|
|
|
|
// Setup main action
|
|
cli.Action(func() error {
|
|
|
|
// Set IP + Port
|
|
a.webserver.SetPort(port)
|
|
a.webserver.SetIP(ip)
|
|
a.webserver.SetBindings(a.bindings)
|
|
// Log information (if we aren't suppressing it)
|
|
if !suppressLogging {
|
|
cli.PrintBanner()
|
|
a.logger.Info("Running server at %s", a.webserver.URL())
|
|
}
|
|
|
|
a.servicebus.Start()
|
|
log, err := subsystem.NewLog(a.servicebus, a.logger)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
a.log = log
|
|
a.log.Start()
|
|
dispatcher, err := messagedispatcher.New(a.servicebus, a.logger)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
a.dispatcher = dispatcher
|
|
a.dispatcher.Start()
|
|
|
|
// Start the runtime
|
|
runtime, err := subsystem.NewRuntime(a.servicebus, a.logger)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
a.runtime = runtime
|
|
a.runtime.Start()
|
|
|
|
// Start the binding subsystem
|
|
binding, err := subsystem.NewBinding(a.servicebus, a.logger, a.bindings, runtime.GoRuntime())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
a.binding = binding
|
|
a.binding.Start()
|
|
|
|
// Start the eventing subsystem
|
|
event, err := subsystem.NewEvent(a.servicebus, a.logger)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
a.event = event
|
|
a.event.Start()
|
|
|
|
// Start the call subsystem
|
|
call, err := subsystem.NewCall(a.servicebus, a.logger, a.bindings.DB())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
a.call = call
|
|
a.call.Start()
|
|
|
|
// Required so that the WailsInit functions are fired!
|
|
runtime.GoRuntime().Events.Emit("wails:loaded")
|
|
|
|
// Set IP + Port
|
|
a.webserver.SetPort(port)
|
|
a.webserver.SetIP(ip)
|
|
|
|
// Log information (if we aren't suppressing it)
|
|
if !suppressLogging {
|
|
cli.PrintBanner()
|
|
println("Running server at " + a.webserver.URL())
|
|
}
|
|
|
|
// Dump bindings as a debug
|
|
bindingDump, err := a.bindings.ToJSON()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
go func() {
|
|
if err := a.webserver.Start(dispatcher, event); err != nil {
|
|
a.logger.Error("Webserver failed to start %s", err)
|
|
}
|
|
}()
|
|
|
|
result := a.window.Run(dispatcher, bindingDump)
|
|
a.servicebus.Stop()
|
|
|
|
return result
|
|
})
|
|
|
|
return cli.Run()
|
|
}
|
|
|
|
// Bind a struct to the application by passing in
|
|
// a pointer to it
|
|
func (a *App) Bind(structPtr interface{}) {
|
|
|
|
// Add the struct to the bindings
|
|
err := a.bindings.Add(structPtr)
|
|
if err != nil {
|
|
a.logger.Fatal("Error during binding: " + err.Error())
|
|
}
|
|
}
|