@eui/cli 21.0.0-alpha.3 → 21.0.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.version.properties +1 -0
- package/bin/eui-cli.js +47 -0
- package/lib/build.js +155 -0
- package/lib/cli.js +123 -0
- package/lib/config.js +58 -0
- package/lib/generators.js +75 -0
- package/lib/install.js +45 -0
- package/lib/maven-build/build.xml +115 -0
- package/lib/maven-build/lib/ant-contrib-20061014.jar +0 -0
- package/lib/maven-build/pom.xml +64 -0
- package/lib/post-build.js +33 -0
- package/lib/skeletons/_angular/base/.browserslistrc +16 -0
- package/lib/skeletons/_angular/base/.editorconfig +16 -0
- package/lib/skeletons/_angular/base/.euirc.json +8 -0
- package/lib/skeletons/_angular/base/README.md +26 -0
- package/lib/skeletons/_angular/base/angular.json +158 -0
- package/lib/skeletons/_angular/base/gitignore_TO_REPLACE +51 -0
- package/lib/skeletons/_angular/base/mock/app/models/user.js +6 -0
- package/lib/skeletons/_angular/base/mock/app/routes/index.js +5 -0
- package/lib/skeletons/_angular/base/mock/app/routes/user_routes.js +44 -0
- package/lib/skeletons/_angular/base/mock/db/db.json +10 -0
- package/lib/skeletons/_angular/base/mock/server.js +23 -0
- package/lib/skeletons/_angular/base/package.json +38 -0
- package/lib/skeletons/_angular/base/proxy-mock.conf.json +6 -0
- package/lib/skeletons/_angular/base/proxy.conf.json +6 -0
- package/lib/skeletons/_angular/base/src/.eslintrc.json +121 -0
- package/lib/skeletons/_angular/base/src/app/app-starter.service.spec.ts +68 -0
- package/lib/skeletons/_angular/base/src/app/app-starter.service.ts +68 -0
- package/lib/skeletons/_angular/base/src/app/app.component.html +35 -0
- package/lib/skeletons/_angular/base/src/app/app.component.spec.ts +60 -0
- package/lib/skeletons/_angular/base/src/app/app.component.ts +35 -0
- package/lib/skeletons/_angular/base/src/app/app.config.ts +84 -0
- package/lib/skeletons/_angular/base/src/app/app.routes.ts +9 -0
- package/lib/skeletons/_angular/base/src/app/features/home/home.component.html +41 -0
- package/lib/skeletons/_angular/base/src/app/features/home/home.component.ts +17 -0
- package/lib/skeletons/_angular/base/src/app/features/home/home.routes.ts +6 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/components/page1/page1.component.html +7 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/components/page1/page1.component.ts +10 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/components/page2/page2.component.html +7 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/components/page2/page2.component.ts +10 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/module1.component.html +7 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/module1.component.ts +10 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/module1.routes.ts +10 -0
- package/lib/skeletons/_angular/base/src/app/features/module2/module2.component.html +7 -0
- package/lib/skeletons/_angular/base/src/app/features/module2/module2.component.ts +10 -0
- package/lib/skeletons/_angular/base/src/app/features/module2/module2.routes.ts +6 -0
- package/lib/skeletons/_angular/base/src/app/shared/testing/router.mock.ts +18 -0
- package/lib/skeletons/_angular/base/src/assets/config/env-json-config-dev.json +8 -0
- package/lib/skeletons/_angular/base/src/assets/config/env-json-config-prod.json +8 -0
- package/lib/skeletons/_angular/base/src/assets/config/env-json-config.json +7 -0
- package/lib/skeletons/_angular/base/src/assets/i18n/en.json +7 -0
- package/lib/skeletons/_angular/base/src/assets/i18n/fr.json +7 -0
- package/lib/skeletons/_angular/base/src/config/global.ts +33 -0
- package/lib/skeletons/_angular/base/src/config/index.ts +8 -0
- package/lib/skeletons/_angular/base/src/config/modules.ts +7 -0
- package/lib/skeletons/_angular/base/src/dummy.spec.ts +6 -0
- package/lib/skeletons/_angular/base/src/environments/environment.prod.ts +11 -0
- package/lib/skeletons/_angular/base/src/environments/environment.ts +15 -0
- package/lib/skeletons/_angular/base/src/favicon.ico +0 -0
- package/lib/skeletons/_angular/base/src/index.html +20 -0
- package/lib/skeletons/_angular/base/src/karma.conf.js +7 -0
- package/lib/skeletons/_angular/base/src/main.ts +20 -0
- package/lib/skeletons/_angular/base/src/styles.scss +1 -0
- package/lib/skeletons/_angular/base/src/tsconfig.app.json +18 -0
- package/lib/skeletons/_angular/base/src/tsconfig.spec.json +14 -0
- package/lib/skeletons/_angular/base/tsconfig.json +27 -0
- package/lib/skeletons/_angular/base-mobile/angular.json +156 -0
- package/lib/skeletons/_angular/base-mobile/ionic.config.json +5 -0
- package/lib/skeletons/_angular/base-mobile/ngsw-config.json +33 -0
- package/lib/skeletons/_angular/base-mobile/package.json +27 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app-routing.module.ts +18 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app-starter.service.ts +73 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app.component.html +47 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app.component.ts +81 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app.config.ts +81 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app.module.ts +44 -0
- package/lib/skeletons/_angular/base-mobile/src/app/core/components/.gitkeep +0 -0
- package/lib/skeletons/_angular/base-mobile/src/app/core/core.module.ts +89 -0
- package/lib/skeletons/_angular/base-mobile/src/app/core/reducers/index.ts +32 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about-routing.module.ts +45 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.component.html +70 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.component.ts +19 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.module.ts +30 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/change-log/changelog.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/change-log/changelog.component.ts +102 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/help-support/help-support.component.html +20 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/help-support/help-support.component.ts +75 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/legal-notice/legal-notice.component.html +12 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/legal-notice/legal-notice.component.ts +8 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/licence-details/licence-details.component.html +48 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/licence-details/licence-details.component.ts +7 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/opensource-licences/opensource-licences.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/opensource-licences/opensource-licences.component.ts +31 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/privacy-statement/privacy-statement.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/privacy-statement/privacy-statement.component.ts +103 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home-routing.module.ts +15 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.component.ts +9 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.module.ts +18 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page1/page1.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page1/page1.component.ts +8 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page2/page2.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page2/page2.component.ts +8 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1-routing.module.ts +18 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.component.html +15 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.component.ts +17 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.module.ts +21 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2-routing.module.ts +16 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.component.ts +7 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.module.ts +17 -0
- package/lib/skeletons/_angular/base-mobile/src/app/shared/shared.module.ts +16 -0
- package/lib/skeletons/_angular/base-mobile/src/app/shared/testing/router.mock.ts +18 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/docs/pdf-test.pdf +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/i18n/en.json +25 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/i18n/es.json +24 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/i18n/fr.json +25 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/i18n/tr.json +25 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-1024.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-114.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-120.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-128.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-144.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-152.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-16.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-180.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-192.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-32.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-36.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-384.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-48.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-512.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-57.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-60.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-72.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-76.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-96.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1125-2436.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1170-2532.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1179-2556.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1242-2208.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1242-2688.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1284-2778.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1290-2796.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1488-2266.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1536-2048.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1620-2160.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1640-2360.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1668-2224.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1668-2388.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-2048-2732.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-640-1136.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-750-1334.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-828-1792.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1125-2436.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1170-2532.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1179-2556.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1242-2208.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1242-2688.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1284-2778.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1290-2796.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1488-2266.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1536-2048.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1620-2160.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1640-2360.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1668-2224.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1668-2388.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-2048-2732.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-640-1136.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-750-1334.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-828-1792.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/images/app-icon.svg +10 -0
- package/lib/skeletons/_angular/base-mobile/src/config/global.ts +39 -0
- package/lib/skeletons/_angular/base-mobile/src/config/index.ts +8 -0
- package/lib/skeletons/_angular/base-mobile/src/config/modules.ts +7 -0
- package/lib/skeletons/_angular/base-mobile/src/index.html +76 -0
- package/lib/skeletons/_angular/base-mobile/src/main.ts +23 -0
- package/lib/skeletons/_angular/base-mobile/src/manifest.webmanifest +66 -0
- package/lib/skeletons/_angular/base-mobile/src/tsconfig.app.json +20 -0
- package/lib/skeletons/_angular/options/ecl-ec/angular.json +181 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/app.component.html +237 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/app.component.ts +65 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/app.config.ts +84 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/home/home.component.html +71 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/home/home.component.ts +20 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/components/page1/page1.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/components/page1/page1.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/components/page2/page2.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/components/page2/page2.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/module1.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/module1.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module2/module2.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module2/module2.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/config/global.ts +23 -0
- package/lib/skeletons/_angular/options/ecl-eu/angular.json +181 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.component.html +203 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.component.ts +65 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.config.ts +84 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/home/home.component.html +71 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/home/home.component.ts +20 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/components/page1/page1.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/components/page1/page1.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/components/page2/page2.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/components/page2/page2.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/module1.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/module1.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module2/module2.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module2/module2.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/shared/shared.module.ts +19 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/config/global.ts +23 -0
- package/lib/skeletons/web-maven/package.json +17 -0
- package/lib/skeletons/web-maven/pom.xml +55 -0
- package/lib/skeletons/web-maven/src/main/java/eu/europa/ec/digit/eui/angular2clistarter/servlet/SpringWebApplicationInitializer.java +22 -0
- package/lib/skeletons/web-maven/src/main/java/eu/europa/ec/digit/eui/angular2clistarter/spring/SpringRestConfiguration.java +24 -0
- package/lib/skeletons/web-maven/src/main/java/eu/europa/ec/digit/eui/angular2clistarter/spring/rest/UserDetailsResource.java +23 -0
- package/lib/skeletons/web-maven/src/main/resources/ecas-config-application-name.xml +7 -0
- package/lib/skeletons/web-maven/src/main/webapp/WEB-INF/dispatcher-servlet.xml +11 -0
- package/lib/skeletons/web-maven/src/main/webapp/WEB-INF/web.xml +38 -0
- package/lib/skeletons/web-maven/src/main/webapp/WEB-INF/weblogic.xml +16 -0
- package/lib/skeletons/web-maven/src/main/webapp/index.jsp +30 -0
- package/lib/skeletons/web-spring-boot/myapp-web/pom.xml +83 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/pom.xml +83 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/MyappApplication.java +46 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/domain/Address.java +65 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/domain/Building.java +44 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/repositories/BuildingRepository.java +11 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/BuildingResource.java +26 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/SwaggerConfig.java +16 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/support/HateoasPageableHandlerMethodArgumentResolver.java +45 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/support/HypermediaSupport.java +25 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/support/PageJsonSerializer.java +17 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/CachingPreventionFilter.java +29 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/CsrfPreventionFilter.java +35 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/FakeAuthenticationFilter.java +372 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/SecurityConfig.java +47 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/services/BuildingSearchCriteria.java +26 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/services/BuildingService.java +10 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/services/BuildingServiceImpl.java +26 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/resources/application.properties +0 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/resources/data.sql +11 -0
- package/lib/skeletons/web-spring-boot/pom.xml +30 -0
- package/lib/skeletons/web-symfony/myapp-web/angular.json +169 -0
- package/lib/skeletons/web-symfony/myapp-web/package.json +23 -0
- package/lib/skeletons/web-symfony/myapp-web/src/app/app-routing.module.ts +18 -0
- package/lib/skeletons/web-symfony/myapp-web/src/app/app.component.ts +77 -0
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/components/products.component.html +160 -0
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/components/products.component.scss +0 -0
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/components/products.component.ts +104 -0
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/models/product.model.ts +6 -0
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/products-routing.module.ts +16 -0
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/products.module.ts +16 -0
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/services/products.service.ts +29 -0
- package/lib/skeletons/web-symfony/myapp-web/src/environments/environment.ts +17 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/.env +28 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/bin/console +42 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/composer.json +67 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/composer.lock +3572 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/bootstrap.php +21 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/bundles.php +12 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/config.yml +0 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/cache.yaml +19 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/dev/routing.yaml +3 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/doctrine.yaml +29 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/doctrine_migrations.yaml +5 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/framework.yaml +17 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/prod/doctrine.yaml +32 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/routing.yaml +4 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/sensio_framework_extra.yaml +3 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/test/framework.yaml +4 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/test/routing.yaml +3 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/twig.yaml +4 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/routes/annotations.yaml +3 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/routes/dev/twig.yaml +3 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/routes.yaml +3 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/config/services.yaml +27 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/public/index.php +27 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/src/Controller/ProductController.php +196 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/src/Entity/Product.php +99 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/src/Kernel.php +53 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/src/Migrations/Version20190604101623.php +31 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/src/Migrations/Version20190604101638.php +35 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/src/Repository/ProductRepository.php +51 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/symfony.lock +274 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/templates/base.html.twig +12 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/templates/lucky/number.html.twig +1 -0
- package/lib/skeletons/web-symfony/myapp-web-rest/templates/product/index.html.twig +20 -0
- package/lib/utils.js +13 -0
- package/package.json +1 -1
- package/sonar-project.properties +14 -0
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
3
|
+
import { StoreModule } from '@ngrx/store';
|
|
4
|
+
import { EffectsModule } from '@ngrx/effects';
|
|
5
|
+
import { StoreDevtoolsModule } from '@ngrx/store-devtools';
|
|
6
|
+
|
|
7
|
+
import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
|
|
8
|
+
|
|
9
|
+
import { IonicModule } from '@ionic/angular';
|
|
10
|
+
|
|
11
|
+
import {
|
|
12
|
+
CachePreventionInterceptor,
|
|
13
|
+
CorsSecurityInterceptor,
|
|
14
|
+
CsrfPreventionInterceptor,
|
|
15
|
+
EuLoginSessionTimeoutHandlingInterceptor,
|
|
16
|
+
CoreModule as EuiCoreModule,
|
|
17
|
+
translateConfig,
|
|
18
|
+
CoreModuleEffects,
|
|
19
|
+
EUI_CONFIG_TOKEN,
|
|
20
|
+
} from '@eui/core';
|
|
21
|
+
|
|
22
|
+
import { appConfig } from '../../config/index';
|
|
23
|
+
import { environment } from '../../environments/environment';
|
|
24
|
+
|
|
25
|
+
import { REDUCER_TOKEN, getReducers, metaReducers } from './reducers/index';
|
|
26
|
+
|
|
27
|
+
import { SharedModule } from '@shared/shared.module';
|
|
28
|
+
|
|
29
|
+
@NgModule({
|
|
30
|
+
imports: [
|
|
31
|
+
HttpClientModule,
|
|
32
|
+
SharedModule,
|
|
33
|
+
EuiCoreModule.forRoot(),
|
|
34
|
+
EffectsModule.forRoot([...CoreModuleEffects]),
|
|
35
|
+
TranslateModule.forRoot(translateConfig),
|
|
36
|
+
StoreModule.forRoot(),
|
|
37
|
+
StoreModule.forRoot(REDUCER_TOKEN, { metaReducers }),
|
|
38
|
+
!environment.production ? StoreDevtoolsModule.instrument({ maxAge: 50 }) : [],
|
|
39
|
+
IonicModule.forRoot({mode: 'md'}),
|
|
40
|
+
],
|
|
41
|
+
declarations: [
|
|
42
|
+
],
|
|
43
|
+
exports: [
|
|
44
|
+
SharedModule,
|
|
45
|
+
],
|
|
46
|
+
providers: [
|
|
47
|
+
{
|
|
48
|
+
provide: REDUCER_TOKEN,
|
|
49
|
+
deps: [],
|
|
50
|
+
useFactory: getReducers,
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
provide: EUI_CONFIG_TOKEN,
|
|
54
|
+
useValue: { appConfig: appConfig, environment: environment }
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
// Sets the withCredentials on Ajax Request to send the JSESSIONID cookie to another domain.
|
|
58
|
+
// This is necessary when a request is being made to another domain that is protected by EU Login.
|
|
59
|
+
provide: HTTP_INTERCEPTORS,
|
|
60
|
+
useClass: CorsSecurityInterceptor,
|
|
61
|
+
multi: true,
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
// When the authentication session is invalid, we need to re-authenticate. The browser refreshes the current URL,
|
|
65
|
+
// and lets the EU Login client redirect to the official EU Login page.
|
|
66
|
+
provide: HTTP_INTERCEPTORS,
|
|
67
|
+
useClass: EuLoginSessionTimeoutHandlingInterceptor,
|
|
68
|
+
multi: true,
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
// Adds HTTP header to each Ajax request that ensures the request is set by a piece of JavaScript code in the application.
|
|
72
|
+
// This prevents dynamically-loaded content from forging a request in the name of the currently logged-in user.
|
|
73
|
+
// Be aware that this assumes that cross-site scripting (XSS) is already put in place, (default setting in Angular).
|
|
74
|
+
provide: HTTP_INTERCEPTORS,
|
|
75
|
+
useClass: CsrfPreventionInterceptor,
|
|
76
|
+
multi: true,
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
// Asks the intermediate proxies not to return a cache copy of the resource.
|
|
80
|
+
// In matter of fact forces each server in the chain to validate the freshness of the resource.
|
|
81
|
+
provide: HTTP_INTERCEPTORS,
|
|
82
|
+
useClass: CachePreventionInterceptor,
|
|
83
|
+
multi: true,
|
|
84
|
+
},
|
|
85
|
+
]
|
|
86
|
+
})
|
|
87
|
+
export class CoreModule {
|
|
88
|
+
|
|
89
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { MetaReducer } from '@ngrx/store';
|
|
3
|
+
import { storeFreeze } from 'ngrx-store-freeze';
|
|
4
|
+
import { reducers as coreReducers, localStorageSync } from '@eui/core';
|
|
5
|
+
import { CoreState, getAppState } from '@eui/core';
|
|
6
|
+
|
|
7
|
+
import { environment } from '../../../environments/environment';
|
|
8
|
+
|
|
9
|
+
export const REDUCER_TOKEN = new InjectionToken<any>('Registered Reducers');
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Define here your app state
|
|
13
|
+
*
|
|
14
|
+
* [IMPORTANT]
|
|
15
|
+
* There are some **reserved** slice of the state
|
|
16
|
+
* that you **can not** use in your application ==> app |user | notification
|
|
17
|
+
*/
|
|
18
|
+
// eslint-disable-next-line
|
|
19
|
+
export interface AppState extends CoreState {
|
|
20
|
+
// [key: string]: fromTaskManager.State | any;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Define here the reducers of your app
|
|
25
|
+
*/
|
|
26
|
+
const rootReducer = Object.assign({}, coreReducers, {
|
|
27
|
+
// [fromTaskManager.namespace]: fromTaskManager.reducers,
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
export const getReducers = () => rootReducer;
|
|
31
|
+
|
|
32
|
+
export const metaReducers: MetaReducer<AppState>[] = !environment.production ? [localStorageSync, storeFreeze] : [localStorageSync];
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { RouterModule, Routes } from '@angular/router';
|
|
3
|
+
import { AboutComponent } from './about.component';
|
|
4
|
+
import { ChangeLogComponent } from './change-log/changelog.component';
|
|
5
|
+
import { PrivacystatementComponent } from './privacy-statement/privacy-statement.component';
|
|
6
|
+
import { LegalNoticeComponent } from './legal-notice/legal-notice.component';
|
|
7
|
+
import { HelpSupportComponent } from './help-support/help-support.component';
|
|
8
|
+
import { OpensourceLicencesComponent } from './opensource-licences/opensource-licences.component';
|
|
9
|
+
import { LicenceDetailsComponent } from './licence-details/licence-details.component';
|
|
10
|
+
|
|
11
|
+
const routes: Routes = [
|
|
12
|
+
{
|
|
13
|
+
path: '',
|
|
14
|
+
component: AboutComponent,
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
path: 'change-log',
|
|
18
|
+
component: ChangeLogComponent
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
path: 'privacy-statement',
|
|
22
|
+
component: PrivacystatementComponent
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
path: 'legal-notice',
|
|
26
|
+
component: LegalNoticeComponent
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
path: 'help-support',
|
|
30
|
+
component: HelpSupportComponent
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
path: 'opensource-licences',
|
|
34
|
+
component: OpensourceLicencesComponent,
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
path: 'opensource-licences/licence-details',
|
|
38
|
+
component: LicenceDetailsComponent
|
|
39
|
+
},
|
|
40
|
+
];
|
|
41
|
+
|
|
42
|
+
@NgModule({
|
|
43
|
+
imports: [RouterModule.forChild(routes)],
|
|
44
|
+
})
|
|
45
|
+
export class AboutRoutingModule {}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar>
|
|
4
|
+
<euim-toolbar-title>{{ 'euim.about.text' | translate }}</euim-toolbar-title>
|
|
5
|
+
<euim-toolbar-action-items>
|
|
6
|
+
<ion-button>
|
|
7
|
+
<ion-label class="eui-u-mr-m" (click)="toggleQRCode()" slot="end">
|
|
8
|
+
<strong>
|
|
9
|
+
@if (showCode) {
|
|
10
|
+
{{ 'euim.about.hide.qrcode' | translate }}
|
|
11
|
+
}
|
|
12
|
+
@if (!showCode) {
|
|
13
|
+
{{ 'euim.about.show.qrcode' | translate }}
|
|
14
|
+
}
|
|
15
|
+
</strong>
|
|
16
|
+
</ion-label>
|
|
17
|
+
</ion-button>
|
|
18
|
+
</euim-toolbar-action-items>
|
|
19
|
+
</euim-toolbar>
|
|
20
|
+
</ion-toolbar>
|
|
21
|
+
|
|
22
|
+
<euim-header-details color="branding">
|
|
23
|
+
<div euimHeaderDetailsIcon>
|
|
24
|
+
<euim-toolbar-qrcode [showCode]="showCode" logoUrl="./assets/images/app-icon.svg"
|
|
25
|
+
qrCodeUrl="https://github.com/Cordobo/angularx-qrcode"></euim-toolbar-qrcode>
|
|
26
|
+
</div>
|
|
27
|
+
<div euimHeaderDetailsTitle><strong>eUI / mobile</strong></div>
|
|
28
|
+
<div euimHeaderDetailsMeta>{{'euim.about.version' | translate }} 1.2.0</div>
|
|
29
|
+
<div euimHeaderDetailsMeta>{{ 'euim.about.builton' | translate }} 12.03.2024, 16:30</div>
|
|
30
|
+
</euim-header-details>
|
|
31
|
+
</ion-header>
|
|
32
|
+
<ion-content>
|
|
33
|
+
<euim-about>
|
|
34
|
+
<ion-list>
|
|
35
|
+
<ion-list-header>
|
|
36
|
+
<ion-label>{{ 'euim.aboutapp.text' | translate }}</ion-label>
|
|
37
|
+
</ion-list-header>
|
|
38
|
+
<ion-item button (click)="onNavigate('/screen/about/change-log')">
|
|
39
|
+
<ion-icon name="build-outline" slot="start"></ion-icon>
|
|
40
|
+
<ion-label>
|
|
41
|
+
<div euimLabel>{{'euim.about.changelog' | translate }}</div>
|
|
42
|
+
</ion-label>
|
|
43
|
+
</ion-item>
|
|
44
|
+
<ion-item button (click)="onNavigate('/screen/about/privacy-statement')">
|
|
45
|
+
<ion-icon name="finger-print-sharp" slot="start"></ion-icon>
|
|
46
|
+
<ion-label>
|
|
47
|
+
<div euimLabel>{{'euim.about.privacy.statement' | translate }}</div>
|
|
48
|
+
</ion-label>
|
|
49
|
+
</ion-item>
|
|
50
|
+
<ion-item button (click)="onNavigate('/screen/about/opensource-licences')">
|
|
51
|
+
<ion-icon name="ribbon-outline" slot="start"></ion-icon>
|
|
52
|
+
<ion-label>
|
|
53
|
+
<div euimLabel>{{'euim.about.opensource.licences' | translate }}</div>
|
|
54
|
+
</ion-label>
|
|
55
|
+
</ion-item>
|
|
56
|
+
<ion-item button (click)="onNavigate('/screen/about/legal-notice')">
|
|
57
|
+
<ion-icon name="library-outline" slot="start"></ion-icon>
|
|
58
|
+
<ion-label>
|
|
59
|
+
<div euimLabel>{{'euim.about.legal.notice' | translate }}</div>
|
|
60
|
+
</ion-label>
|
|
61
|
+
</ion-item>
|
|
62
|
+
<ion-item button (click)="onNavigate('/screen/about/help-support')">
|
|
63
|
+
<ion-icon name="mail-outline" slot="start"></ion-icon>
|
|
64
|
+
<ion-label>
|
|
65
|
+
<div euimLabel>{{'euim.about.help.support' | translate }}</div>
|
|
66
|
+
</ion-label>
|
|
67
|
+
</ion-item>
|
|
68
|
+
</ion-list>
|
|
69
|
+
</euim-about>
|
|
70
|
+
</ion-content>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { NavController } from '@ionic/angular';
|
|
3
|
+
|
|
4
|
+
@Component({
|
|
5
|
+
templateUrl: './about.component.html'
|
|
6
|
+
})
|
|
7
|
+
export class AboutComponent {
|
|
8
|
+
showCode = false;
|
|
9
|
+
|
|
10
|
+
constructor(
|
|
11
|
+
private navCtrl: NavController,
|
|
12
|
+
) {}
|
|
13
|
+
toggleQRCode(): void {
|
|
14
|
+
this.showCode = !this.showCode;
|
|
15
|
+
}
|
|
16
|
+
onNavigate(url: string) {
|
|
17
|
+
this.navCtrl.navigateForward(url);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { AboutRoutingModule } from './about-routing.module';
|
|
3
|
+
import { AboutComponent } from './about.component';
|
|
4
|
+
import { ChangeLogComponent } from './change-log/changelog.component';
|
|
5
|
+
import { LicenceDetailsComponent } from './licence-details/licence-details.component';
|
|
6
|
+
import { PrivacystatementComponent } from './privacy-statement/privacy-statement.component';
|
|
7
|
+
import { LegalNoticeComponent } from './legal-notice/legal-notice.component';
|
|
8
|
+
import { HelpSupportComponent } from './help-support/help-support.component';
|
|
9
|
+
import { OpensourceLicencesComponent } from './opensource-licences/opensource-licences.component';
|
|
10
|
+
import { SharedModule } from '@shared/shared.module';
|
|
11
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
12
|
+
|
|
13
|
+
@NgModule({
|
|
14
|
+
imports: [
|
|
15
|
+
SharedModule,
|
|
16
|
+
AboutRoutingModule,
|
|
17
|
+
TranslateModule,
|
|
18
|
+
],
|
|
19
|
+
declarations: [
|
|
20
|
+
AboutComponent,
|
|
21
|
+
ChangeLogComponent,
|
|
22
|
+
PrivacystatementComponent,
|
|
23
|
+
LegalNoticeComponent,
|
|
24
|
+
HelpSupportComponent,
|
|
25
|
+
LicenceDetailsComponent,
|
|
26
|
+
OpensourceLicencesComponent
|
|
27
|
+
],
|
|
28
|
+
})
|
|
29
|
+
export class Module {
|
|
30
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar>
|
|
4
|
+
<euim-toolbar-title>{{ 'euim.about.changelog' | translate }}</euim-toolbar-title>
|
|
5
|
+
</euim-toolbar>
|
|
6
|
+
</ion-toolbar>
|
|
7
|
+
</ion-header>
|
|
8
|
+
<ion-content>
|
|
9
|
+
<euim-changelog [changeLogs]="changeLogs">
|
|
10
|
+
</euim-changelog>
|
|
11
|
+
</ion-content>
|
package/lib/skeletons/_angular/base-mobile/src/app/features/about/change-log/changelog.component.ts
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
@Component({
|
|
3
|
+
templateUrl: './changelog.component.html'
|
|
4
|
+
})
|
|
5
|
+
export class ChangeLogComponent {
|
|
6
|
+
changeLogs = [
|
|
7
|
+
{
|
|
8
|
+
version: 'v1.2.0',
|
|
9
|
+
sections: [
|
|
10
|
+
{
|
|
11
|
+
name: 'New features',
|
|
12
|
+
items: [
|
|
13
|
+
'Lorem ipsum sit amelor dot alersi',
|
|
14
|
+
'Addenadum, des ameliori dora cantine imaginum des cornes',
|
|
15
|
+
'Prioridari modulo EXANTI pero alumnides monitoro alere umo quorum pano',
|
|
16
|
+
],
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
name: 'Improvements',
|
|
20
|
+
items: [
|
|
21
|
+
'Nuevo funcciono uno',
|
|
22
|
+
'Apprenati koleos amedo del corossa',
|
|
23
|
+
'Aperanci todo formas y formulas',
|
|
24
|
+
],
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Bugfixes',
|
|
28
|
+
items: [
|
|
29
|
+
'Fixato lorem ipsum et amelori',
|
|
30
|
+
'Correctus magnus magnificus',
|
|
31
|
+
'Reparus extra petiti textus',
|
|
32
|
+
],
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
version: 'v1.1.2',
|
|
38
|
+
sections: [
|
|
39
|
+
{
|
|
40
|
+
name: 'New features',
|
|
41
|
+
items: [
|
|
42
|
+
'Lorem ipsum sit amelor dot alersi',
|
|
43
|
+
'Addenadum, des ameliori dora cantine imaginum des cornes',
|
|
44
|
+
'Prioridari modulo EXANTI pero alumnides monitoro alere umo quorum pano',
|
|
45
|
+
],
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Improvements',
|
|
49
|
+
items: [
|
|
50
|
+
'Nuevo funcciono uno',
|
|
51
|
+
],
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: 'Bugfixes',
|
|
55
|
+
items: [],
|
|
56
|
+
},
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
version: 'v1.1.0',
|
|
61
|
+
sections: [
|
|
62
|
+
{
|
|
63
|
+
name: 'New features',
|
|
64
|
+
items: [
|
|
65
|
+
'Home page',
|
|
66
|
+
'Main menu',
|
|
67
|
+
],
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Improvements',
|
|
71
|
+
items: [
|
|
72
|
+
'Nuevo funcciono uno',
|
|
73
|
+
],
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
name: 'Bugfixes',
|
|
77
|
+
items: [],
|
|
78
|
+
},
|
|
79
|
+
],
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
version: 'v1.0.1',
|
|
83
|
+
sections: [
|
|
84
|
+
{
|
|
85
|
+
name: 'New features',
|
|
86
|
+
items: [
|
|
87
|
+
'Initial version',
|
|
88
|
+
],
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
name: 'Improvements',
|
|
92
|
+
items: [],
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
name: 'bugfixes',
|
|
96
|
+
items: [],
|
|
97
|
+
},
|
|
98
|
+
],
|
|
99
|
+
},
|
|
100
|
+
];
|
|
101
|
+
|
|
102
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar>
|
|
4
|
+
<euim-toolbar-title>{{ 'euim.about.help.support' | translate }}</euim-toolbar-title>
|
|
5
|
+
</euim-toolbar>
|
|
6
|
+
|
|
7
|
+
<euim-alert-message color="branding">
|
|
8
|
+
<ion-icon name="person-circle" slotStart></ion-icon>
|
|
9
|
+
{{ alertInfos.title }}
|
|
10
|
+
|
|
11
|
+
<ion-button [href]="alertInfos.btnLink" slotEnd size="small" fill="outline">
|
|
12
|
+
<strong>{{ alertInfos.btnTitle }}</strong>
|
|
13
|
+
</ion-button>
|
|
14
|
+
</euim-alert-message>
|
|
15
|
+
</ion-toolbar>
|
|
16
|
+
</ion-header>
|
|
17
|
+
<ion-content>
|
|
18
|
+
<euim-help-support [helpAndSupportItems]="helpAndSupportItems">
|
|
19
|
+
</euim-help-support>
|
|
20
|
+
</ion-content>
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
|
|
3
|
+
@Component({
|
|
4
|
+
templateUrl: './help-support.component.html'
|
|
5
|
+
})
|
|
6
|
+
export class HelpSupportComponent {
|
|
7
|
+
alertInfos = {
|
|
8
|
+
icon: 'person-circle',
|
|
9
|
+
title: 'Looking for staff member?',
|
|
10
|
+
btnLink: '.',
|
|
11
|
+
btnTitle: 'FIND PERSON'
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
helpAndSupportItems = [
|
|
15
|
+
{
|
|
16
|
+
sectionTitle: 'CONTACT US',
|
|
17
|
+
items: [
|
|
18
|
+
{
|
|
19
|
+
title: '+352 123 45 67890',
|
|
20
|
+
phone: '+352 123 45 67890',
|
|
21
|
+
subtitle: 'Customer service',
|
|
22
|
+
startIcon: 'call',
|
|
23
|
+
hasBottomLine: true
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
title: '+32 123 45 67890',
|
|
27
|
+
phone: '+32 123 45 67890',
|
|
28
|
+
subtitle: 'Helpdesk support',
|
|
29
|
+
startIcon: 'call',
|
|
30
|
+
hasBottomLine: true
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
title: 'digit-eui-support@ec.europa.eu',
|
|
34
|
+
mail: 'digit-eui-support@ec.europa.eu',
|
|
35
|
+
subtitle: 'Helpdesk support',
|
|
36
|
+
startIcon: 'at',
|
|
37
|
+
hasBottomLine: true
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
title: 'EC Microsoft Teams',
|
|
41
|
+
link: 'https://teams.microsoft.com/l/channel/19%3a6db7a6cef52340eb91d67b8d75db2523%40thread.tacv2/%25E2%259D%2593%25E2%259D%2593%2520%2520HELPDESK%2520and%2520SUPPORT?groupId=fb6def72-c57b-4e8f-a82e-49be65d6e1f5&tenantId=b24c8b06-522c-46fe-9080-70926f8dddb1',
|
|
42
|
+
subtitle: 'Microsoft Teams helpdesk channel',
|
|
43
|
+
startIcon: 'people'
|
|
44
|
+
},
|
|
45
|
+
],
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
sectionTitle: 'SUPPORT MATERIALS',
|
|
49
|
+
items: [
|
|
50
|
+
{
|
|
51
|
+
title: 'eUI / mobile manual',
|
|
52
|
+
subtitle: 'Getting started with library',
|
|
53
|
+
link: 'https://euidev.ecdevops.eu/eui-showcase-mobile-18.x/home',
|
|
54
|
+
startIcon: 'book',
|
|
55
|
+
endIcon: 'link'
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
title: 'EU Login',
|
|
59
|
+
subtitle: 'User manual',
|
|
60
|
+
link: 'https://webgate.ec.europa.eu/cas/help.html',
|
|
61
|
+
startIcon: 'book',
|
|
62
|
+
endIcon: 'link'
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
title: 'FAQ',
|
|
66
|
+
subtitle: 'Frequently asked questions',
|
|
67
|
+
link: 'https://ec.europa.eu/sustainable-finance-taxonomy/faq',
|
|
68
|
+
startIcon: 'book',
|
|
69
|
+
endIcon: 'link'
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
}
|
|
73
|
+
];
|
|
74
|
+
|
|
75
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar>
|
|
4
|
+
<euim-toolbar-title>{{ 'euim.about.legal.notice' | translate }}</euim-toolbar-title>
|
|
5
|
+
</euim-toolbar>
|
|
6
|
+
</ion-toolbar>
|
|
7
|
+
</ion-header>
|
|
8
|
+
<ion-content>
|
|
9
|
+
<euim-about-content-loading>
|
|
10
|
+
<euim-pdf-viewer url="assets/docs/pdf-test.pdf"></euim-pdf-viewer>
|
|
11
|
+
</euim-about-content-loading>
|
|
12
|
+
</ion-content>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar>
|
|
4
|
+
<euim-toolbar-title>{{ 'euim.about.licence.details' | translate }}</euim-toolbar-title>
|
|
5
|
+
</euim-toolbar>
|
|
6
|
+
</ion-toolbar>
|
|
7
|
+
</ion-header>
|
|
8
|
+
<ion-content>
|
|
9
|
+
<euim-about-content-loading>
|
|
10
|
+
<p><strong>EUROPEAN UNION PUBLIC LICENCE v. 1.2</strong></p>
|
|
11
|
+
<p>
|
|
12
|
+
This European Union Public Licence (the ‘EUPL’) applies to the Work (as defined below) which is provided under the terms of this Licence. Any use of the Work, other than as authorised under this Licence is prohibited (to the extent such use is covered by a right of the copyright holder of the Work).
|
|
13
|
+
</p>
|
|
14
|
+
<p>
|
|
15
|
+
The Work is provided under the terms of this Licence when the Licensor (as defined below) has placed the following notice immediately following the copyright notice for the Work:
|
|
16
|
+
</p>
|
|
17
|
+
<p>
|
|
18
|
+
Licensed under the EUPL
|
|
19
|
+
|
|
20
|
+
or has expressed by any other means his willingness to license under the EUPL.
|
|
21
|
+
</p>
|
|
22
|
+
<p>
|
|
23
|
+
1. Definitions
|
|
24
|
+
In this Licence, the following terms have the following meaning:
|
|
25
|
+
<br><br>
|
|
26
|
+
— ‘The Licence’: this Licence.
|
|
27
|
+
<br><br>
|
|
28
|
+
— ‘The Original Work’: the work or software distributed or communicated by the Licensor under this Licence, available as Source Code and also as Executable Code as the case may be.
|
|
29
|
+
<br><br>
|
|
30
|
+
— ‘Derivative Works’: the works or software that could be created by the Licensee, based upon the Original Work or modifications thereof. This Licence does not define the extent of modification or dependence on the Original Work required in order to classify a work as a Derivative Work; this extent is determined by copyright law applicable in the country mentioned in Article 15.
|
|
31
|
+
<br><br>
|
|
32
|
+
— ‘The Work’: the Original Work or its Derivative Works.
|
|
33
|
+
<br><br>
|
|
34
|
+
— ‘The Source Code’: the human-readable form of the Work which is the most convenient for people to study and modify.
|
|
35
|
+
<br><br>
|
|
36
|
+
— ‘The Executable Code’: any code which has generally been compiled and which is meant to be interpreted by a computer as a program.
|
|
37
|
+
<br><br>
|
|
38
|
+
— ‘The Licensor’: the natural or legal person that distributes or communicates the Work under the Licence.
|
|
39
|
+
<br><br>
|
|
40
|
+
— ‘Contributor(s)’: any natural or legal person who modifies the Work under the Licence, or otherwise contributes to the creation of a Derivative Work.
|
|
41
|
+
<br><br>
|
|
42
|
+
— ‘The Licensee’ or ‘You’: any natural or legal person who makes any usage of the Work under the terms of the Licence.
|
|
43
|
+
<br><br>
|
|
44
|
+
— ‘Distribution’ or ‘Communication’: any act of selling, giving, lending, renting, distributing, communicating, transmitting, or otherwise making available, online or offline, copies of the Work or providing access to its essential functionalities at the disposal of any other natural or legal person.
|
|
45
|
+
</p>
|
|
46
|
+
|
|
47
|
+
</euim-about-content-loading>
|
|
48
|
+
</ion-content>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar>
|
|
4
|
+
<euim-toolbar-title>{{ 'euim.about.opensource.licences' | translate }}</euim-toolbar-title>
|
|
5
|
+
</euim-toolbar>
|
|
6
|
+
</ion-toolbar>
|
|
7
|
+
</ion-header>
|
|
8
|
+
<ion-content>
|
|
9
|
+
<euim-opensource-licences [items]="items" (clickItem)="onClickedItems($event)">
|
|
10
|
+
</euim-opensource-licences>
|
|
11
|
+
</ion-content>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { NavController } from '@ionic/angular';
|
|
3
|
+
|
|
4
|
+
@Component({
|
|
5
|
+
templateUrl: './opensource-licences.component.html'
|
|
6
|
+
})
|
|
7
|
+
export class OpensourceLicencesComponent {
|
|
8
|
+
constructor(
|
|
9
|
+
private navCtrl: NavController,
|
|
10
|
+
) {}
|
|
11
|
+
|
|
12
|
+
items = [
|
|
13
|
+
{ name: 'ionic-framework' },
|
|
14
|
+
{ name: 'angular-framework' },
|
|
15
|
+
{ name: 'swiper.js' },
|
|
16
|
+
{ name: 'ng2-pdf-viewer' },
|
|
17
|
+
{ name: 'file-saver' },
|
|
18
|
+
{ name: 'EUPL' },
|
|
19
|
+
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
onNavigate(url: string) {
|
|
23
|
+
this.navCtrl.navigateForward(url);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
onClickedItems(clickedItem: string[]): void {
|
|
27
|
+
console.log('Selected Item - ', clickedItem);
|
|
28
|
+
this.onNavigate('screen/about/opensource-licences/licence-details');
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar>
|
|
4
|
+
<euim-toolbar-title>{{'euim.about.privacy.statement' | translate }}</euim-toolbar-title>
|
|
5
|
+
</euim-toolbar>
|
|
6
|
+
</ion-toolbar>
|
|
7
|
+
</ion-header>
|
|
8
|
+
<ion-content>
|
|
9
|
+
<euim-about-content-loading webUrl="https://www.europeana.eu/en/rights/privacy-policy">
|
|
10
|
+
</euim-about-content-loading>
|
|
11
|
+
</ion-content>
|