mirror of
https://github.com/Rudi9719/kbtui.git
synced 2026-03-22 09:57:24 +00:00
Simplified editing with popup funcs in main
This commit is contained in:
24
cmdEdit.go
24
cmdEdit.go
@ -6,8 +6,6 @@ import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/jroimartin/gocui"
|
||||
)
|
||||
|
||||
func init() {
|
||||
@ -37,24 +35,10 @@ func cmdEdit(cmd []string) {
|
||||
return
|
||||
}
|
||||
editString := origMessage.Result.Messages[0].Msg.Content.Text.Body
|
||||
g.Update(func(g *gocui.Gui) error {
|
||||
inputView, err := g.View("Input")
|
||||
if err != nil {
|
||||
return err
|
||||
} else {
|
||||
editString = fmt.Sprintf("/edit %d %s", messageId, editString)
|
||||
fmt.Fprintf(inputView, editString)
|
||||
viewX, viewY := inputView.Size()
|
||||
if len(editString) < viewX {
|
||||
viewX = len(editString)
|
||||
viewY = 0
|
||||
} else {
|
||||
viewX = viewX / len(editString)
|
||||
}
|
||||
inputView.MoveCursor(viewX, viewY, true)
|
||||
}
|
||||
return nil
|
||||
})
|
||||
clearView("Edit")
|
||||
popupView("Edit")
|
||||
printToView("Edit", fmt.Sprintf("/e %d %s", messageId, editString))
|
||||
viewTitle("Edit", fmt.Sprintf(" Editing message %d ", messageId))
|
||||
return
|
||||
}
|
||||
if len(cmd) < 3 {
|
||||
|
||||
Reference in New Issue
Block a user