Skip to content
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(tree-explorer): add buttons to ask Copilot and create playgrounds from tree view VSCODE-651 #890

Merged
merged 39 commits into from
Dec 6, 2024
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
86d25b7
WIP
gagik Nov 21, 2024
6feac32
add query codelens and shorten wording
gagik Nov 22, 2024
b1adb2a
Merge branch 'main' of github.com:mongodb-js/vscode into gagik/query-…
gagik Nov 22, 2024
474beb3
revert vscode change
gagik Nov 22, 2024
e915b3f
wording change
gagik Nov 22, 2024
e17008f
Add icons to connect to MongoDB
gagik Nov 25, 2024
27f0aad
Fix tests
gagik Nov 25, 2024
a8bcf84
Merge branch 'main' of github.com:mongodb-js/vscode into gagik/query-…
gagik Nov 25, 2024
bce4de9
check for copilot extension, not chat
gagik Nov 25, 2024
99128f5
Add namespacing
gagik Nov 26, 2024
b7f9618
add codelens telemetry
gagik Nov 27, 2024
245121f
WIP demo icons
gagik Nov 27, 2024
a9c2836
Update src/editors/queryWithCopilotCodeLensProvider.ts
gagik Nov 27, 2024
d4c9d6d
WIP
gagik Nov 28, 2024
b0ca543
use DocumentSource
gagik Nov 28, 2024
c870786
use document source
gagik Nov 28, 2024
145af8d
use sendMessage in extensionController
gagik Nov 28, 2024
692dc1c
change srv text
gagik Nov 28, 2024
fb02705
Merge branch 'gagik/query-codelens' of github.com:mongodb-js/vscode i…
gagik Nov 28, 2024
1d1f0a3
Merge branch 'gagik/query-codelens' of github.com:mongodb-js/vscode i…
gagik Nov 28, 2024
f827164
Merge branch 'gagik/add-icons' of github.com:mongodb-js/vscode into g…
gagik Nov 28, 2024
3e8bd0e
WIP
gagik Nov 28, 2024
2b079ce
Merge branch 'main' of github.com:mongodb-js/vscode into gagik/add-pl…
gagik Nov 28, 2024
f22248f
move to participant
gagik Nov 28, 2024
44a7eea
remove test related changes
gagik Nov 28, 2024
68c4482
remove more test code
gagik Nov 29, 2024
efb1432
fix test
gagik Nov 29, 2024
93fb8f8
add tests
gagik Nov 29, 2024
aeee828
only range
gagik Nov 29, 2024
f30c1f4
use Promise<void>
gagik Dec 2, 2024
e7a1d08
Apply changes from feedback
gagik Dec 3, 2024
8c9347e
remove playground shortcut
gagik Dec 3, 2024
7fa46fe
use new database name
gagik Dec 3, 2024
4a6df5a
Remove redundant changes
gagik Dec 3, 2024
09c68ee
changes from feedback
gagik Dec 4, 2024
9c9ffc0
expect one call
gagik Dec 4, 2024
11cf234
fix tests
gagik Dec 4, 2024
1bb6491
Merge branch 'main' into gagik/add-playground-buttons
gagik Dec 6, 2024
a805fd2
remove line and use COPILOT_EXTENSION_ID
gagik Dec 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' of github.com:mongodb-js/vscode into gagik/add-pl…
…ayground-buttons
  • Loading branch information
gagik committed Nov 28, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 2b079ce0833f7fc163b841ce683ddfce234ea26d
2 changes: 1 addition & 1 deletion src/mdbExtensionController.ts
Original file line number Diff line number Diff line change
@@ -177,7 +177,7 @@ export default class MDBExtensionController implements vscode.Disposable {
this.updateCopilotStatusContext();
this.showOverviewPageIfRecentlyInstalled();

void this.showSurveyForEstablishedUsers();
// ------ In-app notifications ------ //
void this.showCopilotIntroductionForEstablishedUsers();

const copilot = vscode.extensions.getExtension('GitHub.copilot');
1 change: 0 additions & 1 deletion src/participant/participant.ts
Original file line number Diff line number Diff line change
@@ -138,7 +138,6 @@ export default class ParticipantController {
async sendMessageToParticipant(
options: SendMessageToParticipantOptions
): Promise<unknown> {
log.info(`STUFF: ${util.inspect(options)}`);
const {
message,
isNewChat = false,
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.