Skip to content

Commit

Permalink
Add UX for fix all and for individual get solutions
Browse files Browse the repository at this point in the history
Display the resolutionsView panel on solution retrieval

get show resolution panel code working

Add new webview routing logic

populate resolutions view from solutions

Add more detailed resolution view

Signed-off-by: Ian Bolton <[email protected]>
  • Loading branch information
rszwajko authored and ibolton336 committed Nov 13, 2024
1 parent 93f60c5 commit 6c99d85
Show file tree
Hide file tree
Showing 23 changed files with 1,261 additions and 385 deletions.
117 changes: 111 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions shared/src/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Uri } from "vscode";

export interface Incident {
uri: string;
lineNumber: number;
Expand Down Expand Up @@ -82,3 +84,9 @@ export interface GetSolutionResult {
errors: string[];
changes: Change[];
}

export interface LocalChange {
modifiedUri: Uri;
originalUri: Uri;
diff: string;
}
12 changes: 6 additions & 6 deletions vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,13 +181,13 @@
"konveyor": [
{
"type": "webview",
"id": "konveyor.konveyorGUIView",
"name": "Konveyor",
"id": "konveyor.konveyorSidebarView",
"name": "Konveyor Analysis View",
"visibility": "visible"
},
{
"id": "konveyor.diffView",
"name": "Konveyor Resolutions"
"name": "Konveyor Solution Tree View"
}
]
},
Expand All @@ -196,7 +196,7 @@
{
"command": "konveyor.toggleFullScreen",
"group": "navigation@1",
"when": "view == konveyor.konveyorGUIView"
"when": "view == konveyor.konveyorSidebarView"
},
{
"command": "konveyor.applyAll",
Expand Down Expand Up @@ -245,7 +245,7 @@
{
"command": "konveyor.toggleFullScreen",
"group": "navigation@1",
"when": "activeWebviewPanelId == konveyor.konveyorGUIView"
"when": "activeWebviewPanelId == konveyor.konveyorSidebarView"
}
],
"explorer/context": [
Expand Down Expand Up @@ -477,4 +477,4 @@
"babel-loader": "^9.2.1",
"diff": "^7.0.0"
}
}
}
Loading

0 comments on commit 6c99d85

Please sign in to comment.