vscode-coder icon indicating copy to clipboard operation
vscode-coder copied to clipboard

Add loading indicator to sidebar

Open code-asher opened this issue 1 year ago • 1 comments

Depending on how long the query takes, it can look like the sidebar is temporarily broken.

code-asher avatar Oct 14 '24 22:10 code-asher

We can easily achieve this by fetching inside getChildren, currently, we fetch in the background (thus no loading indicator) then we refresh and getChildren just reads from memory which makes it super fast:

https://github.com/coder/vscode-coder/blob/a1ad85e03e1f92116a2771a67a3d34561d9a807c/src/workspace/workspacesProvider.ts#L241

EhabY avatar Nov 10 '25 15:11 EhabY