WIP: Intelligently parse dates when creating new task #10
35
bubbletea.go
35
bubbletea.go
@ -2,8 +2,11 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/charmbracelet/lipgloss"
|
"regexp"
|
||||||
|
"time"
|
||||||
|
|
||||||
tea "github.com/charmbracelet/bubbletea"
|
tea "github.com/charmbracelet/bubbletea"
|
||||||
|
"github.com/charmbracelet/lipgloss"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (m model) Init() tea.Cmd {
|
func (m model) Init() tea.Cmd {
|
||||||
@ -95,11 +98,27 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func AddNewTask(m *model) {
|
func AddNewTask(m *model) {
|
||||||
|
taskTitle := m.textinput.Value()
|
||||||
|
|
||||||
|
// parse date in title
|
||||||
|
var doDate int64 = -1
|
||||||
|
var deadline int64 = -1
|
||||||
|
|
||||||
|
reDate := regexp.MustCompile("\\d{1,2}/\\d{1,2}")
|
||||||
|
date := reDate.FindStringSubmatch(taskTitle)
|
||||||
|
|
||||||
|
if len(date) > 0 {
|
||||||
|
// what the fuck Go
|
||||||
|
date, _ := time.Parse("02/01/2006", "10/03/2025")
|
||||||
|
doDate = date.Unix()
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
t := todo{
|
t := todo{
|
||||||
name: m.textinput.Value(),
|
name: taskTitle,
|
||||||
done: false,
|
done: false,
|
||||||
startdate: 0,
|
startdate: doDate,
|
||||||
deadline: 0,
|
deadline: deadline,
|
||||||
priority: 1,
|
priority: 1,
|
||||||
isInbox: true,
|
isInbox: true,
|
||||||
}
|
}
|
||||||
@ -120,12 +139,12 @@ func (m model) View() string {
|
|||||||
currentList = filter(m.todos, taskFilter)
|
currentList = filter(m.todos, taskFilter)
|
||||||
case 1:
|
case 1:
|
||||||
// s += "Today"
|
// s += "Today"
|
||||||
taskFilter := func(t todo) bool { return t.startdate == int(midnightToUnix()) || t.deadline == int(midnightToUnix()) }
|
taskFilter := func(t todo) bool { return t.startdate == midnightToUnix() || t.deadline == midnightToUnix() }
|
||||||
currentList = filter(m.todos, taskFilter)
|
currentList = filter(m.todos, taskFilter)
|
||||||
case 2:
|
case 2:
|
||||||
// s += "Tomorrow"
|
// s += "Tomorrow"
|
||||||
// 86400 seconds in 24h, add it on to today's midnight for tomorrow's midnight
|
// 86400 seconds in 24h, add it on to today's midnight for tomorrow's midnight
|
||||||
taskFilter := func(t todo) bool { return t.startdate == int(midnightToUnix()) + 86400 || t.deadline == int(midnightToUnix()) + 86400}
|
taskFilter := func(t todo) bool { return t.startdate == midnightToUnix() + 86400 || t.deadline == midnightToUnix() + 86400}
|
||||||
currentList = filter(m.todos, taskFilter)
|
currentList = filter(m.todos, taskFilter)
|
||||||
case 3:
|
case 3:
|
||||||
// s += "Scheduled"
|
// s += "Scheduled"
|
||||||
@ -156,8 +175,10 @@ func (m model) View() string {
|
|||||||
checked = "x"
|
checked = "x"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
renderedTime := time.Unix(value.startdate, 0)
|
||||||
|
|
||||||
// Render the row
|
// Render the row
|
||||||
s += fmt.Sprintf("%s [%s] %s\n", cursor, checked, value.name)
|
s += fmt.Sprintf("%s [%s] %s – %s\n", cursor, checked, value.name, renderedTime)
|
||||||
}
|
}
|
||||||
|
|
||||||
s += "\n\n"
|
s += "\n\n"
|
||||||
|
4
model.go
4
model.go
@ -7,8 +7,8 @@ import (
|
|||||||
type todo struct {
|
type todo struct {
|
||||||
name string
|
name string
|
||||||
done bool
|
done bool
|
||||||
deadline int
|
deadline int64
|
||||||
startdate int
|
startdate int64
|
||||||
priority int // 1-4, 1 being highest priority, 4 being no priority
|
priority int // 1-4, 1 being highest priority, 4 being no priority
|
||||||
isInbox bool
|
isInbox bool
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user