Skip to content

Commit

Permalink
🚀 Enhance progress notifications with output window links for better …
Browse files Browse the repository at this point in the history
…user guidance
  • Loading branch information
nicodecleyre committed Dec 29, 2024
1 parent beaf740 commit 2ef5a98
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/services/actions/CliActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ export class CliActions {

await window.withProgress({
location: ProgressLocation.Notification,
title: 'Creating app registration...',
title: `Creating app registration... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`,
cancellable: true
}, async (progress: Progress<{ message?: string; increment?: number }>) => {
try {
Expand Down Expand Up @@ -478,7 +478,7 @@ export class CliActions {

await window.withProgress({
location: ProgressLocation.Notification,
title: `Generating ${input.workflowType === WorkflowType.gitHub ? 'GitHub Workflow' : 'Azure DevOps Pipeline'}...`,
title: `Generating ${input.workflowType === WorkflowType.gitHub ? 'GitHub Workflow' : 'Azure DevOps Pipeline'}... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`,
cancellable: true
}, async (progress: Progress<{ message?: string; increment?: number }>) => {
try {
Expand Down Expand Up @@ -572,7 +572,7 @@ export class CliActions {

await window.withProgress({
location: ProgressLocation.Notification,
title: 'Generating the upgrade steps...',
title: `Generating the upgrade steps... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`,
cancellable: true
}, async (progress: Progress<{ message?: string; increment?: number }>) => {
try {
Expand Down Expand Up @@ -638,7 +638,7 @@ export class CliActions {

await window.withProgress({
location: ProgressLocation.Notification,
title: 'Renaming the current project...',
title: `Renaming the current project... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`,
cancellable: true
}, async (progress: Progress<{ message?: string; increment?: number }>) => {
try {
Expand Down Expand Up @@ -690,7 +690,7 @@ export class CliActions {

await window.withProgress({
location: ProgressLocation.Notification,
title: 'Granting API permissions for the current project...',
title: `Granting API permissions for the current project... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`,
cancellable: true
}, async (progress: Progress<{ message?: string; increment?: number }>) => {
try {
Expand Down Expand Up @@ -746,7 +746,7 @@ export class CliActions {

await window.withProgress({
location: ProgressLocation.Notification,
title: 'Validating the current project...',
title: `Validating the current project... Check [output window](command:${Commands.showOutputChannel}) to follow the progress.`,
cancellable: true
}, async (progress: Progress<{ message?: string; increment?: number }>) => {
try {
Expand Down

0 comments on commit 2ef5a98

Please # to comment.