Learn R Programming

projmgr (version 0.1.2)

viz_taskboard: Visualize Agile-style task board of item status

Description

Produces three column task board showing any relevant objects (typically issues or milestones) as "Not Started", "In Progress", or "Done".

Usage

viz_taskboard(data, in_progress_when, str_wrap_width = 30, text_size = 3)

Value

ggplot object

Arguments

data

Dataset, such as those representing issues or milestones (i.e. from parse_issues()). Must have state variable.

in_progress_when

Function with parameter data that returns Boolean vector. Generally, one of the taskboard helper functions. See ?taskboard_helpers for details.

str_wrap_width

Number of characters before text of issue title begins to wrap

text_size

Text size

Details

The following logic is used to determine the status of each issue:

  • Done: Items with a state of "closed"

  • In Progress: Custom logic via in_progress_when. See ?taskboard_helpers for details.

  • Not Started: Default case for items neither In Progress or Closed

See Also

viz_linked

Examples

Run this code
if (FALSE) {
issues <- get_issues(myrepo, milestone = 1)
issues_df <- parse_issues(issues)
viz_taskboard(issues_df, in_progress_when = is_labeled_with('in-progress'))
viz_taskboard(issues_df, in_progress_when = is_in_a_milestone())
}

Run the code above in your browser using DataLab