2018-03-15 18:45:52 +01:00
|
|
|
// gomuks - A terminal Matrix client written in Go.
|
|
|
|
// Copyright (C) 2018 Tulir Asokan
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// 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
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-03-15 19:33:01 +01:00
|
|
|
"hash/fnv"
|
2018-03-17 00:27:30 +01:00
|
|
|
"sort"
|
2018-03-15 18:45:52 +01:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/gdamore/tcell"
|
2018-03-16 15:24:11 +01:00
|
|
|
"maunium.net/go/gomatrix"
|
2018-03-15 18:45:52 +01:00
|
|
|
"maunium.net/go/tview"
|
|
|
|
)
|
|
|
|
|
|
|
|
type RoomView struct {
|
|
|
|
*tview.Box
|
|
|
|
|
|
|
|
topic *tview.TextView
|
2018-03-17 00:27:30 +01:00
|
|
|
content *MessageView
|
2018-03-15 18:45:52 +01:00
|
|
|
status *tview.TextView
|
2018-03-15 19:33:01 +01:00
|
|
|
userList *tview.TextView
|
2018-03-16 15:24:11 +01:00
|
|
|
room *gomatrix.Room
|
2018-03-17 00:27:30 +01:00
|
|
|
|
|
|
|
debug DebugPrinter
|
2018-03-15 18:45:52 +01:00
|
|
|
}
|
|
|
|
|
2018-03-15 19:33:01 +01:00
|
|
|
var colorNames []string
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
colorNames = make([]string, len(tcell.ColorNames))
|
|
|
|
i := 0
|
|
|
|
for name, _ := range tcell.ColorNames {
|
|
|
|
colorNames[i] = name
|
|
|
|
i++
|
|
|
|
}
|
2018-03-17 00:27:30 +01:00
|
|
|
sort.Sort(sort.StringSlice(colorNames))
|
2018-03-15 19:33:01 +01:00
|
|
|
}
|
|
|
|
|
2018-03-17 00:27:30 +01:00
|
|
|
func NewRoomView(debug DebugPrinter, room *gomatrix.Room) *RoomView {
|
2018-03-15 18:45:52 +01:00
|
|
|
view := &RoomView{
|
|
|
|
Box: tview.NewBox(),
|
|
|
|
topic: tview.NewTextView(),
|
2018-03-17 00:27:30 +01:00
|
|
|
content: NewMessageView(debug),
|
2018-03-15 18:45:52 +01:00
|
|
|
status: tview.NewTextView(),
|
2018-03-15 19:33:01 +01:00
|
|
|
userList: tview.NewTextView(),
|
2018-03-16 15:24:11 +01:00
|
|
|
room: room,
|
2018-03-17 00:27:30 +01:00
|
|
|
debug: debug,
|
2018-03-15 18:45:52 +01:00
|
|
|
}
|
|
|
|
view.topic.
|
2018-03-16 15:24:11 +01:00
|
|
|
SetText(strings.Replace(room.GetTopic(), "\n", " ", -1)).
|
2018-03-15 18:45:52 +01:00
|
|
|
SetBackgroundColor(tcell.ColorDarkGreen)
|
|
|
|
view.status.SetBackgroundColor(tcell.ColorDimGray)
|
2018-03-15 20:38:43 +01:00
|
|
|
view.userList.SetDynamicColors(true)
|
2018-03-15 18:45:52 +01:00
|
|
|
return view
|
|
|
|
}
|
|
|
|
|
|
|
|
func (view *RoomView) Draw(screen tcell.Screen) {
|
2018-03-17 00:27:30 +01:00
|
|
|
view.Box.Draw(screen)
|
|
|
|
|
2018-03-15 18:45:52 +01:00
|
|
|
x, y, width, height := view.GetRect()
|
|
|
|
view.topic.SetRect(x, y, width, 1)
|
|
|
|
view.content.SetRect(x, y+1, width-30, height-2)
|
|
|
|
view.status.SetRect(x, y+height-1, width, 1)
|
2018-03-15 19:33:01 +01:00
|
|
|
view.userList.SetRect(x+width-29, y+1, 29, height-2)
|
2018-03-15 18:45:52 +01:00
|
|
|
|
|
|
|
view.topic.Draw(screen)
|
|
|
|
view.content.Draw(screen)
|
|
|
|
view.status.Draw(screen)
|
|
|
|
|
|
|
|
borderX := x + width - 30
|
|
|
|
background := tcell.StyleDefault.Background(view.GetBackgroundColor()).Foreground(view.GetBorderColor())
|
|
|
|
for borderY := y + 1; borderY < y+height-1; borderY++ {
|
|
|
|
screen.SetContent(borderX, borderY, tview.GraphicsVertBar, nil, background)
|
|
|
|
}
|
2018-03-15 19:33:01 +01:00
|
|
|
view.userList.Draw(screen)
|
2018-03-15 18:45:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (view *RoomView) SetTyping(users []string) {
|
2018-03-16 15:24:11 +01:00
|
|
|
for index, user := range users {
|
|
|
|
member := view.room.GetMember(user)
|
|
|
|
if member != nil {
|
|
|
|
users[index] = member.DisplayName
|
|
|
|
}
|
|
|
|
}
|
2018-03-15 18:45:52 +01:00
|
|
|
if len(users) == 0 {
|
|
|
|
view.status.SetText("")
|
|
|
|
} else if len(users) < 2 {
|
|
|
|
view.status.SetText("Typing: " + strings.Join(users, " and "))
|
|
|
|
} else {
|
|
|
|
view.status.SetText(fmt.Sprintf(
|
|
|
|
"Typing: %s and %s",
|
|
|
|
strings.Join(users[:len(users)-1], ", "), users[len(users)-1]))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-17 00:27:30 +01:00
|
|
|
func (view *RoomView) MessageView() *MessageView {
|
|
|
|
return view.content
|
|
|
|
}
|
2018-03-15 19:33:01 +01:00
|
|
|
|
2018-03-17 00:27:30 +01:00
|
|
|
func getColorName(s string) string {
|
2018-03-15 19:33:01 +01:00
|
|
|
h := fnv.New32a()
|
|
|
|
h.Write([]byte(s))
|
2018-03-17 00:27:30 +01:00
|
|
|
return colorNames[int(h.Sum32())%len(colorNames)]
|
2018-03-15 19:33:01 +01:00
|
|
|
}
|
|
|
|
|
2018-03-17 00:27:30 +01:00
|
|
|
func getColor(s string) tcell.Color {
|
|
|
|
h := fnv.New32a()
|
|
|
|
h.Write([]byte(s))
|
|
|
|
return tcell.ColorNames[colorNames[int(h.Sum32())%len(colorNames)]]
|
2018-03-15 19:33:01 +01:00
|
|
|
}
|
|
|
|
|
2018-03-17 00:27:30 +01:00
|
|
|
func color(s string) string {
|
|
|
|
return fmt.Sprintf("[%s]%s[white]", getColorName(s), s)
|
2018-03-15 18:45:52 +01:00
|
|
|
}
|
|
|
|
|
2018-03-16 15:24:11 +01:00
|
|
|
func (view *RoomView) UpdateUserList() {
|
2018-03-15 20:38:43 +01:00
|
|
|
var buf strings.Builder
|
2018-03-16 15:24:11 +01:00
|
|
|
for _, user := range view.room.GetMembers() {
|
|
|
|
if user.Membership == "join" {
|
|
|
|
buf.WriteString(color(user.DisplayName))
|
|
|
|
buf.WriteRune('\n')
|
|
|
|
}
|
2018-03-15 20:38:43 +01:00
|
|
|
}
|
|
|
|
view.userList.SetText(buf.String())
|
2018-03-15 18:45:52 +01:00
|
|
|
}
|