gomuks/ui/ui.go

129 lines
2.9 KiB
Go
Raw Normal View History

2018-03-13 20:58:43 +01:00
// gomuks - A terminal Matrix client written in Go.
2020-04-19 17:10:14 +02:00
// Copyright (C) 2020 Tulir Asokan
2018-03-13 20:58:43 +01:00
//
// This program is free software: you can redistribute it and/or modify
2019-01-17 13:13:25 +01:00
// it under the terms of the GNU Affero General Public License as published by
2018-03-13 20:58:43 +01:00
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2019-01-17 13:13:25 +01:00
// GNU Affero General Public License for more details.
2018-03-13 20:58:43 +01:00
//
2019-01-17 13:13:25 +01:00
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-03-13 20:58:43 +01:00
2018-03-18 20:24:03 +01:00
package ui
2018-03-13 20:58:43 +01:00
import (
2019-01-17 13:13:25 +01:00
"os"
"os/exec"
2019-01-17 13:13:25 +01:00
"github.com/zyedidia/clipboard"
2022-04-15 11:53:09 +02:00
"go.mau.fi/mauview"
"go.mau.fi/tcell"
2019-01-17 13:13:25 +01:00
2022-04-15 11:53:09 +02:00
ifc "maunium.net/go/gomuks/interface"
2018-03-13 20:58:43 +01:00
)
2018-05-01 18:17:57 +02:00
type View string
// Allowed views in GomuksUI
const (
ViewLogin View = "login"
ViewMain View = "main"
)
2018-03-13 20:58:43 +01:00
type GomuksUI struct {
2019-03-25 23:37:35 +01:00
gmx ifc.Gomuks
app *mauview.Application
2018-03-13 20:58:43 +01:00
2018-03-15 20:28:21 +01:00
mainView *MainView
2018-03-22 22:03:45 +01:00
loginView *LoginView
2019-03-25 23:37:35 +01:00
views map[View]mauview.Component
2018-03-15 17:21:14 +01:00
}
func init() {
2019-03-25 23:37:35 +01:00
mauview.Styles.PrimitiveBackgroundColor = tcell.ColorDefault
mauview.Styles.PrimaryTextColor = tcell.ColorDefault
mauview.Styles.BorderColor = tcell.ColorDefault
2019-03-25 23:37:35 +01:00
mauview.Styles.ContrastBackgroundColor = tcell.ColorDarkGreen
if tcellDB := os.Getenv("TCELLDB"); len(tcellDB) == 0 {
if info, err := os.Stat("/usr/share/tcell/database"); err == nil && info.IsDir() {
os.Setenv("TCELLDB", "/usr/share/tcell/database")
}
}
2018-03-13 20:58:43 +01:00
}
func NewGomuksUI(gmx ifc.Gomuks) ifc.GomuksUI {
ui := &GomuksUI{
2019-03-25 23:37:35 +01:00
gmx: gmx,
app: mauview.NewApplication(),
2018-03-13 20:58:43 +01:00
}
return ui
}
func (ui *GomuksUI) Init() {
mauview.Backspace2RemovesWord = ui.gmx.Config().Backspace2RemovesWord
mauview.Backspace1RemovesWord = ui.gmx.Config().Backspace1RemovesWord
ui.app.SetAlwaysClear(ui.gmx.Config().AlwaysClearScreen)
clipboard.Initialize()
2019-03-25 23:37:35 +01:00
ui.views = map[View]mauview.Component{
ViewLogin: ui.NewLoginView(),
ViewMain: ui.NewMainView(),
}
ui.SetView(ViewLogin)
}
func (ui *GomuksUI) Start() error {
2019-03-25 23:37:35 +01:00
return ui.app.Start()
}
func (ui *GomuksUI) Stop() {
ui.app.Stop()
}
func (ui *GomuksUI) Finish() {
2022-04-17 22:54:40 +02:00
ui.app.ForceStop()
2018-03-13 20:58:43 +01:00
}
func (ui *GomuksUI) Render() {
2019-03-25 23:37:35 +01:00
ui.app.Redraw()
2018-03-13 20:58:43 +01:00
}
2018-05-01 18:17:57 +02:00
func (ui *GomuksUI) OnLogin() {
ui.SetView(ViewMain)
}
func (ui *GomuksUI) OnLogout() {
ui.SetView(ViewLogin)
}
func (ui *GomuksUI) HandleNewPreferences() {
ui.Render()
}
2018-05-01 18:17:57 +02:00
func (ui *GomuksUI) SetView(name View) {
2022-04-17 22:54:40 +02:00
ui.app.SetRoot(ui.views[name])
2018-03-13 20:58:43 +01:00
}
2018-03-15 19:53:04 +01:00
2018-03-18 20:24:03 +01:00
func (ui *GomuksUI) MainView() ifc.MainView {
2018-03-15 19:53:04 +01:00
return ui.mainView
}
func (ui *GomuksUI) RunExternal(executablePath string, args ...string) error {
2022-04-17 22:54:40 +02:00
callback := make(chan error)
ui.app.Suspend(func() {
cmd := exec.Command(executablePath, args...)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
cmd.Stdin = os.Stdin
cmd.Env = os.Environ()
2022-04-17 22:54:40 +02:00
callback <- cmd.Run()
})
2022-04-17 22:54:40 +02:00
return <-callback
}