forked from tildetown/town
WIP
parent
7e8f8cb0fc
commit
41e5463756
|
@ -2,13 +2,16 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"os"
|
"os"
|
||||||
|
"os/user"
|
||||||
"path"
|
"path"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
tuser "git.tilde.town/tildetown/town/user"
|
||||||
"github.com/gdamore/tcell/v2"
|
"github.com/gdamore/tcell/v2"
|
||||||
"github.com/rivo/tview"
|
"github.com/rivo/tview"
|
||||||
)
|
)
|
||||||
|
@ -103,6 +106,18 @@ func getSignups() ([]townSignup, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func _main() error {
|
func _main() error {
|
||||||
|
u, err := user.Current()
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("that's my purse. I don't know you! %w", err)
|
||||||
|
}
|
||||||
|
isAdmin, err := tuser.IsAdmin(u)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("that's my purse. I don't know you! %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !isAdmin {
|
||||||
|
return errors.New("this command can only be run by a town admin")
|
||||||
|
}
|
||||||
rand.Seed(time.Now().Unix())
|
rand.Seed(time.Now().Unix())
|
||||||
|
|
||||||
signups, err := getSignups()
|
signups, err := getSignups()
|
||||||
|
@ -112,9 +127,6 @@ func _main() error {
|
||||||
|
|
||||||
signupIx := 0
|
signupIx := 0
|
||||||
|
|
||||||
pages := tview.NewPages()
|
|
||||||
mainFlex := tview.NewFlex()
|
|
||||||
|
|
||||||
title := tview.NewTextView()
|
title := tview.NewTextView()
|
||||||
title.SetText(getTitle())
|
title.SetText(getTitle())
|
||||||
title.SetTextAlign(tview.AlignCenter)
|
title.SetTextAlign(tview.AlignCenter)
|
||||||
|
@ -135,12 +147,34 @@ func _main() error {
|
||||||
legend.SetTextAlign(tview.AlignCenter)
|
legend.SetTextAlign(tview.AlignCenter)
|
||||||
legend.SetBackgroundColor(tcell.ColorBlack)
|
legend.SetBackgroundColor(tcell.ColorBlack)
|
||||||
|
|
||||||
|
count := tview.NewTextView()
|
||||||
|
count.SetDynamicColors(true)
|
||||||
|
updateCount := func() {
|
||||||
|
count.SetText(fmt.Sprintf("[-:-:b]%d pending signups[-:-:-]", len(signups)))
|
||||||
|
}
|
||||||
|
updateCount()
|
||||||
|
|
||||||
|
bottomFlex := tview.NewFlex()
|
||||||
|
bottomFlex.SetDirection(tview.FlexColumn)
|
||||||
|
bottomFlex.AddItem(count, 0, 1, false)
|
||||||
|
bottomFlex.AddItem(legend, 0, 10, false)
|
||||||
|
|
||||||
|
mainFlex := tview.NewFlex()
|
||||||
mainFlex.SetDirection(tview.FlexRow)
|
mainFlex.SetDirection(tview.FlexRow)
|
||||||
mainFlex.AddItem(title, 1, -1, false)
|
mainFlex.AddItem(title, 1, -1, false)
|
||||||
mainFlex.AddItem(appView, 0, 1, true)
|
mainFlex.AddItem(appView, 0, 1, true)
|
||||||
mainFlex.AddItem(legend, 1, -1, false)
|
mainFlex.AddItem(bottomFlex, 1, -1, false)
|
||||||
|
|
||||||
|
pages := tview.NewPages()
|
||||||
|
|
||||||
|
errorModal := tview.NewModal()
|
||||||
|
errorModal.AddButtons([]string{"damn"})
|
||||||
|
errorModal.SetDoneFunc(func(ix int, _ string) {
|
||||||
|
pages.SwitchToPage("main")
|
||||||
|
})
|
||||||
|
|
||||||
pages.AddPage("main", mainFlex, true, true)
|
pages.AddPage("main", mainFlex, true, true)
|
||||||
|
pages.AddPage("error", errorModal, false, false)
|
||||||
// TODO page for textarea to notate
|
// TODO page for textarea to notate
|
||||||
|
|
||||||
app := tview.NewApplication()
|
app := tview.NewApplication()
|
||||||
|
@ -148,32 +182,74 @@ func _main() error {
|
||||||
|
|
||||||
// TODO count of pending signups somewhere
|
// TODO count of pending signups somewhere
|
||||||
|
|
||||||
|
// TODO replace imperative shit with signupManager
|
||||||
|
advanceSignup := func() {
|
||||||
|
if len(signups) == 0 {
|
||||||
|
appView.SetText("no signups found.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
signupIx++
|
||||||
|
if signupIx == len(signups) {
|
||||||
|
signupIx = 0
|
||||||
|
}
|
||||||
|
appView.SetText(signups[signupIx].Render())
|
||||||
|
}
|
||||||
|
|
||||||
|
removeSignup := func(signup townSignup) {
|
||||||
|
newSignups := []townSignup{}
|
||||||
|
for ix, s := range signups {
|
||||||
|
if ix != signupIx {
|
||||||
|
newSignups = append(newSignups, s)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
signups = newSignups
|
||||||
|
if len(signups) > 0 {
|
||||||
|
if signupIx >= len(signups) {
|
||||||
|
signupIx = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
appView.SetText(signups[signupIx].Render())
|
||||||
|
}
|
||||||
|
|
||||||
app.SetInputCapture(func(event *tcell.EventKey) *tcell.EventKey {
|
app.SetInputCapture(func(event *tcell.EventKey) *tcell.EventKey {
|
||||||
switch event.Rune() {
|
switch event.Rune() {
|
||||||
case 's':
|
case 's':
|
||||||
signupIx++
|
advanceSignup()
|
||||||
if signupIx == len(signups) {
|
|
||||||
signupIx = 0
|
|
||||||
}
|
|
||||||
appView.SetText(signups[signupIx].Render())
|
|
||||||
case 'r':
|
case 'r':
|
||||||
signupIx = rand.Intn(len(signups))
|
if len(signups) > 0 {
|
||||||
appView.SetText(signups[signupIx].Render())
|
signupIx = rand.Intn(len(signups))
|
||||||
|
appView.SetText(signups[signupIx].Render())
|
||||||
|
}
|
||||||
case 'A':
|
case 'A':
|
||||||
err := signups[signupIx].Accept()
|
if len(signups) == 0 {
|
||||||
if err != nil {
|
return nil
|
||||||
// TODO report in app
|
}
|
||||||
panic(fmt.Errorf("failed to approve '%s': %w", signups[signupIx].Filename, err))
|
signup := signups[signupIx]
|
||||||
|
err := signup.Accept()
|
||||||
|
if err != nil {
|
||||||
|
errorModal.SetText(fmt.Sprintf("error! failed to approve '%s': %s", signup.Filename, err.Error()))
|
||||||
|
pages.SwitchToPage("error")
|
||||||
|
} else {
|
||||||
|
removeSignup(signup)
|
||||||
|
updateCount()
|
||||||
}
|
}
|
||||||
// TODO remove from signups list
|
|
||||||
case 'R':
|
case 'R':
|
||||||
err = signups[signupIx].Reject()
|
if len(signups) == 0 {
|
||||||
if err != nil {
|
return nil
|
||||||
// TODO report in app
|
}
|
||||||
panic(fmt.Errorf("failed to rejec t'%s': %w", signups[signupIx].Filename, err))
|
signup := signups[signupIx]
|
||||||
|
err = signup.Reject()
|
||||||
|
if err != nil {
|
||||||
|
errorModal.SetText(fmt.Sprintf("error! failed to reject '%s': %s", signup.Filename, err.Error()))
|
||||||
|
pages.SwitchToPage("error")
|
||||||
|
} else {
|
||||||
|
removeSignup(signup)
|
||||||
|
updateCount()
|
||||||
|
}
|
||||||
|
case 'N':
|
||||||
|
if len(signups) == 0 {
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
// TODO remove from signups list
|
|
||||||
case 'n':
|
|
||||||
// TODO notate
|
// TODO notate
|
||||||
case 'Q':
|
case 'Q':
|
||||||
app.Stop()
|
app.Stop()
|
||||||
|
|
Loading…
Reference in New Issue