-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
62 lines (57 loc) · 1.28 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
package main
import (
"github.com/getlantern/systray"
"github.com/gobuffalo/packr"
"github.com/pkg/browser"
"log"
"net/http"
"os"
"photonai_explorer_serv/icon"
"time"
)
func main() {
// TODO: check if other instance of photon_explorer_serv is already running and if so just open browser
systray.Run(onReady, onExit)
}
func onReady() {
systray.SetTemplateIcon(icon.Photonicon, icon.Photonicon)
systray.SetTooltip("PHOTONAI Explorer")
systray.SetTitle("")
open := systray.AddMenuItem("Open in browser", "Open Photon Explorer in your browser")
quit := systray.AddMenuItem("Quit", "Quit Photon Explorer")
go func() {
<-quit.ClickedCh
systray.Quit()
os.Exit(0)
}()
go func() {
for {
<-open.ClickedCh
time.Sleep(100 * time.Millisecond)
// TODO: check on which port this is running
err := browser.OpenURL("http://localhost:3000")
if err != nil {
log.Fatal(err)
}
}
}()
startServer()
}
func onExit() {
}
func startServer() {
box := packr.NewBox("./dist")
http.Handle("/", http.FileServer(box))
go func() {
time.Sleep(100 * time.Millisecond)
// TODO: search for free port
err := browser.OpenURL("http://localhost:3000")
if err != nil {
log.Fatal(err)
}
}()
err := http.ListenAndServe("127.0.0.1:3000", nil)
if err != nil {
log.Fatal(err)
}
}