├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── extensions.json ├── README.md ├── apps └── ddd-hrm │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ └── app.routes.ts │ ├── assets │ │ └── .gitkeep │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── styles.scss │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── db.json ├── img.png ├── img_1.png ├── img_2.png ├── img_3.png ├── jest.config.ts ├── jest.preset.js ├── libs ├── employee-management │ ├── employee-list-data-access │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── employee-list-api.service.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── employee-list-feature │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── employment-list-feature │ │ │ │ │ ├── employment-list-feature.component.css │ │ │ │ │ ├── employment-list-feature.component.html │ │ │ │ │ ├── employment-list-feature.component.spec.ts │ │ │ │ │ └── employment-list-feature.component.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── employee-model-shared │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── employee.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── employee-profile-data-access │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── models │ │ │ │ │ └── employee-profile.model.ts │ │ │ │ └── services │ │ │ │ │ └── employee-profile-api.service.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── employee-profile-feature │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── employee-profile-feature │ │ │ │ ├── employee-profile-feature.component.css │ │ │ │ ├── employee-profile-feature.component.html │ │ │ │ ├── employee-profile-feature.component.spec.ts │ │ │ │ └── employee-profile-feature.component.ts │ │ │ └── employee-profile.routes.ts │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── learning-management │ ├── course-catalog-data-access │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── course-catalog-api.service.ts │ │ │ │ └── course-catalog.model.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── course-catalog-feature │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── course-catalog-feature │ │ │ │ │ ├── course-catalog-feature.component.css │ │ │ │ │ ├── course-catalog-feature.component.html │ │ │ │ │ ├── course-catalog-feature.component.spec.ts │ │ │ │ │ └── course-catalog-feature.component.ts │ │ │ │ └── course-catalog.routes.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── course-details-data-access │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── course-details-api.service.ts │ │ │ │ └── course-details.model.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── course-details-feature │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── course-details-feature │ │ │ │ │ ├── course-details-feature.component.css │ │ │ │ │ ├── course-details-feature.component.html │ │ │ │ │ ├── course-details-feature.component.spec.ts │ │ │ │ │ └── course-details-feature.component.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── course-model-shared │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ └── course.model.ts │ │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── course-shared │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── select-employee-for-learning │ │ │ │ ├── select-employee-for-learning.component.css │ │ │ │ ├── select-employee-for-learning.component.html │ │ │ │ ├── select-employee-for-learning.component.spec.ts │ │ │ │ └── select-employee-for-learning.component.ts │ │ └── test-setup.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json └── shared │ ├── api-layer │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── api.interceptor.ts │ │ │ └── logging.interceptor.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ ├── logger │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ └── logger.service.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json │ └── ui │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── index.ts │ ├── lib │ │ ├── badge │ │ │ ├── badge.component.css │ │ │ ├── badge.component.html │ │ │ ├── badge.component.spec.ts │ │ │ └── badge.component.ts │ │ ├── card-field │ │ │ ├── card-field.component.html │ │ │ ├── card-field.component.scss │ │ │ ├── card-field.component.spec.ts │ │ │ └── card-field.component.ts │ │ └── card │ │ │ ├── card.component.html │ │ │ ├── card.component.scss │ │ │ ├── card.component.spec.ts │ │ │ └── card.component.ts │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── mock-server ├── db.json └── server.js ├── nx.json ├── package.json └── tsconfig.base.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/README.md -------------------------------------------------------------------------------- /apps/ddd-hrm/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/.eslintrc.json -------------------------------------------------------------------------------- /apps/ddd-hrm/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/jest.config.ts -------------------------------------------------------------------------------- /apps/ddd-hrm/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/project.json -------------------------------------------------------------------------------- /apps/ddd-hrm/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/src/app/app.component.html -------------------------------------------------------------------------------- /apps/ddd-hrm/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/src/app/app.component.scss -------------------------------------------------------------------------------- /apps/ddd-hrm/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /apps/ddd-hrm/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/ddd-hrm/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/ddd-hrm/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/ddd-hrm/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/ddd-hrm/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/src/favicon.ico -------------------------------------------------------------------------------- /apps/ddd-hrm/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/src/index.html -------------------------------------------------------------------------------- /apps/ddd-hrm/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/src/main.ts -------------------------------------------------------------------------------- /apps/ddd-hrm/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/src/styles.scss -------------------------------------------------------------------------------- /apps/ddd-hrm/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/src/test-setup.ts -------------------------------------------------------------------------------- /apps/ddd-hrm/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/tsconfig.app.json -------------------------------------------------------------------------------- /apps/ddd-hrm/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/ddd-hrm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/tsconfig.json -------------------------------------------------------------------------------- /apps/ddd-hrm/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/apps/ddd-hrm/tsconfig.spec.json -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/img.png -------------------------------------------------------------------------------- /img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/img_1.png -------------------------------------------------------------------------------- /img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/img_2.png -------------------------------------------------------------------------------- /img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/img_3.png -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/employee-management/employee-list-data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/employee-management/employee-list-data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-data-access/README.md -------------------------------------------------------------------------------- /libs/employee-management/employee-list-data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-list-data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-data-access/project.json -------------------------------------------------------------------------------- /libs/employee-management/employee-list-data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/employee-list-api.service'; 2 | -------------------------------------------------------------------------------- /libs/employee-management/employee-list-data-access/src/lib/employee-list-api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-data-access/src/lib/employee-list-api.service.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-list-data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-list-data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/employee-management/employee-list-data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/employee-management/employee-list-data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/README.md -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/jest.config.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/project.json -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/src/index.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/src/lib/employment-list-feature/employment-list-feature.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/src/lib/employment-list-feature/employment-list-feature.component.css -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/src/lib/employment-list-feature/employment-list-feature.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/src/lib/employment-list-feature/employment-list-feature.component.html -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/src/lib/employment-list-feature/employment-list-feature.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/src/lib/employment-list-feature/employment-list-feature.component.spec.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/src/lib/employment-list-feature/employment-list-feature.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/src/lib/employment-list-feature/employment-list-feature.component.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/src/test-setup.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/tsconfig.json -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/employee-management/employee-list-feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-list-feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/employee-management/employee-model-shared/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-model-shared/.eslintrc.json -------------------------------------------------------------------------------- /libs/employee-management/employee-model-shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-model-shared/README.md -------------------------------------------------------------------------------- /libs/employee-management/employee-model-shared/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-model-shared/jest.config.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-model-shared/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-model-shared/project.json -------------------------------------------------------------------------------- /libs/employee-management/employee-model-shared/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/employee'; 2 | -------------------------------------------------------------------------------- /libs/employee-management/employee-model-shared/src/lib/employee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-model-shared/src/lib/employee.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-model-shared/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-model-shared/src/test-setup.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-model-shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-model-shared/tsconfig.json -------------------------------------------------------------------------------- /libs/employee-management/employee-model-shared/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-model-shared/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/employee-management/employee-model-shared/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-model-shared/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-data-access/README.md -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-data-access/project.json -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-data-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-data-access/src/index.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-data-access/src/lib/models/employee-profile.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-data-access/src/lib/models/employee-profile.model.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-data-access/src/lib/services/employee-profile-api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-data-access/src/lib/services/employee-profile-api.service.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/README.md -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/jest.config.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/project.json -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/employee-profile.routes'; 2 | -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/src/lib/employee-profile-feature/employee-profile-feature.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/src/lib/employee-profile-feature/employee-profile-feature.component.css -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/src/lib/employee-profile-feature/employee-profile-feature.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/src/lib/employee-profile-feature/employee-profile-feature.component.html -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/src/lib/employee-profile-feature/employee-profile-feature.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/src/lib/employee-profile-feature/employee-profile-feature.component.spec.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/src/lib/employee-profile-feature/employee-profile-feature.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/src/lib/employee-profile-feature/employee-profile-feature.component.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/src/lib/employee-profile.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/src/lib/employee-profile.routes.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/src/test-setup.ts -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/tsconfig.json -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/employee-management/employee-profile-feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/employee-management/employee-profile-feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-data-access/README.md -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-data-access/project.json -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-data-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-data-access/src/index.ts -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-data-access/src/lib/course-catalog-api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-data-access/src/lib/course-catalog-api.service.ts -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-data-access/src/lib/course-catalog.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-data-access/src/lib/course-catalog.model.ts -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/README.md -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/jest.config.ts -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/project.json -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/course-catalog.routes'; 2 | -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/src/lib/course-catalog-feature/course-catalog-feature.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/src/lib/course-catalog-feature/course-catalog-feature.component.css -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/src/lib/course-catalog-feature/course-catalog-feature.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/src/lib/course-catalog-feature/course-catalog-feature.component.html -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/src/lib/course-catalog-feature/course-catalog-feature.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/src/lib/course-catalog-feature/course-catalog-feature.component.spec.ts -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/src/lib/course-catalog-feature/course-catalog-feature.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/src/lib/course-catalog-feature/course-catalog-feature.component.ts -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/src/lib/course-catalog.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/src/lib/course-catalog.routes.ts -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/src/test-setup.ts -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/tsconfig.json -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/learning-management/course-catalog-feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-catalog-feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/learning-management/course-details-data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/learning-management/course-details-data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-data-access/README.md -------------------------------------------------------------------------------- /libs/learning-management/course-details-data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/learning-management/course-details-data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-data-access/project.json -------------------------------------------------------------------------------- /libs/learning-management/course-details-data-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-data-access/src/index.ts -------------------------------------------------------------------------------- /libs/learning-management/course-details-data-access/src/lib/course-details-api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-data-access/src/lib/course-details-api.service.ts -------------------------------------------------------------------------------- /libs/learning-management/course-details-data-access/src/lib/course-details.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-data-access/src/lib/course-details.model.ts -------------------------------------------------------------------------------- /libs/learning-management/course-details-data-access/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-data-access/src/test-setup.ts -------------------------------------------------------------------------------- /libs/learning-management/course-details-data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/learning-management/course-details-data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/learning-management/course-details-data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/README.md -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/jest.config.ts -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/project.json -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/src/index.ts -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/src/lib/course-details-feature/course-details-feature.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/src/lib/course-details-feature/course-details-feature.component.css -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/src/lib/course-details-feature/course-details-feature.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/src/lib/course-details-feature/course-details-feature.component.html -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/src/lib/course-details-feature/course-details-feature.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/src/lib/course-details-feature/course-details-feature.component.spec.ts -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/src/lib/course-details-feature/course-details-feature.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/src/lib/course-details-feature/course-details-feature.component.ts -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/src/test-setup.ts -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/tsconfig.json -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/learning-management/course-details-feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-details-feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/learning-management/course-model-shared/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-model-shared/.eslintrc.json -------------------------------------------------------------------------------- /libs/learning-management/course-model-shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-model-shared/README.md -------------------------------------------------------------------------------- /libs/learning-management/course-model-shared/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-model-shared/jest.config.ts -------------------------------------------------------------------------------- /libs/learning-management/course-model-shared/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-model-shared/project.json -------------------------------------------------------------------------------- /libs/learning-management/course-model-shared/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/course.model'; 2 | -------------------------------------------------------------------------------- /libs/learning-management/course-model-shared/src/lib/course.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-model-shared/src/lib/course.model.ts -------------------------------------------------------------------------------- /libs/learning-management/course-model-shared/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-model-shared/src/test-setup.ts -------------------------------------------------------------------------------- /libs/learning-management/course-model-shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-model-shared/tsconfig.json -------------------------------------------------------------------------------- /libs/learning-management/course-model-shared/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-model-shared/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/learning-management/course-model-shared/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-model-shared/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/learning-management/course-shared/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/.eslintrc.json -------------------------------------------------------------------------------- /libs/learning-management/course-shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/README.md -------------------------------------------------------------------------------- /libs/learning-management/course-shared/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/jest.config.ts -------------------------------------------------------------------------------- /libs/learning-management/course-shared/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/project.json -------------------------------------------------------------------------------- /libs/learning-management/course-shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/src/index.ts -------------------------------------------------------------------------------- /libs/learning-management/course-shared/src/lib/select-employee-for-learning/select-employee-for-learning.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/src/lib/select-employee-for-learning/select-employee-for-learning.component.css -------------------------------------------------------------------------------- /libs/learning-management/course-shared/src/lib/select-employee-for-learning/select-employee-for-learning.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/src/lib/select-employee-for-learning/select-employee-for-learning.component.html -------------------------------------------------------------------------------- /libs/learning-management/course-shared/src/lib/select-employee-for-learning/select-employee-for-learning.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/src/lib/select-employee-for-learning/select-employee-for-learning.component.spec.ts -------------------------------------------------------------------------------- /libs/learning-management/course-shared/src/lib/select-employee-for-learning/select-employee-for-learning.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/src/lib/select-employee-for-learning/select-employee-for-learning.component.ts -------------------------------------------------------------------------------- /libs/learning-management/course-shared/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/src/test-setup.ts -------------------------------------------------------------------------------- /libs/learning-management/course-shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/tsconfig.json -------------------------------------------------------------------------------- /libs/learning-management/course-shared/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/learning-management/course-shared/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/learning-management/course-shared/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/api-layer/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/api-layer/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/api-layer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/api-layer/README.md -------------------------------------------------------------------------------- /libs/shared/api-layer/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/api-layer/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/api-layer/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/api-layer/project.json -------------------------------------------------------------------------------- /libs/shared/api-layer/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/api.interceptor'; 2 | -------------------------------------------------------------------------------- /libs/shared/api-layer/src/lib/api.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/api-layer/src/lib/api.interceptor.ts -------------------------------------------------------------------------------- /libs/shared/api-layer/src/lib/logging.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/api-layer/src/lib/logging.interceptor.ts -------------------------------------------------------------------------------- /libs/shared/api-layer/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/api-layer/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/api-layer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/api-layer/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/api-layer/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/api-layer/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/api-layer/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/api-layer/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/logger/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/logger/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/logger/README.md -------------------------------------------------------------------------------- /libs/shared/logger/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/logger/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/logger/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/logger/project.json -------------------------------------------------------------------------------- /libs/shared/logger/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/logger.service'; 2 | -------------------------------------------------------------------------------- /libs/shared/logger/src/lib/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/logger/src/lib/logger.service.ts -------------------------------------------------------------------------------- /libs/shared/logger/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/logger/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/logger/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/logger/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/logger/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/logger/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/logger/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/logger/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/ui/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/README.md -------------------------------------------------------------------------------- /libs/shared/ui/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/ui/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/project.json -------------------------------------------------------------------------------- /libs/shared/ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/index.ts -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/badge/badge.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/lib/badge/badge.component.css -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/badge/badge.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/lib/badge/badge.component.html -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/badge/badge.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/lib/badge/badge.component.spec.ts -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/badge/badge.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/lib/badge/badge.component.ts -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/card-field/card-field.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/lib/card-field/card-field.component.html -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/card-field/card-field.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/lib/card-field/card-field.component.scss -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/card-field/card-field.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/lib/card-field/card-field.component.spec.ts -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/card-field/card-field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/lib/card-field/card-field.component.ts -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/card/card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/lib/card/card.component.html -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/card/card.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/lib/card/card.component.scss -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/card/card.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/lib/card/card.component.spec.ts -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/card/card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/lib/card/card.component.ts -------------------------------------------------------------------------------- /libs/shared/ui/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/src/test-setup.ts -------------------------------------------------------------------------------- /libs/shared/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/ui/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/libs/shared/ui/tsconfig.spec.json -------------------------------------------------------------------------------- /mock-server/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/mock-server/db.json -------------------------------------------------------------------------------- /mock-server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/mock-server/server.js -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinmilewicz/ddd-frontend-example/HEAD/tsconfig.base.json --------------------------------------------------------------------------------