├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── angular_ecommerce_img_1.png ├── angular_ecommerce_img_2.png ├── angular_ecommerce_img_3.png ├── angular_ecommerce_img_4.png ├── angular_ecommerce_img_5.png ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── package.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routes.ts │ ├── core │ │ ├── core.module.ts │ │ ├── data │ │ │ ├── brands.ts │ │ │ └── phones.ts │ │ ├── enums │ │ │ ├── event-types.ts │ │ │ └── order.ts │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ ├── footer.component.scss │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.scss │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── layout-mode │ │ │ ├── layout-mode.component.html │ │ │ ├── layout-mode.component.scss │ │ │ ├── layout-mode.component.spec.ts │ │ │ └── layout-mode.component.ts │ │ ├── models │ │ │ └── Product.ts │ │ ├── not-found │ │ │ ├── not-found.component.html │ │ │ ├── not-found.component.scss │ │ │ ├── not-found.component.spec.ts │ │ │ └── not-found.component.ts │ │ ├── pipes │ │ │ ├── brand.pipe.spec.ts │ │ │ ├── brand.pipe.ts │ │ │ ├── order-by-price.pipe.spec.ts │ │ │ ├── order-by-price.pipe.ts │ │ │ ├── price-formatter.pipe.spec.ts │ │ │ ├── price-formatter.pipe.ts │ │ │ ├── shorten-title.pipe.spec.ts │ │ │ └── shorten-title.pipe.ts │ │ └── pure-pipes │ │ │ ├── brand.pure.pipe.ts │ │ │ └── order-by-price.pure.pipe.ts │ ├── filters │ │ ├── brand-filter │ │ │ ├── brand-filter.component.html │ │ │ ├── brand-filter.component.scss │ │ │ ├── brand-filter.component.spec.ts │ │ │ └── brand-filter.component.ts │ │ ├── filters.module.ts │ │ └── price-filter │ │ │ ├── price-filter.component.html │ │ │ ├── price-filter.component.scss │ │ │ ├── price-filter.component.spec.ts │ │ │ └── price-filter.component.ts │ ├── pages │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── pages.module.ts │ │ ├── pages.route.ts │ │ ├── product-detail-page │ │ │ ├── product-detail-page.component.html │ │ │ ├── product-detail-page.component.scss │ │ │ ├── product-detail-page.component.spec.ts │ │ │ └── product-detail-page.component.ts │ │ └── shopping-cart-page │ │ │ ├── shopping-cart-page.component.html │ │ │ ├── shopping-cart-page.component.scss │ │ │ ├── shopping-cart-page.component.spec.ts │ │ │ └── shopping-cart-page.component.ts │ ├── pagination │ │ ├── pagination.module.ts │ │ ├── pagination.pipe.spec.ts │ │ ├── pagination.pipe.ts │ │ └── pagination │ │ │ ├── pagination.component.html │ │ │ ├── pagination.component.scss │ │ │ ├── pagination.component.spec.ts │ │ │ └── pagination.component.ts │ ├── products │ │ ├── product-detail │ │ │ ├── product-detail.component.html │ │ │ ├── product-detail.component.scss │ │ │ ├── product-detail.component.spec.ts │ │ │ └── product-detail.component.ts │ │ ├── product-list │ │ │ ├── product-list.component.html │ │ │ ├── product-list.component.scss │ │ │ ├── product-list.component.spec.ts │ │ │ └── product-list.component.ts │ │ ├── product-slider-dots │ │ │ ├── product-slider-dots.component.html │ │ │ ├── product-slider-dots.component.scss │ │ │ ├── product-slider-dots.component.spec.ts │ │ │ └── product-slider-dots.component.ts │ │ ├── product-slider │ │ │ ├── product-slider.component.html │ │ │ ├── product-slider.component.scss │ │ │ ├── product-slider.component.spec.ts │ │ │ └── product-slider.component.ts │ │ ├── product │ │ │ ├── product.component.html │ │ │ ├── product.component.scss │ │ │ ├── product.component.spec.ts │ │ │ └── product.component.ts │ │ ├── products.module.ts │ │ └── products.routes.ts │ ├── shopping-cart │ │ ├── shopping-cart-container │ │ │ ├── shopping-cart-container.component.html │ │ │ ├── shopping-cart-container.component.scss │ │ │ ├── shopping-cart-container.component.spec.ts │ │ │ └── shopping-cart-container.component.ts │ │ ├── shopping-cart-item │ │ │ ├── shopping-cart-item.component.html │ │ │ ├── shopping-cart-item.component.scss │ │ │ ├── shopping-cart-item.component.spec.ts │ │ │ └── shopping-cart-item.component.ts │ │ └── shopping-cart.module.ts │ ├── store │ │ ├── app.reducer.ts │ │ ├── brand-filter │ │ │ ├── brand-filter.action.ts │ │ │ ├── brand-filter.action.types.ts │ │ │ └── brand-filter.reducer.ts │ │ ├── price-filter │ │ │ ├── price-filter.action.ts │ │ │ ├── price-filter.reducer.ts │ │ │ └── price-filter.types.ts │ │ └── shop │ │ │ ├── shop.action.ts │ │ │ ├── shop.action.types.ts │ │ │ └── shop.reducer.ts │ └── utilities │ │ └── cumulativeOffset.ts ├── assets │ └── .gitkeep ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/angular.json -------------------------------------------------------------------------------- /angular_ecommerce_img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/angular_ecommerce_img_1.png -------------------------------------------------------------------------------- /angular_ecommerce_img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/angular_ecommerce_img_2.png -------------------------------------------------------------------------------- /angular_ecommerce_img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/angular_ecommerce_img_3.png -------------------------------------------------------------------------------- /angular_ecommerce_img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/angular_ecommerce_img_4.png -------------------------------------------------------------------------------- /angular_ecommerce_img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/angular_ecommerce_img_5.png -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/app/core/data/brands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/data/brands.ts -------------------------------------------------------------------------------- /src/app/core/data/phones.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/data/phones.ts -------------------------------------------------------------------------------- /src/app/core/enums/event-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/enums/event-types.ts -------------------------------------------------------------------------------- /src/app/core/enums/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/enums/order.ts -------------------------------------------------------------------------------- /src/app/core/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/core/footer/footer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/core/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/core/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/core/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/header/header.component.html -------------------------------------------------------------------------------- /src/app/core/header/header.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/core/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/app/core/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/header/header.component.ts -------------------------------------------------------------------------------- /src/app/core/layout-mode/layout-mode.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/layout-mode/layout-mode.component.html -------------------------------------------------------------------------------- /src/app/core/layout-mode/layout-mode.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/layout-mode/layout-mode.component.scss -------------------------------------------------------------------------------- /src/app/core/layout-mode/layout-mode.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/layout-mode/layout-mode.component.spec.ts -------------------------------------------------------------------------------- /src/app/core/layout-mode/layout-mode.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/layout-mode/layout-mode.component.ts -------------------------------------------------------------------------------- /src/app/core/models/Product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/models/Product.ts -------------------------------------------------------------------------------- /src/app/core/not-found/not-found.component.html: -------------------------------------------------------------------------------- 1 |

2 | Page not found 3 |

4 | -------------------------------------------------------------------------------- /src/app/core/not-found/not-found.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/core/not-found/not-found.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/not-found/not-found.component.spec.ts -------------------------------------------------------------------------------- /src/app/core/not-found/not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/not-found/not-found.component.ts -------------------------------------------------------------------------------- /src/app/core/pipes/brand.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/pipes/brand.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/core/pipes/brand.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/pipes/brand.pipe.ts -------------------------------------------------------------------------------- /src/app/core/pipes/order-by-price.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/pipes/order-by-price.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/core/pipes/order-by-price.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/pipes/order-by-price.pipe.ts -------------------------------------------------------------------------------- /src/app/core/pipes/price-formatter.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/pipes/price-formatter.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/core/pipes/price-formatter.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/pipes/price-formatter.pipe.ts -------------------------------------------------------------------------------- /src/app/core/pipes/shorten-title.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/pipes/shorten-title.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/core/pipes/shorten-title.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/pipes/shorten-title.pipe.ts -------------------------------------------------------------------------------- /src/app/core/pure-pipes/brand.pure.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/pure-pipes/brand.pure.pipe.ts -------------------------------------------------------------------------------- /src/app/core/pure-pipes/order-by-price.pure.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/core/pure-pipes/order-by-price.pure.pipe.ts -------------------------------------------------------------------------------- /src/app/filters/brand-filter/brand-filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/filters/brand-filter/brand-filter.component.html -------------------------------------------------------------------------------- /src/app/filters/brand-filter/brand-filter.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/filters/brand-filter/brand-filter.component.scss -------------------------------------------------------------------------------- /src/app/filters/brand-filter/brand-filter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/filters/brand-filter/brand-filter.component.spec.ts -------------------------------------------------------------------------------- /src/app/filters/brand-filter/brand-filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/filters/brand-filter/brand-filter.component.ts -------------------------------------------------------------------------------- /src/app/filters/filters.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/filters/filters.module.ts -------------------------------------------------------------------------------- /src/app/filters/price-filter/price-filter.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/filters/price-filter/price-filter.component.html -------------------------------------------------------------------------------- /src/app/filters/price-filter/price-filter.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/filters/price-filter/price-filter.component.scss -------------------------------------------------------------------------------- /src/app/filters/price-filter/price-filter.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/filters/price-filter/price-filter.component.spec.ts -------------------------------------------------------------------------------- /src/app/filters/price-filter/price-filter.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/filters/price-filter/price-filter.component.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pages/home/home.component.html -------------------------------------------------------------------------------- /src/app/pages/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pages/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pages/home/home.component.ts -------------------------------------------------------------------------------- /src/app/pages/pages.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pages/pages.module.ts -------------------------------------------------------------------------------- /src/app/pages/pages.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pages/pages.route.ts -------------------------------------------------------------------------------- /src/app/pages/product-detail-page/product-detail-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pages/product-detail-page/product-detail-page.component.html -------------------------------------------------------------------------------- /src/app/pages/product-detail-page/product-detail-page.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/product-detail-page/product-detail-page.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pages/product-detail-page/product-detail-page.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/product-detail-page/product-detail-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pages/product-detail-page/product-detail-page.component.ts -------------------------------------------------------------------------------- /src/app/pages/shopping-cart-page/shopping-cart-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pages/shopping-cart-page/shopping-cart-page.component.html -------------------------------------------------------------------------------- /src/app/pages/shopping-cart-page/shopping-cart-page.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/shopping-cart-page/shopping-cart-page.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pages/shopping-cart-page/shopping-cart-page.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/shopping-cart-page/shopping-cart-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pages/shopping-cart-page/shopping-cart-page.component.ts -------------------------------------------------------------------------------- /src/app/pagination/pagination.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pagination/pagination.module.ts -------------------------------------------------------------------------------- /src/app/pagination/pagination.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pagination/pagination.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pagination/pagination.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pagination/pagination.pipe.ts -------------------------------------------------------------------------------- /src/app/pagination/pagination/pagination.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pagination/pagination/pagination.component.html -------------------------------------------------------------------------------- /src/app/pagination/pagination/pagination.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pagination/pagination/pagination.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pagination/pagination/pagination.component.spec.ts -------------------------------------------------------------------------------- /src/app/pagination/pagination/pagination.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/pagination/pagination/pagination.component.ts -------------------------------------------------------------------------------- /src/app/products/product-detail/product-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-detail/product-detail.component.html -------------------------------------------------------------------------------- /src/app/products/product-detail/product-detail.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/products/product-detail/product-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-detail/product-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/products/product-detail/product-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-detail/product-detail.component.ts -------------------------------------------------------------------------------- /src/app/products/product-list/product-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-list/product-list.component.html -------------------------------------------------------------------------------- /src/app/products/product-list/product-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/products/product-list/product-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-list/product-list.component.spec.ts -------------------------------------------------------------------------------- /src/app/products/product-list/product-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-list/product-list.component.ts -------------------------------------------------------------------------------- /src/app/products/product-slider-dots/product-slider-dots.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-slider-dots/product-slider-dots.component.html -------------------------------------------------------------------------------- /src/app/products/product-slider-dots/product-slider-dots.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-slider-dots/product-slider-dots.component.scss -------------------------------------------------------------------------------- /src/app/products/product-slider-dots/product-slider-dots.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-slider-dots/product-slider-dots.component.spec.ts -------------------------------------------------------------------------------- /src/app/products/product-slider-dots/product-slider-dots.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-slider-dots/product-slider-dots.component.ts -------------------------------------------------------------------------------- /src/app/products/product-slider/product-slider.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-slider/product-slider.component.html -------------------------------------------------------------------------------- /src/app/products/product-slider/product-slider.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-slider/product-slider.component.scss -------------------------------------------------------------------------------- /src/app/products/product-slider/product-slider.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-slider/product-slider.component.spec.ts -------------------------------------------------------------------------------- /src/app/products/product-slider/product-slider.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product-slider/product-slider.component.ts -------------------------------------------------------------------------------- /src/app/products/product/product.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product/product.component.html -------------------------------------------------------------------------------- /src/app/products/product/product.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product/product.component.scss -------------------------------------------------------------------------------- /src/app/products/product/product.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product/product.component.spec.ts -------------------------------------------------------------------------------- /src/app/products/product/product.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/product/product.component.ts -------------------------------------------------------------------------------- /src/app/products/products.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/products.module.ts -------------------------------------------------------------------------------- /src/app/products/products.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/products/products.routes.ts -------------------------------------------------------------------------------- /src/app/shopping-cart/shopping-cart-container/shopping-cart-container.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/shopping-cart/shopping-cart-container/shopping-cart-container.component.html -------------------------------------------------------------------------------- /src/app/shopping-cart/shopping-cart-container/shopping-cart-container.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shopping-cart/shopping-cart-container/shopping-cart-container.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/shopping-cart/shopping-cart-container/shopping-cart-container.component.spec.ts -------------------------------------------------------------------------------- /src/app/shopping-cart/shopping-cart-container/shopping-cart-container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/shopping-cart/shopping-cart-container/shopping-cart-container.component.ts -------------------------------------------------------------------------------- /src/app/shopping-cart/shopping-cart-item/shopping-cart-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/shopping-cart/shopping-cart-item/shopping-cart-item.component.html -------------------------------------------------------------------------------- /src/app/shopping-cart/shopping-cart-item/shopping-cart-item.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/shopping-cart/shopping-cart-item/shopping-cart-item.component.scss -------------------------------------------------------------------------------- /src/app/shopping-cart/shopping-cart-item/shopping-cart-item.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/shopping-cart/shopping-cart-item/shopping-cart-item.component.spec.ts -------------------------------------------------------------------------------- /src/app/shopping-cart/shopping-cart-item/shopping-cart-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/shopping-cart/shopping-cart-item/shopping-cart-item.component.ts -------------------------------------------------------------------------------- /src/app/shopping-cart/shopping-cart.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/shopping-cart/shopping-cart.module.ts -------------------------------------------------------------------------------- /src/app/store/app.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/store/app.reducer.ts -------------------------------------------------------------------------------- /src/app/store/brand-filter/brand-filter.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/store/brand-filter/brand-filter.action.ts -------------------------------------------------------------------------------- /src/app/store/brand-filter/brand-filter.action.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/store/brand-filter/brand-filter.action.types.ts -------------------------------------------------------------------------------- /src/app/store/brand-filter/brand-filter.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/store/brand-filter/brand-filter.reducer.ts -------------------------------------------------------------------------------- /src/app/store/price-filter/price-filter.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/store/price-filter/price-filter.action.ts -------------------------------------------------------------------------------- /src/app/store/price-filter/price-filter.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/store/price-filter/price-filter.reducer.ts -------------------------------------------------------------------------------- /src/app/store/price-filter/price-filter.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/store/price-filter/price-filter.types.ts -------------------------------------------------------------------------------- /src/app/store/shop/shop.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/store/shop/shop.action.ts -------------------------------------------------------------------------------- /src/app/store/shop/shop.action.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/store/shop/shop.action.types.ts -------------------------------------------------------------------------------- /src/app/store/shop/shop.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/store/shop/shop.reducer.ts -------------------------------------------------------------------------------- /src/app/utilities/cumulativeOffset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/app/utilities/cumulativeOffset.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/browserslist -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCoderDream/Angular-Ecommerce-App-with-NGRX/HEAD/tslint.json --------------------------------------------------------------------------------