package main import ( "context" "embed" "github.com/wailsapp/wails/v2" "github.com/wailsapp/wails/v2/pkg/menu" "github.com/wailsapp/wails/v2/pkg/options" "github.com/wailsapp/wails/v2/pkg/options/assetserver" "github.com/wailsapp/wails/v2/pkg/options/linux" "github.com/wailsapp/wails/v2/pkg/options/mac" "github.com/wailsapp/wails/v2/pkg/options/windows" runtime2 "github.com/wailsapp/wails/v2/pkg/runtime" "runtime" "tinyrdm/backend/consts" "tinyrdm/backend/services" ) //go:embed all:frontend/dist var assets embed.FS //go:embed build/appicon.png var icon []byte var version = "0.0.0" var gaMeasurementID, gaSecretKey string func main() { // Create an instance of the app structure sysSvc := services.System() connSvc := services.Connection() browserSvc := services.Browser() cliSvc := services.Cli() prefSvc := services.Preferences() prefSvc.SetAppVersion(version) windowWidth, windowHeight := prefSvc.GetWindowSize() // menu appMenu := menu.NewMenu() if runtime.GOOS == "darwin" { appMenu.Append(menu.AppMenu()) appMenu.Append(menu.EditMenu()) appMenu.Append(menu.WindowMenu()) } // Create application with options err := wails.Run(&options.App{ Title: "Tiny RDM", Width: windowWidth, Height: windowHeight, MinWidth: consts.MIN_WINDOW_WIDTH, MinHeight: consts.MIN_WINDOW_HEIGHT, Frameless: runtime.GOOS != "darwin", Menu: appMenu, EnableDefaultContextMenu: true, AssetServer: &assetserver.Options{ Assets: assets, }, BackgroundColour: options.NewRGBA(27, 38, 54, 0), StartHidden: true, OnStartup: func(ctx context.Context) { sysSvc.Start(ctx) connSvc.Start(ctx) browserSvc.Start(ctx) cliSvc.Start(ctx) services.GA().SetSecretKey(gaMeasurementID, gaSecretKey) services.GA().Startup(version) }, OnDomReady: func(ctx context.Context) { runtime2.WindowShow(ctx) }, OnShutdown: func(ctx context.Context) { browserSvc.Stop() cliSvc.CloseAll() }, Bind: []interface{}{ sysSvc, connSvc, browserSvc, cliSvc, prefSvc, }, Mac: &mac.Options{ TitleBar: mac.TitleBarHiddenInset(), About: &mac.AboutInfo{ Title: "Tiny RDM " + version, Message: "A modern lightweight cross-platform Redis desktop client.\n\nCopyright © 2023", Icon: icon, }, WebviewIsTransparent: false, WindowIsTranslucent: true, }, Windows: &windows.Options{ WebviewIsTransparent: true, WindowIsTranslucent: true, DisableFramelessWindowDecorations: true, }, Linux: &linux.Options{ Icon: icon, WebviewGpuPolicy: linux.WebviewGpuPolicyOnDemand, WindowIsTranslucent: true, }, }) if err != nil { println("Error:", err.Error()) } }