ADKFJSLKDFJSDKLFJ

This commit is contained in:
Tulir Asokan 2018-03-15 20:33:01 +02:00
parent 9f2c8ed9e7
commit bffd4d3d17
2 changed files with 36 additions and 8 deletions

View File

@ -18,6 +18,8 @@ package main
import ( import (
"fmt" "fmt"
"hash/fnv"
"regexp"
"sort" "sort"
"strings" "strings"
@ -31,22 +33,34 @@ type RoomView struct {
topic *tview.TextView topic *tview.TextView
content *tview.TextView content *tview.TextView
status *tview.TextView status *tview.TextView
userlist *tview.TextView userList *tview.TextView
users sort.StringSlice users sort.StringSlice
} }
var colorNames []string
func init() {
colorNames = make([]string, len(tcell.ColorNames))
i := 0
for name, _ := range tcell.ColorNames {
colorNames[i] = name
i++
}
}
func NewRoomView(topic string) *RoomView { func NewRoomView(topic string) *RoomView {
view := &RoomView{ view := &RoomView{
Box: tview.NewBox(), Box: tview.NewBox(),
topic: tview.NewTextView(), topic: tview.NewTextView(),
content: tview.NewTextView(), content: tview.NewTextView(),
status: tview.NewTextView(), status: tview.NewTextView(),
userlist: tview.NewTextView(), userList: tview.NewTextView(),
} }
view.topic. view.topic.
SetText(strings.Replace(topic, "\n", " ", -1)). SetText(strings.Replace(topic, "\n", " ", -1)).
SetBackgroundColor(tcell.ColorDarkGreen) SetBackgroundColor(tcell.ColorDarkGreen)
view.status.SetBackgroundColor(tcell.ColorDimGray) view.status.SetBackgroundColor(tcell.ColorDimGray)
view.content.SetDynamicColors(true)
return view return view
} }
@ -55,7 +69,7 @@ func (view *RoomView) Draw(screen tcell.Screen) {
view.topic.SetRect(x, y, width, 1) view.topic.SetRect(x, y, width, 1)
view.content.SetRect(x, y+1, width-30, height-2) view.content.SetRect(x, y+1, width-30, height-2)
view.status.SetRect(x, y+height-1, width, 1) view.status.SetRect(x, y+height-1, width, 1)
view.userlist.SetRect(x+width-29, y+1, 29, height-2) view.userList.SetRect(x+width-29, y+1, 29, height-2)
view.topic.Draw(screen) view.topic.Draw(screen)
view.content.Draw(screen) view.content.Draw(screen)
@ -66,7 +80,7 @@ func (view *RoomView) Draw(screen tcell.Screen) {
for borderY := y + 1; borderY < y+height-1; borderY++ { for borderY := y + 1; borderY < y+height-1; borderY++ {
screen.SetContent(borderX, borderY, tview.GraphicsVertBar, nil, background) screen.SetContent(borderX, borderY, tview.GraphicsVertBar, nil, background)
} }
view.userlist.Draw(screen) view.userList.Draw(screen)
} }
func (view *RoomView) SetTyping(users []string) { func (view *RoomView) SetTyping(users []string) {
@ -81,21 +95,35 @@ func (view *RoomView) SetTyping(users []string) {
} }
} }
var colorPattern = regexp.MustCompile(`\[([a-zA-Z]+|#[0-9a-zA-Z]{6})\]`)
func color(s string) string {
h := fnv.New32a()
h.Write([]byte(s))
color := colorNames[int(h.Sum32()) % len(colorNames)]
return fmt.Sprintf("[%s]%s[white]", color, s)
}
func escapeColor(s string) string {
return colorPattern.ReplaceAllString(s, "[$1[]")
}
func (view *RoomView) AddMessage(sender, message string) { func (view *RoomView) AddMessage(sender, message string) {
fmt.Fprintf(view.content, "<%s> %s\n", sender, message) fmt.Fprintf(view.content, "%s: %s\n",
color(sender), escapeColor(message))
} }
func (view *RoomView) SetUsers(users []string) { func (view *RoomView) SetUsers(users []string) {
view.users = sort.StringSlice(users) view.users = sort.StringSlice(users)
view.users.Sort() view.users.Sort()
view.userlist.SetText(strings.Join(view.users, "\n")) view.userList.SetText(strings.Join(view.users, "\n"))
} }
func (view *RoomView) RemoveUser(user string) { func (view *RoomView) RemoveUser(user string) {
i := view.users.Search(user) i := view.users.Search(user)
if i >= 0 { if i >= 0 {
view.users = append(view.users[:i], view.users[i+1:]...) view.users = append(view.users[:i], view.users[i+1:]...)
view.userlist.SetText(strings.Join(view.users, "\n")) view.userList.SetText(strings.Join(view.users, "\n"))
} }
} }

View File

@ -29,7 +29,7 @@ func (ui *GomuksUI) MakeMainUI() tview.Primitive {
ui.mainView.SetColumns(30, 1, 0).SetRows(0, 1) ui.mainView.SetColumns(30, 1, 0).SetRows(0, 1)
ui.mainViewRoomList = tview.NewList().ShowSecondaryText(false) ui.mainViewRoomList = tview.NewList().ShowSecondaryText(false)
ui.mainViewRoomList.SetBorderPadding(0, 0, 0, 1) ui.mainViewRoomList.SetBorderPadding(0, 0, 1, 0)
ui.mainView.AddItem(ui.mainViewRoomList, 0, 0, 2, 1, 0, 0, false) ui.mainView.AddItem(ui.mainViewRoomList, 0, 0, 2, 1, 0, 0, false)
ui.mainView.AddItem(NewBorder(), 0, 1, 2, 1, 0, 0, false) ui.mainView.AddItem(NewBorder(), 0, 1, 2, 1, 0, 0, false)