-
Notifications
You must be signed in to change notification settings - Fork 733
telemetry(messages): maybeShowMinVscodeWarning #5762
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,8 +16,9 @@ import { getIcon, codicon } from '../icons' | |
| import globals from '../extensionGlobals' | ||
| import { openUrl } from './vsCodeUtils' | ||
| import { AmazonQPromptSettings, ToolkitPromptSettings } from '../../shared/settings' | ||
| import { telemetry } from '../telemetry/telemetry' | ||
| import { telemetry, ToolkitShowNotification } from '../telemetry/telemetry' | ||
| import { vscodeComponent } from '../vscode/commands2' | ||
| import { getTelemetryReasonDesc } from '../errors' | ||
|
|
||
| export const messages = { | ||
| editCredentials(icon: boolean) { | ||
|
|
@@ -35,21 +36,31 @@ export function makeFailedWriteMessage(filename: string): string { | |
| return message | ||
| } | ||
|
|
||
| function showMessageWithItems( | ||
| message: string, | ||
| export function showMessage( | ||
| kind: 'info' | 'warn' | 'error' = 'error', | ||
| message: string, | ||
| items: string[] = [], | ||
| useModal: boolean = false | ||
| options: vscode.MessageOptions & { telemetry?: boolean } = {}, | ||
| metric: Partial<ToolkitShowNotification> = {} | ||
| ): Thenable<string | undefined> { | ||
| switch (kind) { | ||
| case 'info': | ||
| return vscode.window.showInformationMessage(message, { modal: useModal }, ...items) | ||
| case 'warn': | ||
| return vscode.window.showWarningMessage(message, { modal: useModal }, ...items) | ||
| case 'error': | ||
| default: | ||
| return vscode.window.showErrorMessage(message, { modal: useModal }, ...items) | ||
| } | ||
| return telemetry.toolkit_showNotification.run(async (span) => { | ||
| span.record({ | ||
| passive: true, | ||
| id: 'unknown', | ||
| component: 'editor', | ||
| ...metric, | ||
| }) | ||
|
|
||
| switch (kind) { | ||
| case 'info': | ||
| return vscode.window.showInformationMessage(message, options, ...items) | ||
| case 'warn': | ||
| return vscode.window.showWarningMessage(message, options, ...items) | ||
| case 'error': | ||
| default: | ||
| return vscode.window.showErrorMessage(message, options, ...items) | ||
| } | ||
| }) | ||
| } | ||
|
|
||
| /** | ||
|
|
@@ -75,7 +86,16 @@ export async function showMessageWithUrl( | |
| const uri = typeof url === 'string' ? vscode.Uri.parse(url) : url | ||
| const items = [...extraItems, urlItem] | ||
|
|
||
| const p = showMessageWithItems(message, kind, items, useModal) | ||
| const p = showMessage( | ||
| kind, | ||
| message, | ||
| items, | ||
| { modal: useModal }, | ||
| { | ||
| id: 'showMessageWithUrl', | ||
| reasonDesc: getTelemetryReasonDesc(message), | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Setting |
||
| } | ||
| ) | ||
| return p.then<string | undefined>((selection) => { | ||
| if (selection === urlItem) { | ||
| void openUrl(uri) | ||
|
|
@@ -102,7 +122,16 @@ export async function showViewLogsMessage( | |
| const logsItem = localize('AWS.generic.message.viewLogs', 'View Logs...') | ||
| const items = [...extraItems, logsItem] | ||
|
|
||
| const p = showMessageWithItems(message, kind, items) | ||
| const p = showMessage( | ||
| kind, | ||
| message, | ||
| items, | ||
| {}, | ||
| { | ||
| id: 'showViewLogsMessage', | ||
| reasonDesc: getTelemetryReasonDesc(message), | ||
| } | ||
| ) | ||
| return p.then<string | undefined>((selection) => { | ||
| if (selection === logsItem) { | ||
| globals.logOutputChannel.show(true) | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
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.
nice idea. Does it make sense to also take in the "then" callback as an argument so that we can wrap the entire flow of messge + descision and report a final result based on what they clicked? It could be the selected item from
itemsin thereasonfieldThere 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.
Yeah I need to think more about this, could you show a pseudocode example of what you have in mind?
Meanwhile, I will push a lower-risk change for today's release.
Uh oh!
There was an error while loading. Please reload this page.
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.
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.
Ah, I think I can make that work in a followup PR.
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.
#5776