-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: task list #21
Comments
I like this! I'll see what I can do 😁 |
It did occur to me that I was slightly more confused than I originally thought about the difference between a job and a project so I am not sure how it would work (or the package) across multiple projects? |
Yeah, in my ideal world I'd have referred to "projects" everywhere instead of "jobs" (and that's how I wrote it initially), but I felt that would cause confusion with RStudio projects. So instead I've used "job" throughout (where one job could map onto one RStudio project or one git repo, or whatever), and allowed each job to be linked with a set of "tasks". However, there are still some stray references to "projects" in the documentation and the API (e.g., |
Ahh ok that clears it up in my head projects were projects and jobs were tasks. |
Opened #24 as a reminder to fix the documentation on this |
It needs some tidying, but here's the basic idea. There's a new function Here's the job list: The expandable details tab (obviously needs nicer formatting): The tasks view: People tab: |
Similar to the project list idea (#3) (which I assume would just list projects?) would be to have a todo_list() option where you can output the the task list for a project in a nice html format.
You could use this internally for the project list function where project list uses the project title as the header of a tabset and calls task list to populate the tab.
It is hard with githubs auto formatting but something like:
(' should be a back tick but github formats them)
'r Title'
.## 'r view_jobs(projects[1])$name'
'''{r}
todo_list(projects[1])
'''
which would output:
`#Project list: {.tabset}
Project 1
alll of the things....
`
ok tabset doesn't for in issues but I think it makes sense....
The text was updated successfully, but these errors were encountered: