Currently in the process of designing a basic board interface with swim lanes similar to Jira swimlane or trello boards
https://i.sstatic.net/7MBvm.png The red lines indicate the current flow
The blue lines represent the flow that I aim to implement
There are three columns labeled "To Do", "In Progress" and "Done". At the moment, I am able to drag an item from To Do to In Progress, from In Progress to Done, and from Done back to To Do using cdkDropListConnectedTo
.
My question is how can I move an item from "Done" to "To Do" and "In Progress", and likewise, move an item from "In Progress" to both "Done" and "To Do", and from "Done" to both "In Progress" and "To Do"?
My initial thought was to pass multiple references to cdkDropListConnectedTo
, but that approach did not yield the desired outcome. Any guidance in the right direction would be greatly appreciated.
Thank you
This is the progress I've made so far: https://stackblitz.com/edit/angular-mpedfr?file=src%2Fapp%2Fapp.component.html