-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
author Christopher Collin Løkken <[email protected]> 1696330210 +0200 committer Christopher Collin Løkken <[email protected]> 1696489620 +0200 feat: Example application with role selector and role filter
- Loading branch information
1 parent
6e98a92
commit 09428bf
Showing
16 changed files
with
152 additions
and
112 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
11 changes: 11 additions & 0 deletions
11
example/app/data/DemoDataSource/apps/ExampleApplication/ExampleApplication.entity.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"_id": "example-application-id", | ||
"name": "ExampleApplication", | ||
"type": "/apps/ExampleApplication/blueprints/ExampleApplication", | ||
"label": "Example Application", | ||
"dataSources": [ | ||
"DemoDataSource", | ||
"system", | ||
"WorkflowDS" | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
.../data/DemoDataSource/apps/ExampleApplication/blueprints/ExampleApplication.blueprint.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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "ExampleApplication", | ||
"type": "CORE:Blueprint", | ||
"extends": [ | ||
"CORE:Application" | ||
], | ||
"attributes": [ | ||
{ | ||
"name": "label", | ||
"type": "CORE:BlueprintAttribute", | ||
"attributeType": "string", | ||
"optional": true | ||
}, | ||
{ | ||
"name": "dataSources", | ||
"type": "CORE:BlueprintAttribute", | ||
"attributeType": "string", | ||
"dimensions": "*", | ||
"optional": false | ||
} | ||
] | ||
} |
24 changes: 24 additions & 0 deletions
24
...le/app/data/DemoDataSource/recipes/apps/ExampleApplication/ExampleApplication.recipe.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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"type": "CORE:RecipeLink", | ||
"_blueprintPath_": "/apps/ExampleApplication/blueprints/ExampleApplication", | ||
"initialUiRecipe": { | ||
"name": "Header", | ||
"type": "CORE:UiRecipe", | ||
"plugin": "@development-framework/dm-core-plugins/header", | ||
"config": { | ||
"type": "PLUGINS:dm-core-plugins/header/HeaderPluginConfig", | ||
"uiRecipesList": [ | ||
"ExampleApplication" | ||
], | ||
"hideAbout": false, | ||
"hideUserInfo": false | ||
} | ||
}, | ||
"uiRecipes": [ | ||
{ | ||
"name": "ExampleApplication", | ||
"type": "CORE:UiRecipe", | ||
"plugin": "@development-framework/dm-core-plugins/explorer" | ||
} | ||
] | ||
} |
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
Oops, something went wrong.