1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
package senpai
import (
"math/rand"
"strings"
"time"
"git.sr.ht/~taiite/senpai/ui"
)
var Home = "home"
var homeMessages = []string{
"\x1dYou open an IRC client.",
"Welcome to the Internet Relay Network!",
"DMs & cie go here.",
"May the IRC be with you.",
"Hey! I'm senpai, you everyday IRC student!",
"Student? No, I'm an IRC \x02client\x02!",
}
func (app *App) initWindow() {
hmIdx := rand.Intn(len(homeMessages))
app.win.AddBuffer(Home)
app.addLineNow("", ui.Line{
Head: "--",
Body: homeMessages[hmIdx],
})
}
func (app *App) addLineNow(buffer string, line ui.Line) {
if line.At.IsZero() {
line.At = time.Now()
}
app.win.AddLine(buffer, false, line)
app.draw()
}
func (app *App) draw() {
if app.s != nil {
app.setStatus()
}
app.win.Draw()
}
func (app *App) setStatus() {
ts := app.s.Typings(app.win.CurrentBuffer())
status := ""
if 3 < len(ts) {
status = "several people are typing..."
} else {
verb := " is typing..."
if 1 < len(ts) {
verb = " are typing..."
status = strings.Join(ts[:len(ts)-1], ", ") + " and "
}
if 0 < len(ts) {
status += ts[len(ts)-1] + verb
}
}
app.win.SetStatus(status)
}
|