2023-06-27 15:53:29 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"embed"
|
|
|
|
"github.com/wailsapp/wails/v2"
|
2023-08-02 17:13:03 +08:00
|
|
|
"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"
|
2023-08-08 08:45:26 +08:00
|
|
|
"github.com/wailsapp/wails/v2/pkg/options/linux"
|
2023-07-11 18:06:44 +08:00
|
|
|
"github.com/wailsapp/wails/v2/pkg/options/mac"
|
2023-09-05 14:43:43 +08:00
|
|
|
"github.com/wailsapp/wails/v2/pkg/options/windows"
|
2023-08-02 17:13:03 +08:00
|
|
|
"runtime"
|
2023-09-28 21:45:44 +08:00
|
|
|
"tinyrdm/backend/consts"
|
2023-07-11 18:06:44 +08:00
|
|
|
"tinyrdm/backend/services"
|
2023-06-27 15:53:29 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
//go:embed all:frontend/dist
|
|
|
|
var assets embed.FS
|
|
|
|
|
2023-08-02 17:13:03 +08:00
|
|
|
//go:embed build/appicon.png
|
|
|
|
var icon []byte
|
|
|
|
|
2023-08-26 02:40:30 +08:00
|
|
|
var version = "0.0.0"
|
2023-10-17 10:19:50 +08:00
|
|
|
var gaMeasurementID, gaSecretKey string
|
2023-08-26 02:40:30 +08:00
|
|
|
|
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()
|
2023-10-26 00:03:43 +08:00
|
|
|
cliSvc := services.Cli()
|
2023-07-11 18:06:44 +08:00
|
|
|
prefSvc := services.Preferences()
|
2023-09-22 18:31:50 +08:00
|
|
|
prefSvc.SetAppVersion(version)
|
2023-09-28 21:45:44 +08:00
|
|
|
windowWidth, windowHeight := prefSvc.GetWindowSize()
|
2023-06-27 15:53:29 +08:00
|
|
|
|
2023-08-02 17:13:03 +08:00
|
|
|
// menu
|
|
|
|
appMenu := menu.NewMenu()
|
|
|
|
if runtime.GOOS == "darwin" {
|
|
|
|
appMenu.Append(menu.AppMenu())
|
|
|
|
appMenu.Append(menu.EditMenu())
|
2023-09-22 18:31:50 +08:00
|
|
|
appMenu.Append(menu.WindowMenu())
|
2023-08-02 17:13:03 +08:00
|
|
|
}
|
|
|
|
|
2023-06-27 15:53:29 +08:00
|
|
|
// Create application with options
|
|
|
|
err := wails.Run(&options.App{
|
|
|
|
Title: "Tiny RDM",
|
2023-09-28 21:45:44 +08:00
|
|
|
Width: windowWidth,
|
|
|
|
Height: windowHeight,
|
2023-10-16 10:26:25 +08:00
|
|
|
MinWidth: consts.MIN_WINDOW_WIDTH,
|
|
|
|
MinHeight: consts.MIN_WINDOW_HEIGHT,
|
2023-09-02 18:23:40 +08:00
|
|
|
Frameless: runtime.GOOS != "darwin",
|
2023-08-02 17:13:03 +08:00
|
|
|
Menu: appMenu,
|
2023-06-27 15:53:29 +08:00
|
|
|
AssetServer: &assetserver.Options{
|
|
|
|
Assets: assets,
|
|
|
|
},
|
2023-09-05 14:43:43 +08:00
|
|
|
BackgroundColour: &options.RGBA{R: 27, G: 38, B: 54, A: 0},
|
2023-06-27 15:53:29 +08:00
|
|
|
OnStartup: func(ctx context.Context) {
|
2023-10-15 02:27:23 +08:00
|
|
|
sysSvc.Start(ctx)
|
2023-06-27 15:53:29 +08:00
|
|
|
connSvc.Start(ctx)
|
2023-10-26 00:03:43 +08:00
|
|
|
cliSvc.Start(ctx)
|
2023-10-17 10:19:50 +08:00
|
|
|
|
|
|
|
services.GA().SetSecretKey(gaMeasurementID, gaSecretKey)
|
|
|
|
services.GA().Startup(version)
|
2023-06-27 15:53:29 +08:00
|
|
|
},
|
2023-10-08 23:37:07 +08:00
|
|
|
OnShutdown: func(ctx context.Context) {
|
2023-10-26 00:03:43 +08:00
|
|
|
connSvc.Stop()
|
|
|
|
cliSvc.CloseAll()
|
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,
|
2023-10-26 00:03:43 +08:00
|
|
|
cliSvc,
|
2023-07-11 18:06:44 +08:00
|
|
|
prefSvc,
|
2023-06-27 15:53:29 +08:00
|
|
|
},
|
|
|
|
Mac: &mac.Options{
|
2023-09-02 18:23:40 +08:00
|
|
|
TitleBar: mac.TitleBarHiddenInset(),
|
2023-08-02 17:13:03 +08:00
|
|
|
About: &mac.AboutInfo{
|
2023-08-26 02:40:30 +08:00
|
|
|
Title: "Tiny RDM " + version,
|
2023-08-25 00:44:00 +08:00
|
|
|
Message: "A modern lightweight cross-platform Redis desktop client.\n\nCopyright © 2023",
|
2023-08-02 17:13:03 +08:00
|
|
|
Icon: icon,
|
|
|
|
},
|
2023-09-05 14:43:43 +08:00
|
|
|
WebviewIsTransparent: false,
|
|
|
|
WindowIsTranslucent: false,
|
|
|
|
},
|
|
|
|
Windows: &windows.Options{
|
|
|
|
WebviewIsTransparent: true,
|
|
|
|
WindowIsTranslucent: true,
|
|
|
|
DisableFramelessWindowDecorations: true,
|
2023-06-27 15:53:29 +08:00
|
|
|
},
|
2023-08-08 08:45:26 +08:00
|
|
|
Linux: &linux.Options{
|
2023-09-05 14:43:43 +08:00
|
|
|
Icon: icon,
|
|
|
|
WebviewGpuPolicy: linux.WebviewGpuPolicyOnDemand,
|
|
|
|
WindowIsTranslucent: true,
|
2023-08-08 08:45:26 +08:00
|
|
|
},
|
2023-06-27 15:53:29 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
println("Error:", err.Error())
|
|
|
|
}
|
|
|
|
}
|