You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, this is a follow-up to #142 where I talked about dragging into the mosaic layout.
I'd like to also be able to drag the mosaic window out of the layout, into an external drag source. Some background: I have a tabbed application which uses react-mosaic to allow dragging of windows and other tabs into combined layouts. I'd also like to be able to drag a window back out of the layout to split it into its own tab.
In order to do this, two changes would be needed:
the drag source would need to return a drag item that contains the layout path and mosaic key for that window. Right now it seems to only have data used internally:
{
mosaicId: ...,
hideTimer: ...
}
Having those fields on the drag item would allow an external drag source to perform some action when the window is dragged out of the layout.
The drag target should be able to return an object with the format { remove: true }, which will tell the window drag source to update the tree with a remove update instead of a drag update.
The text was updated successfully, but these errors were encountered:
Hello, this is a follow-up to #142 where I talked about dragging into the mosaic layout.
I'd like to also be able to drag the mosaic window out of the layout, into an external drag source. Some background: I have a tabbed application which uses react-mosaic to allow dragging of windows and other tabs into combined layouts. I'd also like to be able to drag a window back out of the layout to split it into its own tab.
In order to do this, two changes would be needed:
Having those fields on the drag item would allow an external drag source to perform some action when the window is dragged out of the layout.
{ remove: true }
, which will tell the window drag source to update the tree with a remove update instead of a drag update.The text was updated successfully, but these errors were encountered: