-
Notifications
You must be signed in to change notification settings - Fork 563
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
feat(amazonq): Handle disclaimer acknowledgement #6825
base: master
Are you sure you want to change the base?
Conversation
|
@@ -34,13 +34,14 @@ export class AmazonQChatViewProvider implements WebviewViewProvider { | |||
} | |||
|
|||
const uiPath = webviewView.webview.asWebviewUri(Uri.parse(this.mynahUIPath)).toString() | |||
webviewView.webview.html = getWebviewContent(uiPath) | |||
const disclaimerAcknowledged = globals.globalState.tryGet('aws.amazonq.disclaimerAcknowledged', Boolean, false) |
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.
Should this not be stored in suppressPrompts
?
'amazonQ.suppressPrompts', |
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.
this is just porting the existing implementation to the lsp one. Maybe originally yes, but now that's going to require all sorts of extra re-working to port the global state to suppress prompts
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.
that's going to require all sorts of extra re-working to port the global state to suppress prompts
If we don't "port global state", is the worst case that an extra dialog is shown one time, which can be dismissed? Or is there some other problem I am missing?
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.
No, its mostly that. It's just going to be annoying for users. I've set it up so that if they had previous acknowledged it it moves it to supress prompts instead
195e365
to
972f150
Compare
#6912) ## Problem [sessionManager](https://github.com/aws/aws-toolkit-vscode/blob/master/packages/amazonq/src/app/inline/sessionManager.ts#L6) has an implicit dependency on `@aws/language-server-runtimes-types` that isn't present in the package.json ## Solution Add an explicit dependency, that way when the underling package currently controlling runtime-types's version changes it doesn't cause a build error as current observed in #6825 --- - Treat all work as PUBLIC. Private `feature/x` branches will not be squash-merged at release time. - Your code changes must meet the guidelines in [CONTRIBUTING.md](https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#guidelines). - License: I confirm that my contribution is made under the terms of the Apache 2.0 license.
c00d616
to
b02e418
Compare
b02e418
to
72bca8c
Compare
Problem
Solution
feature/x
branches will not be squash-merged at release time.