I'm currently exploring how to move an element from a list to a <div>
and then see it transferred to another list.
The objective is to allow users to drag items from one list onto the labels in a sidebar navigation, causing the item to switch to the list on that specific destination page.
I made an attempt at creating a basic proof of concept on stackblitz, but unfortunately, it didn't work as expected.
Is it feasible to drop an item onto a designated div (even if it doesn't display a list) and have the item shift lists?
You can view my stackblitz implementation here: https://stackblitz.com/edit/angular-special-drop-zone
In the stackblitz example, I am aiming to enable dropping items from the TODO list onto the DONE header and having them automatically added to the DONE list.
UPDATE: You can check out this GIF to get a clearer idea of my goal. After dragging an item onto 'Backlog' in the side nav, it should switch over to the backlog list.