├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── db.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── nav-bar │ │ │ ├── nav-bar.component.css │ │ │ ├── nav-bar.component.html │ │ │ ├── nav-bar.component.spec.ts │ │ │ └── nav-bar.component.ts │ │ ├── product-add │ │ │ ├── product-add.component.css │ │ │ ├── product-add.component.html │ │ │ ├── product-add.component.spec.ts │ │ │ └── product-add.component.ts │ │ ├── product-edit │ │ │ ├── product-edit.component.css │ │ │ ├── product-edit.component.html │ │ │ ├── product-edit.component.spec.ts │ │ │ └── product-edit.component.ts │ │ └── products │ │ │ ├── products.component.css │ │ │ ├── products.component.html │ │ │ ├── products.component.spec.ts │ │ │ └── products.component.ts │ ├── model │ │ └── product.model.ts │ ├── services │ │ └── products.service.ts │ └── state │ │ └── product.state.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/angular.json -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/db.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/home/home.component.html: -------------------------------------------------------------------------------- 1 |

home works!

2 | -------------------------------------------------------------------------------- /src/app/components/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/components/nav-bar/nav-bar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/nav-bar/nav-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/nav-bar/nav-bar.component.html -------------------------------------------------------------------------------- /src/app/components/nav-bar/nav-bar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/nav-bar/nav-bar.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/nav-bar/nav-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/nav-bar/nav-bar.component.ts -------------------------------------------------------------------------------- /src/app/components/product-add/product-add.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/product-add/product-add.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/product-add/product-add.component.html -------------------------------------------------------------------------------- /src/app/components/product-add/product-add.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/product-add/product-add.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/product-add/product-add.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/product-add/product-add.component.ts -------------------------------------------------------------------------------- /src/app/components/product-edit/product-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/product-edit/product-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/product-edit/product-edit.component.html -------------------------------------------------------------------------------- /src/app/components/product-edit/product-edit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/product-edit/product-edit.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/product-edit/product-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/product-edit/product-edit.component.ts -------------------------------------------------------------------------------- /src/app/components/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/products/products.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/products/products.component.html -------------------------------------------------------------------------------- /src/app/components/products/products.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/products/products.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/products/products.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/components/products/products.component.ts -------------------------------------------------------------------------------- /src/app/model/product.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/model/product.model.ts -------------------------------------------------------------------------------- /src/app/services/products.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/services/products.service.ts -------------------------------------------------------------------------------- /src/app/state/product.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/app/state/product.state.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohamedYoussfi/angular11-app-products-model1/HEAD/tslint.json --------------------------------------------------------------------------------