π‘ [Feature]: Show in progress kind of message after we click on any of the SPFx app actions
π― Aim of the feature
Currently when we click on any of the SPFx app actions the command is executed and VS Code show now response after clicking. We only get a success or error message when the action is done. The problem is that if we don't present any reaction like 'in progress' after we click on the action the user may think that something did not work and may click multiple times. This is what I did π . The idea is to show loader after we click on any of those actions.
What we should do is window.withProgress and a message like Deploying app... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.
For example other place were we already use it and we may do the same approach
https://github.com/pnp/vscode-viva/blob/3c8c45f9b3d2e8ada009cdd25e9b12080ec7b384/src/services/actions/CliActions.ts#L1115-L1121
π· Images (if possible) with expected result
those are the action we should adapt
π€ Additional remarks or comments
No response