├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.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 │ │ ├── book-cart │ │ ├── book-cart.component.css │ │ ├── book-cart.component.html │ │ ├── book-cart.component.spec.ts │ │ ├── book-cart.component.ts │ │ ├── filters │ │ │ ├── filters.component.css │ │ │ ├── filters.component.html │ │ │ ├── filters.component.spec.ts │ │ │ └── filters.component.ts │ │ └── product-list │ │ │ ├── model │ │ │ └── books.model.ts │ │ │ ├── product-item │ │ │ ├── product-item.component.css │ │ │ ├── product-item.component.html │ │ │ ├── product-item.component.spec.ts │ │ │ └── product-item.component.ts │ │ │ ├── product-list.component.css │ │ │ ├── product-list.component.html │ │ │ ├── product-list.component.spec.ts │ │ │ ├── product-list.component.ts │ │ │ └── product-list.service.ts │ │ └── shared │ │ ├── footer │ │ ├── footer.component.css │ │ ├── footer.component.html │ │ ├── footer.component.spec.ts │ │ └── footer.component.ts │ │ ├── header │ │ ├── header.component.css │ │ ├── header.component.html │ │ ├── header.component.spec.ts │ │ └── header.component.ts │ │ └── nav │ │ ├── nav.component.css │ │ ├── nav.component.html │ │ ├── nav.component.spec.ts │ │ └── nav.component.ts ├── assets │ ├── .gitkeep │ └── images │ │ ├── img1.jpg │ │ ├── img2.jpg │ │ └── img3.jpg ├── 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 /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/angular.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/book-cart/book-cart.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/book-cart/book-cart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/book-cart.component.html -------------------------------------------------------------------------------- /src/app/components/book-cart/book-cart.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/book-cart.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/book-cart/book-cart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/book-cart.component.ts -------------------------------------------------------------------------------- /src/app/components/book-cart/filters/filters.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/book-cart/filters/filters.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/filters/filters.component.html -------------------------------------------------------------------------------- /src/app/components/book-cart/filters/filters.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/filters/filters.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/book-cart/filters/filters.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/filters/filters.component.ts -------------------------------------------------------------------------------- /src/app/components/book-cart/product-list/model/books.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/product-list/model/books.model.ts -------------------------------------------------------------------------------- /src/app/components/book-cart/product-list/product-item/product-item.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/book-cart/product-list/product-item/product-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/product-list/product-item/product-item.component.html -------------------------------------------------------------------------------- /src/app/components/book-cart/product-list/product-item/product-item.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/product-list/product-item/product-item.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/book-cart/product-list/product-item/product-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/product-list/product-item/product-item.component.ts -------------------------------------------------------------------------------- /src/app/components/book-cart/product-list/product-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/book-cart/product-list/product-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/product-list/product-list.component.html -------------------------------------------------------------------------------- /src/app/components/book-cart/product-list/product-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/product-list/product-list.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/book-cart/product-list/product-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/product-list/product-list.component.ts -------------------------------------------------------------------------------- /src/app/components/book-cart/product-list/product-list.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/book-cart/product-list/product-list.service.ts -------------------------------------------------------------------------------- /src/app/components/shared/footer/footer.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/shared/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/shared/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/components/shared/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/shared/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/shared/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/shared/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/components/shared/header/header.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/shared/header/header.component.html: -------------------------------------------------------------------------------- 1 | Bookstore 2 | -------------------------------------------------------------------------------- /src/app/components/shared/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/shared/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/shared/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/shared/header/header.component.ts -------------------------------------------------------------------------------- /src/app/components/shared/nav/nav.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/shared/nav/nav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/shared/nav/nav.component.html -------------------------------------------------------------------------------- /src/app/components/shared/nav/nav.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/shared/nav/nav.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/shared/nav/nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/app/components/shared/nav/nav.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/assets/images/img1.jpg -------------------------------------------------------------------------------- /src/assets/images/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/assets/images/img2.jpg -------------------------------------------------------------------------------- /src/assets/images/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/assets/images/img3.jpg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naatscs/DIO-LiveCoding-AngularFront/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------