Skip to content
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

USER STORY: View tasks on Kanban board #57

Closed
11 tasks done
blahosyl opened this issue Aug 4, 2024 · 1 comment
Closed
11 tasks done

USER STORY: View tasks on Kanban board #57

blahosyl opened this issue Aug 4, 2024 · 1 comment
Assignees
Labels
e: ux tasks Epic: UX for Tasls e: view tasks Epic: View tasks p: should have Priority: High value but not crucial

Comments

@blahosyl
Copy link
Owner

blahosyl commented Aug 4, 2024

As a Logged-in User,

I want to View tasks on a Kanban board,

so that I have a better overview of task status

Acceptance Criteria

  1. Logged-in Users can view tasks on a Kanban board
  2. Columns of the Board correspond to task status

Tasks

  • create TaskKanban component based on TaskList
  • import it to App.js & add route
  • create corresponding CSS file
  • import the CSS file of TaskList (this styles the search bar)
  • in TaskKanban, create 3 columns, and call the Task component in each with a different conditional based on task status:
    children={tasks.results.map((task) => (
     task.status === "DONE" && (
       <Task key={task.id} {...task} setTasks={setTasks} />
     )
    ))}
    
  • remove Teammates component
  • make column container full width
  • add Teammates link to either NavBar or next to search bar
  • implement horizontal scrolling
  • make board responsive USER STORY: Make Kanban board responsive on small screens #107
  • style board
@blahosyl blahosyl self-assigned this Aug 4, 2024
@blahosyl blahosyl added p: could have Priority: Nice to have e: view tasks Epic: View tasks labels Aug 4, 2024
@blahosyl blahosyl added this to the Sprint 2 milestone Aug 4, 2024
@blahosyl blahosyl moved this to Backlog in Task Manager Aug 4, 2024
@blahosyl blahosyl added p: should have Priority: High value but not crucial blocked Waiting for input or for another work phase to finish and removed p: could have Priority: Nice to have labels Aug 6, 2024
@blahosyl
Copy link
Owner Author

blahosyl commented Aug 6, 2024

Blocked by #25

@blahosyl blahosyl removed the blocked Waiting for input or for another work phase to finish label Aug 8, 2024
@blahosyl blahosyl moved this from Blocked/Ongoig to Todo in Task Manager Aug 8, 2024
@blahosyl blahosyl moved this from Todo to In Progress in Task Manager Aug 8, 2024
blahosyl added a commit that referenced this issue Aug 8, 2024
- create TaskKanban component based on TaskList
- import it to `App.js` & add route
- create corresponding CSS file
- import the CSS file of TaskList (this styles the search bar)
- in TaskKanban, create 3 columns, and call the `Task` component in each with a different conditional based on task status
-remove Teammates
- make column container full width
blahosyl added a commit that referenced this issue Aug 9, 2024
blahosyl added a commit that referenced this issue Aug 9, 2024
@blahosyl blahosyl moved this from In Progress to Done in Task Manager Aug 9, 2024
@blahosyl blahosyl closed this as completed by moving to Done in Task Manager Aug 9, 2024
@blahosyl blahosyl added the e: ux tasks Epic: UX for Tasls label Aug 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
e: ux tasks Epic: UX for Tasls e: view tasks Epic: View tasks p: should have Priority: High value but not crucial
Projects
Status: Done/Won't do
Development

No branches or pull requests

1 participant