-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
main.go
93 lines (82 loc) · 2.03 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package main
import (
"embed"
"flag"
"github.com/gofiber/fiber/v2/log"
"github.com/nats-nui/nui/desktop/mapping"
"github.com/nats-nui/nui/internal/app"
"github.com/nats-nui/nui/internal/version"
"github.com/nats-nui/nui/pkg/logging"
"github.com/nats-nui/nui/pkg/ospaths"
"github.com/wailsapp/wails/v2"
"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"
"os"
)
//go:embed all:frontend/dist-app
var assets embed.FS
//go:embed build/appicon.png
var icon []byte
var Version string
func main() {
version.Set(Version)
logLevel := *flag.String("log-level", "info", "log level")
logsOutput := *flag.String("log-output", "", "log output")
dbPath := *flag.String("db-path", "", "path to the database")
if logsOutput == "" {
lo, err := ospaths.LogsPath()
if err != nil {
log.Fatal("error getting logs path: " + err.Error())
}
logsOutput = lo
}
if dbPath == "" {
dbp, err := ospaths.DbPath()
if err != nil {
log.Fatal("error getting db path: " + err.Error())
}
dbPath = dbp
}
logger, err := logging.NewSlogger(logLevel, logsOutput)
if err != nil {
log.Fatal("error creating logger: " + err.Error())
}
// Create an instance of the app structure
desktopApp, err := app.NewApp(
app.WithTarget(app.TargetDesktop),
app.WithVersion(Version),
app.WithDb(dbPath),
app.WithLogger(logger),
)
if err != nil {
logger.Error(err.Error())
os.Exit(1)
}
// Create application with options
err = wails.Run(&options.App{
Title: "NUI",
WindowStartState: options.Maximised,
AssetServer: &assetserver.Options{
Assets: assets,
},
BackgroundColour: &options.RGBA{R: 27, G: 38, B: 54, A: 1},
OnStartup: desktopApp.Startup,
Bind: []interface{}{
&mapping.Api{},
},
Linux: &linux.Options{
Icon: icon,
},
Mac: &mac.Options{
About: &mac.AboutInfo{
Title: "NUI",
Icon: icon,
},
},
})
if err != nil {
logger.Error(err.Error())
}
}