Like Asana (https://app.asana.com/), there are many project management apps. One of the key features they should provide is a way to smoothly drag and drop project items to reorder them in a workspace.
My question is: what should be done to support this feature on the backend side? Here's what I'm guessing:
1) as a backend data storage, a database is used to store project items permanently. 2) each project item has a field (column) called "rank" denoting the rank of the item in a workspace. 3) the database has an unclustered index build on the "rank" column. 4) whenever a project item is moved, the rank of the project item is updated so that it could be located at the right position.
I'm not sure if this is a right implementation to support the "dran&drop" feature. If not, what would be an efficient way to deal with this?
thanks in advance!