-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Load state from files and create apply/revert/copy commands
Key points: 1. make the data folder(.vscode/konveyor) the main permanent storage. This replaces the current usages of vscode.workspaceState. 2. store analysis results and received solutions directly in the extension state. Both values are frequently read from the command layer. Retrieval from the DB adds unnecessary delay. 3. load initial data asynchronously on extension start 4. implement commands: applyAll,applyFile, revertAll, revertFile, copyPath, copyDiff 5. create loadResultsFromDataFolder command ("Reload results" in the command palette)for initial data load and development. Signed-off-by: Radoslaw Szwajkowski <[email protected]>
- Loading branch information
Showing
16 changed files
with
237 additions
and
75 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
export * from "./loadStaticResults"; | ||
export * from "./loadResults"; | ||
export * from "./fileSystemProvider"; | ||
export * from "./storage"; |
This file contains 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 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 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.