vCore previously lacked feedback when operations were executed, such as when a document was deleted or saved.
This PR addresses this issue.
1. Added a new setting to enable detailed operation summaries for actions such as database drops, document additions, deletions, or similar events.
The functionality to display operation summaries is now available in showConfirmation.ts.
2. Implemented this functionality throughout the vCore extension.
Notifications are displayed for the majority of operations:
3. Saving documents follows the UX approach used in the NoSQL implementation.
The Save button dynamically toggles its disabled/enabled state based on whether a document has been saved or modified. This provides a visual cue to confirm the Save operation.
vCore previously lacked feedback when operations were executed, such as when a document was deleted or saved.
This PR addresses this issue.
1. Added a new setting to enable detailed operation summaries for actions such as database drops, document additions, deletions, or similar events.
The functionality to display operation summaries is now available in showConfirmation.ts.
2. Implemented this functionality throughout the vCore extension.
Notifications are displayed for the majority of operations:
3. Saving documents follows the UX approach used in the NoSQL implementation.
The
Save
button dynamically toggles itsdisabled
/enabled
state based on whether a document has been saved or modified. This provides a visual cue to confirm the Save operation.