mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 07:29:56 +08:00

* Update nsis template * Move app data into config.yml * mac support * Add FileAssociations application config option Support `ApplicationOpenedWithFile` event on Windows Add docs * Add FileAssociations application config option Support `ApplicationOpenedWithFile` event on Windows Add docs Add test project * Update example & docs. Fix show window bug. * Fix window show event bug * Update changelog
92 lines
3.0 KiB
Go
92 lines
3.0 KiB
Go
package main
|
|
|
|
import (
|
|
"embed"
|
|
_ "embed"
|
|
"github.com/wailsapp/wails/v3/pkg/events"
|
|
"log"
|
|
"time"
|
|
|
|
"github.com/wailsapp/wails/v3/pkg/application"
|
|
)
|
|
|
|
// Wails uses Go's `embed` package to embed the frontend files into the binary.
|
|
// Any files in the frontend/dist folder will be embedded into the binary and
|
|
// made available to the frontend.
|
|
// See https://pkg.go.dev/embed for more information.
|
|
|
|
//go:embed frontend/dist
|
|
var assets embed.FS
|
|
|
|
// main function serves as the application's entry point. It initializes the application, creates a window,
|
|
// and starts a goroutine that emits a time-based event every second. It subsequently runs the application and
|
|
// logs any error that might occur.
|
|
func main() {
|
|
|
|
// Create a new Wails application by providing the necessary options.
|
|
// Variables 'Name' and 'Description' are for application metadata.
|
|
// 'Assets' configures the asset server with the 'FS' variable pointing to the frontend files.
|
|
// 'Bind' is a list of Go struct instances. The frontend has access to the methods of these instances.
|
|
// 'Mac' options tailor the application when running an macOS.
|
|
app := application.New(application.Options{
|
|
Name: "fileassoc",
|
|
Description: "A demo of using raw HTML & CSS",
|
|
Services: []application.Service{
|
|
application.NewService(&GreetService{}),
|
|
},
|
|
Assets: application.AssetOptions{
|
|
Handler: application.AssetFileServerFS(assets),
|
|
},
|
|
Mac: application.MacOptions{
|
|
ApplicationShouldTerminateAfterLastWindowClosed: true,
|
|
},
|
|
FileAssociations: []string{".wails"},
|
|
})
|
|
|
|
// Create a new window with the necessary options.
|
|
// 'Title' is the title of the window.
|
|
// 'Mac' options tailor the window when running on macOS.
|
|
// 'BackgroundColour' is the background colour of the window.
|
|
// 'URL' is the URL that will be loaded into the webview.
|
|
window := app.NewWebviewWindowWithOptions(application.WebviewWindowOptions{
|
|
Title: "Window 1",
|
|
Mac: application.MacWindow{
|
|
InvisibleTitleBarHeight: 50,
|
|
Backdrop: application.MacBackdropTranslucent,
|
|
TitleBar: application.MacTitleBarHiddenInset,
|
|
},
|
|
BackgroundColour: application.NewRGB(27, 38, 54),
|
|
URL: "/",
|
|
})
|
|
|
|
var filename string
|
|
app.OnApplicationEvent(events.Common.ApplicationOpenedWithFile, func(event *application.ApplicationEvent) {
|
|
filename = event.Context().Filename()
|
|
})
|
|
|
|
window.OnWindowEvent(events.Common.WindowShow, func(event *application.WindowEvent) {
|
|
application.InfoDialog().
|
|
SetTitle("File Opened").
|
|
SetMessage("Application opened with file: " + filename).
|
|
Show()
|
|
})
|
|
|
|
// Create a goroutine that emits an event containing the current time every second.
|
|
// The frontend can listen to this event and update the UI accordingly.
|
|
go func() {
|
|
for {
|
|
now := time.Now().Format(time.RFC1123)
|
|
app.EmitEvent("time", now)
|
|
time.Sleep(time.Second)
|
|
}
|
|
}()
|
|
|
|
// Run the application. This blocks until the application has been exited.
|
|
err := app.Run()
|
|
|
|
// If an error occurred while running the application, log it and exit.
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|