tiny-rdm/main.go

136 lines
3.5 KiB
Go
Raw Normal View History

2023-06-27 15:53:29 +08:00
package main
import (
"context"
"embed"
"fmt"
2023-06-27 15:53:29 +08:00
"github.com/wailsapp/wails/v2"
"github.com/wailsapp/wails/v2/pkg/menu"
2023-06-27 15:53:29 +08:00
"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"
2023-10-31 11:45:55 +08:00
runtime2 "github.com/wailsapp/wails/v2/pkg/runtime"
"runtime"
"tinyrdm/backend/consts"
"tinyrdm/backend/services"
2023-06-27 15:53:29 +08:00
)
//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
const appName = "Tiny RDM"
2023-06-27 15:53:29 +08:00
func main() {
// Create an instance of the app structure
2023-10-15 02:27:23 +08:00
sysSvc := services.System()
2023-06-27 15:53:29 +08:00
connSvc := services.Connection()
browserSvc := services.Browser()
2023-10-26 00:03:43 +08:00
cliSvc := services.Cli()
monitorSvc := services.Monitor()
2024-01-17 20:59:08 +08:00
pubsubSvc := services.Pubsub()
prefSvc := services.Preferences()
2023-09-22 18:31:50 +08:00
prefSvc.SetAppVersion(version)
2024-08-06 18:12:21 +08:00
prefSvc.UpdateEnv()
2023-11-24 11:49:59 +08:00
windowWidth, windowHeight, maximised := prefSvc.GetWindowSize()
windowStartState := options.Normal
if maximised {
windowStartState = options.Maximised
}
2023-06-27 15:53:29 +08:00
// menu
isMacOS := runtime.GOOS == "darwin"
appMenu := menu.NewMenu()
if isMacOS {
appMenu.Append(menu.AppMenu())
appMenu.Append(menu.EditMenu())
2023-09-22 18:31:50 +08:00
appMenu.Append(menu.WindowMenu())
}
2023-06-27 15:53:29 +08:00
// Create application with options
err := wails.Run(&options.App{
Title: appName,
2023-11-23 11:12:45 +08:00
Width: windowWidth,
Height: windowHeight,
MinWidth: consts.MIN_WINDOW_WIDTH,
MinHeight: consts.MIN_WINDOW_HEIGHT,
2023-11-24 11:49:59 +08:00
WindowStartState: windowStartState,
Frameless: !isMacOS,
2023-11-23 11:12:45 +08:00
Menu: appMenu,
EnableDefaultContextMenu: true,
2023-06-27 15:53:29 +08:00
AssetServer: &assetserver.Options{
Assets: assets,
},
BackgroundColour: options.NewRGBA(255, 255, 255, 0),
2023-10-31 11:45:55 +08:00
StartHidden: true,
2023-06-27 15:53:29 +08:00
OnStartup: func(ctx context.Context) {
2024-01-26 00:07:25 +08:00
sysSvc.Start(ctx, version)
2023-06-27 15:53:29 +08:00
connSvc.Start(ctx)
browserSvc.Start(ctx)
2023-10-26 00:03:43 +08:00
cliSvc.Start(ctx)
monitorSvc.Start(ctx)
2024-01-17 20:59:08 +08:00
pubsubSvc.Start(ctx)
services.GA().SetSecretKey(gaMeasurementID, gaSecretKey)
services.GA().Startup(version)
2023-06-27 15:53:29 +08:00
},
2023-10-31 11:45:55 +08:00
OnDomReady: func(ctx context.Context) {
x, y := prefSvc.GetWindowPosition(ctx)
runtime2.WindowSetPosition(ctx, x, y)
runtime2.WindowShow(ctx)
},
OnBeforeClose: func(ctx context.Context) (prevent bool) {
x, y := runtime2.WindowGetPosition(ctx)
prefSvc.SaveWindowPosition(x, y)
return false
2023-10-31 11:45:55 +08:00
},
2023-10-08 23:37:07 +08:00
OnShutdown: func(ctx context.Context) {
browserSvc.Stop()
2023-10-26 00:03:43 +08:00
cliSvc.CloseAll()
monitorSvc.StopAll()
2024-01-17 20:59:08 +08:00
pubsubSvc.StopAll()
2023-06-27 15:53:29 +08:00
},
Bind: []interface{}{
2023-10-15 02:27:23 +08:00
sysSvc,
2023-06-27 15:53:29 +08:00
connSvc,
browserSvc,
2023-10-26 00:03:43 +08:00
cliSvc,
monitorSvc,
2024-01-17 20:59:08 +08:00
pubsubSvc,
prefSvc,
2023-06-27 15:53:29 +08:00
},
Mac: &mac.Options{
2023-09-02 18:23:40 +08:00
TitleBar: mac.TitleBarHiddenInset(),
About: &mac.AboutInfo{
Title: fmt.Sprintf("%s %s", appName, version),
2024-03-14 00:38:35 +08:00
Message: "A modern lightweight cross-platform Redis desktop client.\n\nCopyright © 2024",
Icon: icon,
},
WebviewIsTransparent: false,
WindowIsTranslucent: false,
},
Windows: &windows.Options{
WebviewIsTransparent: false,
WindowIsTranslucent: false,
2024-07-31 23:25:14 +08:00
DisableFramelessWindowDecorations: false,
2023-06-27 15:53:29 +08:00
},
Linux: &linux.Options{
ProgramName: appName,
Icon: icon,
WebviewGpuPolicy: linux.WebviewGpuPolicyOnDemand,
WindowIsTranslucent: true,
},
2023-06-27 15:53:29 +08:00
})
if err != nil {
println("Error:", err.Error())
}
}