-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split panel scenegraph inspector (#555)
* disable screensaver by default * update Loader component to use vscode-progress-ring * add TreeNodeWithBase type * Move all webviews into vscode-brightscript-language tab * finish split panel scenegraph inspector * final cleanup * upgrade roku-test-automation to 2.04 * upgrade roku-test-automation to 2.04 --------- Co-authored-by: Brian Leighty <[email protected]> Co-authored-by: Bronley Plumb <[email protected]>
- Loading branch information
1 parent
b05f3a3
commit 14867d7
Showing
12 changed files
with
601 additions
and
460 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,28 +1,18 @@ | ||
<style> | ||
.container { | ||
position: absolute; | ||
left: 0; | ||
right: 0; | ||
padding: 10px; | ||
} | ||
.loader { | ||
border: 6px solid rgb(190, 190, 190); | ||
border-top: 6px solid #00509f; | ||
border-bottom: 6px solid #00509f; | ||
border-radius: 50%; | ||
height: 30px; | ||
width: 30px; | ||
animation: spin 2s linear infinite; | ||
margin: auto; | ||
#loaderContainer { | ||
position: relative; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
@keyframes spin { | ||
0% { transform: rotate(0deg); } | ||
100% { transform: rotate(360deg); } | ||
vscode-progress-ring { | ||
position: absolute; | ||
top: 30%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
</style> | ||
|
||
<div class="container"> | ||
<div class="loader" /> | ||
<div id="loaderContainer"> | ||
<vscode-progress-ring /> | ||
</div> |
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,6 +1,11 @@ | ||
import type { odc } from '../ExtensionIntermediary'; | ||
import type { TreeNode, BaseType } from 'roku-test-automation'; | ||
export type PathContentsInfo = Omit<Partial<Awaited<ReturnType<typeof odc.statPath>>>, 'type'> & { | ||
name: string; | ||
path: string; | ||
type?: 'file' | 'directory' | 'fileSystem'; | ||
}; | ||
|
||
export type TreeNodeWithBase = Partial<TreeNode> & { | ||
base?: keyof typeof BaseType; | ||
}; |
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.