Produces three column task board showing any relevant objects (typically issues or milestones) as "Not Started", "In Progress", or "Done".
report_taskboard(
data,
in_progress_when,
include_link = FALSE,
hover = FALSE,
colors = c("#f0e442", "#56b4e9", "#009e73")
)Returns character string of HTML/CSS with class attribute to be correctly shown "as-is" in RMarkdown
Dataset, such as those representing issues or milestones (i.e. from parse_issues()).
Must have state variable.
Function with parameter data that returns Boolean vector. Generally, one of the
taskboard helper functions. See ?taskboard_helpers for details.
Boolean whether or not to include links back to GitHub
Boolean whether or not tasks should be animated to slightly enlarge on hover
Character vector of hex colors for not started, in progress, and complete tasks (respectively)
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