diff options
Diffstat (limited to 'Omni/Task')
| -rw-r--r-- | Omni/Task/Core.hs | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/Omni/Task/Core.hs b/Omni/Task/Core.hs index 1a9cb2e..ef60ead 100644 --- a/Omni/Task/Core.hs +++ b/Omni/Task/Core.hs @@ -279,9 +279,10 @@ showTaskTree maybeId = do printTreeNode :: [Task] -> Task -> Int -> IO () printTreeNode allTasks task indent = do let prefix = T.pack (replicate (indent * 2) ' ') + -- Only show type label for epics typeStr = case taskType task of - Epic -> "[Epic]" - WorkTask -> "[Task]" + Epic -> "[Epic] " + WorkTask -> "" statusStr = case taskStatus task of Open -> "[ ]" InProgress -> "[~]" @@ -289,7 +290,14 @@ showTaskTree maybeId = do nsStr = case taskNamespace task of Nothing -> "" Just ns -> " [" <> ns <> "]" - putText <| prefix <> taskId task <> " " <> typeStr <> " " <> statusStr <> " " <> taskTitle task <> nsStr + -- Calculate available width for title (80 cols - prefix - id - labels) + usedWidth = T.length prefix + T.length (taskId task) + T.length typeStr + T.length statusStr + T.length nsStr + 3 + availableWidth = max 20 (80 - usedWidth) + truncatedTitle = + if T.length (taskTitle task) > availableWidth + then T.take (availableWidth - 3) (taskTitle task) <> "..." + else taskTitle task + putText <| prefix <> taskId task <> " " <> typeStr <> statusStr <> " " <> truncatedTitle <> nsStr -- Find and print children (tasks with this task as parent) let children = filter (\t -> taskParent t == Just (taskId task)) allTasks |
