diff options
Diffstat (limited to 'widgets/directories.go')
-rw-r--r-- | widgets/directories.go | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/widgets/directories.go b/widgets/directories.go index ae31d297..d66ae1f5 100644 --- a/widgets/directories.go +++ b/widgets/directories.go @@ -16,6 +16,7 @@ type DirectoryList struct { dirs []string logger *log.Logger onInvalidate func(d ui.Drawable) + selecting string selected string spinner *Spinner worker *types.Worker @@ -58,11 +59,24 @@ func (dirlist *DirectoryList) UpdateList(done func(dirs []string)) { } func (dirlist *DirectoryList) Select(name string) { - dirlist.selected = name - dirlist.worker.PostAction(&types.OpenDirectory{Directory: name}, nil) + dirlist.selecting = name + dirlist.worker.PostAction(&types.OpenDirectory{Directory: name}, + func(msg types.WorkerMessage) { + switch msg.(type) { + case *types.Error: + dirlist.selecting = "" + default: + dirlist.selected = dirlist.selecting + } + dirlist.Invalidate() + }) dirlist.Invalidate() } +func (dirlist *DirectoryList) Selected() string { + return dirlist.selected +} + func (dirlist *DirectoryList) OnInvalidate(onInvalidate func(d ui.Drawable)) { dirlist.onInvalidate = onInvalidate } |