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"
|
2022-03-06 21:13:55 +01:00
|
|
|
"os/exec"
|
2019-01-17 13:13:25 +01:00
|
|
|
|
2020-11-21 15:26:02 +01:00
|
|
|
"github.com/zyedidia/clipboard"
|
2021-11-10 23:26:53 +01:00
|
|
|
|
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
|
2022-11-15 19:50:13 +01:00
|
|
|
mauview.Styles.PrimaryTextColor = tcell.ColorDefault
|
|
|
|
mauview.Styles.BorderColor = tcell.ColorDefault
|
2019-03-25 23:37:35 +01:00
|
|
|
mauview.Styles.ContrastBackgroundColor = tcell.ColorDarkGreen
|
2018-05-25 23:07:01 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-04-18 17:35:24 +02: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
|
|
|
}
|
2018-04-18 17:35:24 +02:00
|
|
|
return ui
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ui *GomuksUI) Init() {
|
2021-11-10 23:26:53 +01:00
|
|
|
mauview.Backspace2RemovesWord = ui.gmx.Config().Backspace2RemovesWord
|
|
|
|
mauview.Backspace1RemovesWord = ui.gmx.Config().Backspace1RemovesWord
|
2022-04-24 23:25:49 +02:00
|
|
|
ui.app.SetAlwaysClear(ui.gmx.Config().AlwaysClearScreen)
|
2020-11-21 15:26:02 +01:00
|
|
|
clipboard.Initialize()
|
2019-03-25 23:37:35 +01:00
|
|
|
ui.views = map[View]mauview.Component{
|
|
|
|
ViewLogin: ui.NewLoginView(),
|
|
|
|
ViewMain: ui.NewMainView(),
|
|
|
|
}
|
2019-04-06 17:03:37 +02:00
|
|
|
ui.SetView(ViewLogin)
|
2018-04-18 17:35:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ui *GomuksUI) Start() error {
|
2019-03-25 23:37:35 +01:00
|
|
|
return ui.app.Start()
|
2018-04-18 17:35:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2018-05-24 22:26:57 +02:00
|
|
|
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
|
|
|
|
}
|
2022-03-06 21:13:55 +01:00
|
|
|
|
|
|
|
func (ui *GomuksUI) RunExternal(executablePath string, args ...string) error {
|
2022-04-17 22:54:40 +02:00
|
|
|
callback := make(chan error)
|
2022-03-06 21:13:55 +01:00
|
|
|
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-03-06 21:13:55 +01:00
|
|
|
})
|
2022-04-17 22:54:40 +02:00
|
|
|
return <-callback
|
2022-03-06 21:13:55 +01:00
|
|
|
}
|