-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Support tree view drag and drop. #12065
Conversation
Here's the source: and here's the built extension |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some initial thoughts on the code
packages/plugin-ext/src/main/browser/view/dnd-file-content-store.ts
Outdated
Show resolved
Hide resolved
6789039
to
9ad9347
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Exercise the current drag and drop to the editor area. Drag from the file navigator and from the OS file explorer
- Exercise dropping files to the example view: the extension will show the first couple of bytes of the file content.
I noticed that these (i.e. dragging from the OS file explorer) only work on Electron. Is it out of scope to make these work in the browser version as well?
Also, when dropping a file into an already open editor, even though it does open the file, it also pastes the file path into the existing editor. Can we change that somehow?
No, the drop to the editor works with URI's, and we don't have the URI of the file being dropped. Fixing editor DnD is not in scope for this PR (beyond making it work with tree views)
I believe this is pre-existing behavior and as such also out of scope for this PR. |
…ipse-theia#11776 Adds support for contributing drag and drop controller in the tree view plugin API Contributed on behalf of STMicroelectronics Signed-off-by: Thomas Mäder <[email protected]>
Signed-off-by: Thomas Mäder <[email protected]>
Signed-off-by: Thomas Mäder <[email protected]>
89a1b45
to
ede1983
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm happy with the changes, just a few very minor comment below.
- Dragging a file from the file system explorer works and opens the file in the editor area (on Electron)
- The extension behaves as indicated
- The API is marked as supported
Co-authored-by: Mark Sujew <[email protected]>
Signed-off-by: Thomas Mäder [email protected]
What it does
Adds support for contributing drag and drop controller in the tree view plugin API. The code tries to mimick the behaviour described in https://code.visualstudio.com/api/references/vscode-api#TreeDragAndDropController<T> as well as possible. I have also refactored some of the "drag into editor area" code to work with the new code (and fixed dragging external files into electron on windows as a "drive-by")
Contributed on behalf of ST Microelectronics
Fixes #11778, Fixes #11776
How to test
I have adapted the VS Code tree view sample to exercise the code added in the PR. The extension & source is attached to this PR.
The extension contributes a view called "Test View Drag and Drop", which you need to open.
The example implement multiple features:
The dropped element should be moved under the element where it was dropped.
Note that there seems to be a bug in our tree-view refresh code where the UI goes into an endless loop when you reparent the elements of the tree: It seems the parent field of the tree items is not properly updated when an item is reparented. I am pretty convinced this is not related to the changes in this PR.
This should open a *.js file from the extension itself: note that the cursor will be placed at line 10, column 6.
Review checklist
Reminder for reviewers