-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(platform/devtools): facilitate integration in a router outlet or…
… workbench view using intent-based navigation ### Open SCION DevTools in a router outlet: ```ts Beans.get(OutletRouter).navigate({component: 'devtools', vendor: 'scion'}); ``` ### Open SCION DevTools in a workbench view: ```ts Beans.get(WorkbenchRouter).navigate({component: 'devtools', vendor: 'scion'}); ``` closes #45
- Loading branch information
1 parent
b424647
commit bcc0718
Showing
3 changed files
with
96 additions
and
18 deletions.
There are no files selected for viewing
32 changes: 30 additions & 2 deletions
32
apps/microfrontend-platform-devtools/src/assets/manifest.json
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,4 +1,32 @@ | ||
{ | ||
"name": "SCION Microfrontend Platform DevTools", | ||
"baseUrl": "#" | ||
"name": "Developer Tools for SCION Microfrontend Platform", | ||
"baseUrl": "#", | ||
"capabilities": [ | ||
{ | ||
"type": "microfrontend", | ||
"qualifier": { | ||
"component": "devtools", | ||
"vendor": "scion" | ||
}, | ||
"private": false, | ||
"description": "Provides an overview of the installed micro applications, their intentions and capabilities, and shows dependencies between applications.", | ||
"properties": { | ||
"path": "" | ||
} | ||
}, | ||
{ | ||
"type": "view", | ||
"qualifier": { | ||
"component": "devtools", | ||
"vendor": "scion" | ||
}, | ||
"private": false, | ||
"description": "Provides an overview of the installed micro applications, their intentions and capabilities, and shows dependencies between applications.", | ||
"properties": { | ||
"path": "", | ||
"title": "Developer Tools", | ||
"heading": "SCION Microfrontend Platform" | ||
} | ||
} | ||
] | ||
} |
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