├── .gitignore ├── README.md ├── modules ├── README.md ├── module1 │ └── begin │ │ └── readme.md ├── module2 │ └── files │ │ └── beginFiles │ │ ├── public │ │ └── app │ │ │ └── core │ │ │ ├── core.module.ts │ │ │ └── data.service.ts │ │ ├── routes │ │ └── router.js │ │ └── server.js ├── module3 │ └── files │ │ └── beginFiles │ │ ├── controllers │ │ └── api │ │ │ └── customers │ │ │ └── customers.controller.js │ │ ├── public │ │ └── app │ │ │ ├── core │ │ │ ├── core.module.ts │ │ │ └── data.service.ts │ │ │ └── customers │ │ │ ├── customer-edit-reactive.component.ts │ │ │ ├── customer-edit.component.html │ │ │ ├── customer-edit.component.ts │ │ │ ├── customers-grid.component.html │ │ │ └── customers.component.ts │ │ └── server.js ├── module4 │ └── files │ │ └── beginFiles │ │ ├── controllers │ │ └── api │ │ │ └── customers │ │ │ └── customers.controller.js │ │ ├── public │ │ └── app │ │ │ ├── core │ │ │ ├── core.module.ts │ │ │ └── data.service.ts │ │ │ └── customers │ │ │ ├── customer-edit-reactive.component.ts │ │ │ ├── customer-edit.component.ts │ │ │ └── customers.component.ts │ │ └── server.js ├── module5 │ └── files │ │ └── beginFiles │ │ ├── controllers │ │ └── api │ │ │ └── customers │ │ │ └── customers.controller.js │ │ ├── public │ │ └── app │ │ │ ├── core │ │ │ ├── core.module.ts │ │ │ └── data.service.ts │ │ │ └── customers │ │ │ ├── customer-edit-reactive.component.ts │ │ │ ├── customer-edit.component.ts │ │ │ └── customers.component.ts │ │ └── server.js ├── module6 │ └── files │ │ └── beginFiles │ │ ├── controllers │ │ └── api │ │ │ └── customers │ │ │ └── customers.controller.js │ │ ├── public │ │ └── app │ │ │ ├── core │ │ │ ├── core.module.ts │ │ │ └── data.service.ts │ │ │ └── customers │ │ │ ├── customer-edit-reactive.component.ts │ │ │ ├── customer-edit.component.html │ │ │ ├── customer-edit.component.ts │ │ │ └── customers.component.ts │ │ └── server.js ├── module7 │ └── files │ │ └── beginFiles │ │ ├── controllers │ │ └── api │ │ │ └── customers │ │ │ └── customers.controller.js │ │ ├── public │ │ └── app │ │ │ ├── core │ │ │ ├── core.module.ts │ │ │ └── data.service.ts │ │ │ └── customers │ │ │ ├── customers.component.html │ │ │ └── customers.component.ts │ │ └── server.js ├── module8 │ └── begin │ │ └── README.md ├── package.json └── setup.js └── src ├── .docker ├── node.development.dockerfile └── useful-commands.md ├── .vscode ├── launch.json └── settings.json ├── README.md ├── config └── config.development.json ├── controllers └── api │ ├── customers │ └── customers.controller.js │ ├── states │ └── states.controller.js │ └── tokens │ └── tokens.controller.js ├── docker-compose.yml ├── gulpfile.js ├── lib ├── configLoader.js ├── customersRepository.js ├── database.js ├── dbSeeder.js └── statesRepository.js ├── models ├── customer.js └── state.js ├── package-lock.json ├── package.json ├── public ├── app │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routing.ts │ ├── core │ │ ├── core.module.ts │ │ ├── core.module.ts.httpmodule │ │ ├── data-filter.service.ts │ │ ├── data.service.ts │ │ ├── data.service.ts.httpmodule │ │ ├── sorter.ts │ │ └── trackby.service.ts │ ├── customers │ │ ├── customer-edit-reactive.component.html │ │ ├── customer-edit-reactive.component.ts │ │ ├── customer-edit.component.html │ │ ├── customer-edit.component.ts │ │ ├── customers-grid.component.html │ │ ├── customers-grid.component.ts │ │ ├── customers.component.html │ │ └── customers.component.ts │ ├── main.ts │ └── shared │ │ ├── ensureModuleLoadedOnceGuard.ts │ │ ├── filter-textbox │ │ └── filter-textbox.component.ts │ │ ├── interfaces.ts │ │ ├── pagination │ │ ├── pagination.component.css │ │ ├── pagination.component.html │ │ └── pagination.component.ts │ │ ├── pipes │ │ ├── capitalize.pipe.ts │ │ └── trim.pipe.ts │ │ ├── property-resolver.ts │ │ ├── shared.module.ts │ │ └── validation.service.ts ├── images │ ├── favicon.ico │ ├── female.png │ ├── male.png │ └── people.png ├── index.html ├── styles │ └── styles.css ├── systemjs-angular-loader.js └── systemjs.config.js ├── routes └── router.js ├── server.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/README.md -------------------------------------------------------------------------------- /modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/README.md -------------------------------------------------------------------------------- /modules/module1/begin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module1/begin/readme.md -------------------------------------------------------------------------------- /modules/module2/files/beginFiles/public/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module2/files/beginFiles/public/app/core/core.module.ts -------------------------------------------------------------------------------- /modules/module2/files/beginFiles/public/app/core/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module2/files/beginFiles/public/app/core/data.service.ts -------------------------------------------------------------------------------- /modules/module2/files/beginFiles/routes/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module2/files/beginFiles/routes/router.js -------------------------------------------------------------------------------- /modules/module2/files/beginFiles/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module2/files/beginFiles/server.js -------------------------------------------------------------------------------- /modules/module3/files/beginFiles/controllers/api/customers/customers.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module3/files/beginFiles/controllers/api/customers/customers.controller.js -------------------------------------------------------------------------------- /modules/module3/files/beginFiles/public/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module3/files/beginFiles/public/app/core/core.module.ts -------------------------------------------------------------------------------- /modules/module3/files/beginFiles/public/app/core/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module3/files/beginFiles/public/app/core/data.service.ts -------------------------------------------------------------------------------- /modules/module3/files/beginFiles/public/app/customers/customer-edit-reactive.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module3/files/beginFiles/public/app/customers/customer-edit-reactive.component.ts -------------------------------------------------------------------------------- /modules/module3/files/beginFiles/public/app/customers/customer-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module3/files/beginFiles/public/app/customers/customer-edit.component.html -------------------------------------------------------------------------------- /modules/module3/files/beginFiles/public/app/customers/customer-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module3/files/beginFiles/public/app/customers/customer-edit.component.ts -------------------------------------------------------------------------------- /modules/module3/files/beginFiles/public/app/customers/customers-grid.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module3/files/beginFiles/public/app/customers/customers-grid.component.html -------------------------------------------------------------------------------- /modules/module3/files/beginFiles/public/app/customers/customers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module3/files/beginFiles/public/app/customers/customers.component.ts -------------------------------------------------------------------------------- /modules/module3/files/beginFiles/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module3/files/beginFiles/server.js -------------------------------------------------------------------------------- /modules/module4/files/beginFiles/controllers/api/customers/customers.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module4/files/beginFiles/controllers/api/customers/customers.controller.js -------------------------------------------------------------------------------- /modules/module4/files/beginFiles/public/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module4/files/beginFiles/public/app/core/core.module.ts -------------------------------------------------------------------------------- /modules/module4/files/beginFiles/public/app/core/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module4/files/beginFiles/public/app/core/data.service.ts -------------------------------------------------------------------------------- /modules/module4/files/beginFiles/public/app/customers/customer-edit-reactive.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module4/files/beginFiles/public/app/customers/customer-edit-reactive.component.ts -------------------------------------------------------------------------------- /modules/module4/files/beginFiles/public/app/customers/customer-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module4/files/beginFiles/public/app/customers/customer-edit.component.ts -------------------------------------------------------------------------------- /modules/module4/files/beginFiles/public/app/customers/customers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module4/files/beginFiles/public/app/customers/customers.component.ts -------------------------------------------------------------------------------- /modules/module4/files/beginFiles/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module4/files/beginFiles/server.js -------------------------------------------------------------------------------- /modules/module5/files/beginFiles/controllers/api/customers/customers.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module5/files/beginFiles/controllers/api/customers/customers.controller.js -------------------------------------------------------------------------------- /modules/module5/files/beginFiles/public/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module5/files/beginFiles/public/app/core/core.module.ts -------------------------------------------------------------------------------- /modules/module5/files/beginFiles/public/app/core/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module5/files/beginFiles/public/app/core/data.service.ts -------------------------------------------------------------------------------- /modules/module5/files/beginFiles/public/app/customers/customer-edit-reactive.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module5/files/beginFiles/public/app/customers/customer-edit-reactive.component.ts -------------------------------------------------------------------------------- /modules/module5/files/beginFiles/public/app/customers/customer-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module5/files/beginFiles/public/app/customers/customer-edit.component.ts -------------------------------------------------------------------------------- /modules/module5/files/beginFiles/public/app/customers/customers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module5/files/beginFiles/public/app/customers/customers.component.ts -------------------------------------------------------------------------------- /modules/module5/files/beginFiles/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module5/files/beginFiles/server.js -------------------------------------------------------------------------------- /modules/module6/files/beginFiles/controllers/api/customers/customers.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module6/files/beginFiles/controllers/api/customers/customers.controller.js -------------------------------------------------------------------------------- /modules/module6/files/beginFiles/public/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module6/files/beginFiles/public/app/core/core.module.ts -------------------------------------------------------------------------------- /modules/module6/files/beginFiles/public/app/core/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module6/files/beginFiles/public/app/core/data.service.ts -------------------------------------------------------------------------------- /modules/module6/files/beginFiles/public/app/customers/customer-edit-reactive.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module6/files/beginFiles/public/app/customers/customer-edit-reactive.component.ts -------------------------------------------------------------------------------- /modules/module6/files/beginFiles/public/app/customers/customer-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module6/files/beginFiles/public/app/customers/customer-edit.component.html -------------------------------------------------------------------------------- /modules/module6/files/beginFiles/public/app/customers/customer-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module6/files/beginFiles/public/app/customers/customer-edit.component.ts -------------------------------------------------------------------------------- /modules/module6/files/beginFiles/public/app/customers/customers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module6/files/beginFiles/public/app/customers/customers.component.ts -------------------------------------------------------------------------------- /modules/module6/files/beginFiles/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module6/files/beginFiles/server.js -------------------------------------------------------------------------------- /modules/module7/files/beginFiles/controllers/api/customers/customers.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module7/files/beginFiles/controllers/api/customers/customers.controller.js -------------------------------------------------------------------------------- /modules/module7/files/beginFiles/public/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module7/files/beginFiles/public/app/core/core.module.ts -------------------------------------------------------------------------------- /modules/module7/files/beginFiles/public/app/core/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module7/files/beginFiles/public/app/core/data.service.ts -------------------------------------------------------------------------------- /modules/module7/files/beginFiles/public/app/customers/customers.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module7/files/beginFiles/public/app/customers/customers.component.html -------------------------------------------------------------------------------- /modules/module7/files/beginFiles/public/app/customers/customers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module7/files/beginFiles/public/app/customers/customers.component.ts -------------------------------------------------------------------------------- /modules/module7/files/beginFiles/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module7/files/beginFiles/server.js -------------------------------------------------------------------------------- /modules/module8/begin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/module8/begin/README.md -------------------------------------------------------------------------------- /modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/package.json -------------------------------------------------------------------------------- /modules/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/modules/setup.js -------------------------------------------------------------------------------- /src/.docker/node.development.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/.docker/node.development.dockerfile -------------------------------------------------------------------------------- /src/.docker/useful-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/.docker/useful-commands.md -------------------------------------------------------------------------------- /src/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/.vscode/launch.json -------------------------------------------------------------------------------- /src/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/.vscode/settings.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/README.md -------------------------------------------------------------------------------- /src/config/config.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/config/config.development.json -------------------------------------------------------------------------------- /src/controllers/api/customers/customers.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/controllers/api/customers/customers.controller.js -------------------------------------------------------------------------------- /src/controllers/api/states/states.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/controllers/api/states/states.controller.js -------------------------------------------------------------------------------- /src/controllers/api/tokens/tokens.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/controllers/api/tokens/tokens.controller.js -------------------------------------------------------------------------------- /src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/docker-compose.yml -------------------------------------------------------------------------------- /src/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/gulpfile.js -------------------------------------------------------------------------------- /src/lib/configLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/lib/configLoader.js -------------------------------------------------------------------------------- /src/lib/customersRepository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/lib/customersRepository.js -------------------------------------------------------------------------------- /src/lib/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/lib/database.js -------------------------------------------------------------------------------- /src/lib/dbSeeder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/lib/dbSeeder.js -------------------------------------------------------------------------------- /src/lib/statesRepository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/lib/statesRepository.js -------------------------------------------------------------------------------- /src/models/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/models/customer.js -------------------------------------------------------------------------------- /src/models/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/models/state.js -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/package-lock.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/package.json -------------------------------------------------------------------------------- /src/public/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/app.component.ts -------------------------------------------------------------------------------- /src/public/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/app.module.ts -------------------------------------------------------------------------------- /src/public/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/app.routing.ts -------------------------------------------------------------------------------- /src/public/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/core/core.module.ts -------------------------------------------------------------------------------- /src/public/app/core/core.module.ts.httpmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/core/core.module.ts.httpmodule -------------------------------------------------------------------------------- /src/public/app/core/data-filter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/core/data-filter.service.ts -------------------------------------------------------------------------------- /src/public/app/core/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/core/data.service.ts -------------------------------------------------------------------------------- /src/public/app/core/data.service.ts.httpmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/core/data.service.ts.httpmodule -------------------------------------------------------------------------------- /src/public/app/core/sorter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/core/sorter.ts -------------------------------------------------------------------------------- /src/public/app/core/trackby.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/core/trackby.service.ts -------------------------------------------------------------------------------- /src/public/app/customers/customer-edit-reactive.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/customers/customer-edit-reactive.component.html -------------------------------------------------------------------------------- /src/public/app/customers/customer-edit-reactive.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/customers/customer-edit-reactive.component.ts -------------------------------------------------------------------------------- /src/public/app/customers/customer-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/customers/customer-edit.component.html -------------------------------------------------------------------------------- /src/public/app/customers/customer-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/customers/customer-edit.component.ts -------------------------------------------------------------------------------- /src/public/app/customers/customers-grid.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/customers/customers-grid.component.html -------------------------------------------------------------------------------- /src/public/app/customers/customers-grid.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/customers/customers-grid.component.ts -------------------------------------------------------------------------------- /src/public/app/customers/customers.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/customers/customers.component.html -------------------------------------------------------------------------------- /src/public/app/customers/customers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/customers/customers.component.ts -------------------------------------------------------------------------------- /src/public/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/main.ts -------------------------------------------------------------------------------- /src/public/app/shared/ensureModuleLoadedOnceGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/shared/ensureModuleLoadedOnceGuard.ts -------------------------------------------------------------------------------- /src/public/app/shared/filter-textbox/filter-textbox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/shared/filter-textbox/filter-textbox.component.ts -------------------------------------------------------------------------------- /src/public/app/shared/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/shared/interfaces.ts -------------------------------------------------------------------------------- /src/public/app/shared/pagination/pagination.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/shared/pagination/pagination.component.css -------------------------------------------------------------------------------- /src/public/app/shared/pagination/pagination.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/shared/pagination/pagination.component.html -------------------------------------------------------------------------------- /src/public/app/shared/pagination/pagination.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/shared/pagination/pagination.component.ts -------------------------------------------------------------------------------- /src/public/app/shared/pipes/capitalize.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/shared/pipes/capitalize.pipe.ts -------------------------------------------------------------------------------- /src/public/app/shared/pipes/trim.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/shared/pipes/trim.pipe.ts -------------------------------------------------------------------------------- /src/public/app/shared/property-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/shared/property-resolver.ts -------------------------------------------------------------------------------- /src/public/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/public/app/shared/validation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/app/shared/validation.service.ts -------------------------------------------------------------------------------- /src/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/images/favicon.ico -------------------------------------------------------------------------------- /src/public/images/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/images/female.png -------------------------------------------------------------------------------- /src/public/images/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/images/male.png -------------------------------------------------------------------------------- /src/public/images/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/images/people.png -------------------------------------------------------------------------------- /src/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/index.html -------------------------------------------------------------------------------- /src/public/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/styles/styles.css -------------------------------------------------------------------------------- /src/public/systemjs-angular-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/systemjs-angular-loader.js -------------------------------------------------------------------------------- /src/public/systemjs.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/public/systemjs.config.js -------------------------------------------------------------------------------- /src/routes/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/routes/router.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/server.js -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/Angular-NodeJS-MongoDB-CustomersService/HEAD/src/tsconfig.json --------------------------------------------------------------------------------