25
19

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GoでGUIアプリを作れる、gotronを触ってみた

Posted at

最初に

Go API for Electronらしい、gotronを偶然見つけて触ってみた際の備忘録を書きます。

github

私自身はあまりGoに慣れていないので、ここに記載しているコードはGo的に微妙な書き方をしている可能性があります。
クロスコンパイルして各プラットフォームごとのデスクトップアプリ作れたら便利だなーというふわっとした動機で、ちょっと触ってみるかという軽い気持ちで触っています。
結論:あまり参考にしないほうが良い

Getting started

go get github.com/Equanox/gotron

READMEに書かれているとおりに実施してみる。

package main

import (
	"github.com/Equanox/gotron"
)

func main() {
	// browser window instanceを生成する
	window, err := gotron.New()
	if err != nil {
		panic(err)
	}

	// デフォルトのwindowサイズとタイトルを変更する
	window.WindowOptions.Width = 1200
	window.WindowOptions.Height = 980
	window.WindowOptions.Title = "Gotron"

	// browser window を起動
	// window objectを使ってElectronBrowserWindow をコントロールするために
	// websocketを使って go と nodejsのブリッジを確立するよう
	done, err := window.Start()
	if err != nil {
		panic(err)
	}

	// dev toolsを使う場合は下記をコメントアウトする(せっかくなのでdevtools使ってみる)
	window.OpenDevTools()

	// アプリケーションがcloseするのを待つ
	<-done
}

<-doneの書き方が?と一瞬思ったがこれはchannelだった。
実に初心者的で申し訳ない。

起動する

go run main.go
スクリーンショット 2019-02-23 6.41.04.png

dev toolsが開かれた状態でアプリが表示される

WebUIを使用する

gotron.Newするときに、引数にindex.htmlを含むディレクトリへのパスを指定することでWeb UIを使用できるよう。

mkdir webapp
touch webapp/index.html

サンプルとしてフォーム画面を作成する

<!DOCTYPE html>
<html>
<head>
  <title>form example</title>
</head>

<body>

<form name="login">
  <input name="email" type="email">
  <input name="password" type="password">
  <button type="submit">ログイン</button>
</form>

</body>
</html>

goのコードを書き換える。

	window, err := gotron.New("webapp")
	if err != nil {
		panic(err)
	}

これで起動すると、webui(フォーム画面)が表示される。

go run main.go
スクリーンショット 2019-02-23 21.28.15.png

WebSocketを使用して、Backendとやり取りする

githubのREADMEを参考にしつつ、書き換える

package main

import (
	"bytes"
	"fmt"

	"github.com/Equanox/gotron"
)

func main() {
	// browser window instanceを生成する
	window, err := gotron.New("webapp")
	if err != nil {
		panic(err)
	}

	// デフォルトのwindowサイズとタイトルを変更する
	window.WindowOptions.Width = 1200
	window.WindowOptions.Height = 980
	window.WindowOptions.Title = "Gotron"

	// browser window を起動
	// window objectを使ってElectronBrowserWindow をコントロールするために
	// websocketを使って go と nodejsのブリッジを確立するよう
	done, err := window.Start()
	if err != nil {
		panic(err)
	}

	// dev toolsを使う場合は下記をコメントアウトする
	// window.OpenDevTools()

	window.On(&gotron.Event{Event: "event-name"}, func(bin []byte) {
		// ここに処理を書いていく
		// fmt.Println(bin)
		b := []byte(bin)
		buf := bytes.NewBuffer(b)
		fmt.Println(buf)
	})

	// アプリケーションがcloseするのを待つ
	<-done
}

webapp/index.htmlも下記のように書き換えた

<!DOCTYPE html>
<html>
<head>
  <title>websocket example</title>
</head>

<body>

<div>
  <button>イベントボタン</button>
</div>
<script>
  const ws = new WebSocket("ws://localhost:" + global.backendPort + "/web/app/events");
  console.log("Setup web socket:", ws);

  const button = document.querySelector("button");
  button.addEventListener("click", event => {
    ws.send(JSON.stringify({
	"event": "event-name",
        "AtrNameInFrontend": "Hello World!",
    }))
    console.log("Send success!!");
  });
</script>

</body>
</html>

アプリを起動して、イベントボタンを押すと、下記のようなログがサーバ側のコンソールに表示される

{"event":"event-name","AtrNameInFrontend":"Hello World!"}

最後に

まだ触り始めたばかりなので、そのうち実際にクロスコンパイルしてみて、実行ファイル叩くだけで起動できるデスクトップアプリを各プラットフォーム向けに作ったりしてみたい。

25
19
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
25
19

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?