-
Notifications
You must be signed in to change notification settings - Fork 3.8k
feat: add actions to reference files, directories and repo maps in IntelliJ Plugin #7253
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
Show all changes
12 commits
Select commit
Hold shift + click to select a range
7fb5935
feat: add `MentionFileInChatAction`
vldF 6e77df2
feat: allow to mention directory
vldF b40cf38
feat: allow to reference both directories and files at the same time
vldF cbc7ada
feat: add MentionRepoMapInChatAction.kt
vldF b4a29bd
feat: add the Continue icon to the context actions group
vldF 69cffcf
feat: rename action names
vldF 58de94d
fix: rename `getFiles` -> `getSelectedFiles`
vldF 258747d
fix: fix after rebase
vldF 8e1288e
review: fix
vldF 665282f
fix `addToEdit` handling
vldF d0a2771
minor: move `AddToEditAction` to the one level upper
vldF f5bee4f
fix: unify the namings
vldF 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
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
14 changes: 14 additions & 0 deletions
14
.../src/main/kotlin/com/github/continuedev/continueintellijextension/actions/ActionsUtils.kt
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 |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| package com.github.continuedev.continueintellijextension.actions | ||
|
|
||
| import com.intellij.openapi.actionSystem.AnActionEvent | ||
| import com.intellij.openapi.actionSystem.CommonDataKeys | ||
| import com.intellij.openapi.vfs.VirtualFile | ||
|
|
||
| fun AnActionEvent.getSelectedFiles(): Array<out VirtualFile> { | ||
| val multipleFiles = this.getData(CommonDataKeys.VIRTUAL_FILE_ARRAY) | ||
| if (multipleFiles != null) { | ||
| return multipleFiles | ||
| } | ||
|
|
||
| return this.getData(CommonDataKeys.VIRTUAL_FILE)?.let { arrayOf(it) } ?: emptyArray() | ||
| } |
38 changes: 38 additions & 0 deletions
38
...c/main/kotlin/com/github/continuedev/continueintellijextension/actions/AddToChatAction.kt
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 |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| package com.github.continuedev.continueintellijextension.actions | ||
|
|
||
| import com.github.continuedev.continueintellijextension.browser.ContinueBrowserService.Companion.getBrowser | ||
| import com.intellij.openapi.actionSystem.ActionUpdateThread | ||
| import com.intellij.openapi.actionSystem.AnAction | ||
| import com.intellij.openapi.actionSystem.AnActionEvent | ||
|
|
||
| class AddToChatAction : AnAction() { | ||
| override fun actionPerformed(e: AnActionEvent) { | ||
| val browser = e.project?.getBrowser() ?: return | ||
| val selectedFiles = e.getSelectedFiles() | ||
|
|
||
| val requestData = selectedFiles.map { vFile -> | ||
| val type = if (vFile.isDirectory) "folder" else "file" | ||
|
|
||
| mapOf( | ||
| "type" to type, | ||
| "fullPath" to vFile.url, | ||
| "name" to vFile.name, | ||
| ) | ||
| } | ||
| val requestParams = mapOf( | ||
| "data" to requestData | ||
| ) | ||
|
|
||
| browser.sendToWebview("addToChat", requestParams) | ||
| } | ||
|
|
||
| override fun update(e: AnActionEvent) { | ||
| val files = e.getSelectedFiles() | ||
|
|
||
| val isAvailable = files.isNotEmpty() | ||
|
|
||
| e.presentation.isVisible = isAvailable | ||
| } | ||
|
|
||
| override fun getActionUpdateThread(): ActionUpdateThread = ActionUpdateThread.BGT | ||
| } |
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
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.