- Restoring focus to previous (taskPane) panel after closing modal (works only when invoked with shortcut)
- `projectPane.RemoveActivateProject()` and `taskPane.ClearCompletedTasks()` do comply with `func()`. So no need to wrap within `func() {}`
- Fixed issue - Project dosen't exit with Ctrl+C once (maybe because of re-running `.Run()` in `AskYesNo()`).
- When focusing back to tasklist from task detail, re-showing projectDetail pane
68 lines
1.7 KiB
Go
68 lines
1.7 KiB
Go
package main
|
|
|
|
import (
|
|
"unicode"
|
|
|
|
"github.com/gdamore/tcell/v2"
|
|
"github.com/rivo/tview"
|
|
|
|
"github.com/ajaxray/geek-life/model"
|
|
)
|
|
|
|
// ProjectDetailPane Displays relevant actions of current project
|
|
type ProjectDetailPane struct {
|
|
*tview.Flex
|
|
project *model.Project
|
|
}
|
|
|
|
func removeProjectWithConfirmation() {
|
|
AskYesNo("Do you want to delete Project?", projectPane.RemoveActivateProject)
|
|
}
|
|
|
|
func clearCompletedWithConfirmation() {
|
|
AskYesNo("Do you want to clear completed tasks?", taskPane.ClearCompletedTasks)
|
|
}
|
|
|
|
// NewProjectDetailPane Initializes ProjectDetailPane
|
|
func NewProjectDetailPane() *ProjectDetailPane {
|
|
pane := ProjectDetailPane{
|
|
Flex: tview.NewFlex().SetDirection(tview.FlexRow),
|
|
}
|
|
deleteBtn := makeButton("[::u]D[::-]elete Project", removeProjectWithConfirmation)
|
|
clearBtn := makeButton("[::u]C[::-]lear Completed Tasks", clearCompletedWithConfirmation)
|
|
|
|
deleteBtn.SetBackgroundColor(tcell.ColorRed)
|
|
pane.
|
|
AddItem(deleteBtn, 3, 1, false).
|
|
AddItem(blankCell, 1, 1, false).
|
|
AddItem(clearBtn, 3, 1, false).
|
|
AddItem(blankCell, 0, 1, false)
|
|
|
|
pane.SetBorder(true).SetTitle("[::u]A[::-]ctions")
|
|
|
|
return &pane
|
|
}
|
|
|
|
// SetProject Sets the active Project
|
|
func (pd *ProjectDetailPane) SetProject(project *model.Project) {
|
|
pd.project = project
|
|
pd.SetTitle("[::b]" + pd.project.Title)
|
|
}
|
|
|
|
func (pd *ProjectDetailPane) isShowing() bool {
|
|
return taskPane.activeTask == nil && projectPane.activeProject != nil
|
|
}
|
|
|
|
func (pd *ProjectDetailPane) handleShortcuts(event *tcell.EventKey) *tcell.EventKey {
|
|
switch unicode.ToLower(event.Rune()) {
|
|
case 'd':
|
|
removeProjectWithConfirmation()
|
|
return nil
|
|
case 'c':
|
|
clearCompletedWithConfirmation()
|
|
return nil
|
|
}
|
|
|
|
return event
|
|
}
|