Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature branding aware configuration #2181

Merged
merged 29 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
91c90e9
Initial commit of branding aware application configuration.
andrewbrazzatti Aug 23, 2022
8c2b56f
Added rest api endpoints to managed app config
andrewbrazzatti Aug 23, 2022
0a500af
Merge branch 'develop' into feature-branding-aware-configuration
andrewbrazzatti Aug 26, 2022
a88b3c1
Merge branch 'develop' into feature-branding-aware-configuration
andrewbrazzatti Aug 26, 2022
9838a54
Removed no longer required jquery and bootstrap css resources
andrewbrazzatti Aug 26, 2022
6df51e0
Added config service functionality to support branded app configuration
andrewbrazzatti Aug 26, 2022
7233e78
Merge branch 'develop' into feature-branding-aware-configuration
andrewbrazzatti Feb 20, 2024
713d787
Merged new functionality from develop branch
andrewbrazzatti Feb 20, 2024
5c9b845
Merge branch 'develop' into feature-branding-aware-configuration
andrewbrazzatti Feb 20, 2024
bcafa76
Initial commit of the app config application that uses formly to rend…
andrewbrazzatti Feb 22, 2024
b541028
Added support for self service maintenance of the system message disp…
andrewbrazzatti Feb 27, 2024
7dee097
Added app config screen to show the angular app
andrewbrazzatti Feb 28, 2024
1415d28
Merge branch 'develop' into feature-branding-aware-configuration
andrewbrazzatti Mar 13, 2024
03ac0b1
Fixed package locks
andrewbrazzatti Mar 13, 2024
e56dc5f
Merge branch 'develop' into feature-branding-aware-configuration
andrewbrazzatti May 15, 2024
b477af7
Fixed angular package dependencies post merge
andrewbrazzatti May 15, 2024
5b3cf80
Added status messages to form and link to modify system messages to t…
andrewbrazzatti May 16, 2024
817eb5f
Added testing for the Sails service
andrewbrazzatti May 17, 2024
45d2778
Fixed test syntax
andrewbrazzatti May 17, 2024
72723b6
Tidied angular component and added tests
andrewbrazzatti May 17, 2024
d7a2dbe
Fixed issue where it wouldn't load default model config
andrewbrazzatti May 17, 2024
d11391f
Added tests for the AppConfigController
andrewbrazzatti May 17, 2024
bb87c2d
Added rest api endpoints
andrewbrazzatti May 18, 2024
501bdf4
Added new web service routes
andrewbrazzatti May 18, 2024
00b02e9
Fixed update config endpoint and tests
andrewbrazzatti May 20, 2024
780ff38
Added types to function signatures
andrewbrazzatti May 20, 2024
beceee8
Merge branch 'develop' into feature-branding-aware-configuration
andrewbrazzatti May 21, 2024
aa2a384
Rolled back to angular 17.3.8
andrewbrazzatti May 21, 2024
715dd87
Reinstated version Angular 17.3.9
andrewbrazzatti May 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,4 @@ support/raido/dist
support/raido/*.tgz
angular/.angular/cache/

api/configmodels/*
98 changes: 98 additions & 0 deletions angular/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -722,6 +722,104 @@
}
}
},
"@researchdatabox/app-config": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "projects/researchdatabox/app-config",
"sourceRoot": "projects/researchdatabox/app-config/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "../assets/angular/app-config",
"index": "projects/researchdatabox/app-config/src/index.html",
"main": "projects/researchdatabox/app-config/src/main.ts",
"polyfills": [
"zone.js"
],
"tsConfig": "projects/researchdatabox/app-config/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"projects/researchdatabox/app-config/src/favicon.ico",
"projects/researchdatabox/app-config/src/assets"
],
"styles": [
"projects/researchdatabox/app-config/src/styles.scss"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "@researchdatabox/app-config:build:production"
},
"development": {
"buildTarget": "@researchdatabox/app-config:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "@researchdatabox/app-config:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"karmaConfig": "projects/researchdatabox/app-config/karma.conf.js",
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "projects/researchdatabox/app-config/tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"assets": [
"projects/researchdatabox/app-config/src/favicon.ico",
"projects/researchdatabox/app-config/src/assets"
],
"styles": [
"projects/researchdatabox/app-config/src/styles.scss"
],
"scripts": []
}
}
}
},
"@researchdatabox/portal-ng-form-custom": {
"projectType": "library",
"root": "../../portal-ng-form-custom/projects/researchdatabox/portal-ng-form-custom",
Expand Down
Loading
Loading