1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/textfile/widget.go
Chris Cummer a0ce5eb412 Basic selectable todo functionality working
Can:
- move between todo items
- toggle checked/unchecked state

Cannot:
- persiste changes to file
- add items
- delete items
2018-04-22 20:59:13 -07:00

51 lines
894 B
Go

package textfile
import (
"fmt"
"time"
"github.com/olebedev/config"
"github.com/senorprogrammer/wtf/wtf"
)
// Config is a pointer to the global config object
var Config *config.Config
type Widget struct {
wtf.TextWidget
FilePath string
}
func NewWidget() *Widget {
widget := Widget{
TextWidget: wtf.NewTextWidget(" 📄 Text File ", "textfile"),
FilePath: Config.UString("wtf.mods.textfile.filename"),
}
widget.View.SetWrap(true)
return &widget
}
/* -------------------- Exported Functions -------------------- */
func (widget *Widget) Refresh() {
if widget.Disabled() {
return
}
widget.View.SetTitle(fmt.Sprintf(" 📄 %s ", widget.FilePath))
widget.RefreshedAt = time.Now()
widget.View.Clear()
fileData, err := wtf.ReadFile(widget.FilePath)
if err != nil {
fmt.Fprintf(widget.View, "%s", err)
} else {
fmt.Fprintf(widget.View, "%s", fileData)
}
}