Skip to content

Commit

Permalink
Updates components in the root of the components directory to the com…
Browse files Browse the repository at this point in the history
…position API (#170)

* Updates about page to composition API

* Updates AASViewer component to composition API

* Moves toDisplay functions to ReferableUtils

* Updates MainWindow component to composition API

* Updates SubmodelElementView to composition API

* Updates ComponentVisualization component to composition API

* Updates AASTreeview component to composition API

* Updates SubmodelList component to composition API
  • Loading branch information
aaronzi authored Dec 20, 2024
1 parent f660613 commit 262eaa2
Show file tree
Hide file tree
Showing 26 changed files with 1,232 additions and 1,408 deletions.
6 changes: 6 additions & 0 deletions aas-web-ui/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@
} else if (currentRouteName === 'ComponentVisualization' && aasEndpoint && submodelElementPath) {
// Redirect to 'ComponentVisualization' with 'aas' and 'path' parameters
router.push({ name: 'ComponentVisualization', query: { aas: aasEndpoint, path: submodelElementPath } });
} else if (currentRouteName === 'About') {
// Stay on 'About'
router.push({ name: 'About' });
} else {
// Redirect to 'AASList' without query parameters
router.push({ name: 'AASList' });
Expand All @@ -124,6 +127,9 @@
} else if (currentRouteName === 'AASViewer') {
// Stay on 'AASViewer' but update query parameters
router.push({ name: 'AASViewer', query });
} else if (currentRouteName === 'About') {
// Stay on 'About'
router.push({ name: 'About' });
} else {
// Default to 'MainWindow' with query parameters
router.push({ name: 'MainWindow', query });
Expand Down
Binary file removed aas-web-ui/src/assets/ARENA2036_Logo_dark.png
Binary file not shown.
Binary file removed aas-web-ui/src/assets/ARENA2036_Logo_light.png
Binary file not shown.
39 changes: 39 additions & 0 deletions aas-web-ui/src/assets/Companies/ARENA2036_Logo_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 39 additions & 0 deletions aas-web-ui/src/assets/Companies/ARENA2036_Logo_light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions aas-web-ui/src/assets/Companies/BaSyx_Logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Loading

0 comments on commit 262eaa2

Please sign in to comment.