├── .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 │ └── views │ │ ├── layout │ │ ├── base │ │ │ ├── base.component.css │ │ │ ├── base.component.html │ │ │ ├── base.component.spec.ts │ │ │ └── base.component.ts │ │ ├── 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 │ │ ├── pages │ │ ├── auth │ │ │ ├── auth.component.html │ │ │ ├── auth.component.ts │ │ │ ├── auth.module.ts │ │ │ ├── forget-password │ │ │ │ ├── forget-password.component.css │ │ │ │ ├── forget-password.component.html │ │ │ │ ├── forget-password.component.spec.ts │ │ │ │ └── forget-password.component.ts │ │ │ ├── login │ │ │ │ ├── login.component.css │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.spec.ts │ │ │ │ └── login.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ ├── register.component.spec.ts │ │ │ │ └── register.component.ts │ │ │ └── services │ │ │ │ ├── auth-guard.service.spec.ts │ │ │ │ ├── auth-guard.service.ts │ │ │ │ ├── auth.service.spec.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── jwt.interceptor.ts │ │ │ │ ├── localstorage.service.spec.ts │ │ │ │ └── localstorage.service.ts │ │ ├── checkout │ │ │ ├── checkout-complete │ │ │ │ ├── checkout-complete.component.css │ │ │ │ ├── checkout-complete.component.html │ │ │ │ ├── checkout-complete.component.spec.ts │ │ │ │ └── checkout-complete.component.ts │ │ │ ├── checkout-page │ │ │ │ ├── checkout-page.component.css │ │ │ │ ├── checkout-page.component.html │ │ │ │ ├── checkout-page.component.spec.ts │ │ │ │ └── checkout-page.component.ts │ │ │ ├── checkout.component.css │ │ │ ├── checkout.component.html │ │ │ ├── checkout.component.ts │ │ │ └── checkout.module.ts │ │ ├── error-page │ │ │ ├── error-page.component.css │ │ │ ├── error-page.component.html │ │ │ ├── error-page.component.spec.ts │ │ │ └── error-page.component.ts │ │ ├── general │ │ │ └── general.module.ts │ │ ├── models │ │ │ ├── cart.ts │ │ │ └── wishlist.ts │ │ ├── products │ │ │ ├── all-products │ │ │ │ ├── all-products.component.css │ │ │ │ ├── all-products.component.html │ │ │ │ ├── all-products.component.spec.ts │ │ │ │ └── all-products.component.ts │ │ │ ├── pipe │ │ │ │ ├── filter.pipe.spec.ts │ │ │ │ └── filter.pipe.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ ├── product-details.component.spec.ts │ │ │ │ └── product-details.component.ts │ │ │ ├── product │ │ │ │ ├── product.component.css │ │ │ │ ├── product.component.html │ │ │ │ ├── product.component.spec.ts │ │ │ │ └── product.component.ts │ │ │ ├── products.component.css │ │ │ ├── products.component.html │ │ │ ├── products.component.ts │ │ │ ├── products.module.ts │ │ │ └── services │ │ │ │ ├── product.service.spec.ts │ │ │ │ └── product.service.ts │ │ ├── services │ │ │ ├── cart.service.spec.ts │ │ │ ├── cart.service.ts │ │ │ ├── wishlist.service.spec.ts │ │ │ └── wishlist.service.ts │ │ └── user │ │ │ ├── profile │ │ │ ├── profile.component.css │ │ │ ├── profile.component.html │ │ │ ├── profile.component.spec.ts │ │ │ └── profile.component.ts │ │ │ ├── services │ │ │ ├── user.service.spec.ts │ │ │ └── user.service.ts │ │ │ ├── user.component.css │ │ │ ├── user.component.html │ │ │ ├── user.component.ts │ │ │ ├── user.module.ts │ │ │ └── wishlist │ │ │ ├── wishlist.component.css │ │ │ ├── wishlist.component.html │ │ │ ├── wishlist.component.spec.ts │ │ │ └── wishlist.component.ts │ │ └── shared │ │ ├── cart │ │ ├── cart.component.css │ │ ├── cart.component.html │ │ ├── cart.component.spec.ts │ │ └── cart.component.ts │ │ ├── confirm-model │ │ ├── confirm-model.component.css │ │ ├── confirm-model.component.html │ │ └── confirm-model.component.ts │ │ ├── shared.module.ts │ │ └── wishlist │ │ ├── wishlist.component.css │ │ ├── wishlist.component.html │ │ ├── wishlist.component.spec.ts │ │ └── wishlist.component.ts ├── assets │ ├── .gitkeep │ ├── css │ │ ├── nice-select.css │ │ └── structure.css │ └── images │ │ ├── 404.svg │ │ ├── ImageNotFound.png │ │ ├── avatar.jpg │ │ ├── banner.webp │ │ ├── gift.png │ │ ├── icon │ │ ├── car.png │ │ ├── marker.png │ │ ├── menu-bag.png │ │ └── menu-wishlist.png │ │ ├── login-bg.jpg │ │ ├── payment-support.png │ │ ├── stars-active.svg │ │ └── starts-disable.svg ├── 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/mahmoudEwiis/Ecommerce/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/angular.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/views/layout/base/base.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/layout/base/base.component.css -------------------------------------------------------------------------------- /src/app/views/layout/base/base.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/layout/base/base.component.html -------------------------------------------------------------------------------- /src/app/views/layout/base/base.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/layout/base/base.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/layout/base/base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/layout/base/base.component.ts -------------------------------------------------------------------------------- /src/app/views/layout/footer/footer.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/layout/footer/footer.component.css -------------------------------------------------------------------------------- /src/app/views/layout/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/layout/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/views/layout/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/layout/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/layout/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/layout/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/views/layout/header/header.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/layout/header/header.component.css -------------------------------------------------------------------------------- /src/app/views/layout/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/layout/header/header.component.html -------------------------------------------------------------------------------- /src/app/views/layout/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/layout/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/layout/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/layout/header/header.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/auth.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/auth.component.html -------------------------------------------------------------------------------- /src/app/views/pages/auth/auth.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/auth.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/auth.module.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/forget-password/forget-password.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/pages/auth/forget-password/forget-password.component.html: -------------------------------------------------------------------------------- 1 |

forget-password works!

2 | -------------------------------------------------------------------------------- /src/app/views/pages/auth/forget-password/forget-password.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/forget-password/forget-password.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/forget-password/forget-password.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/forget-password/forget-password.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/login/login.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/login/login.component.css -------------------------------------------------------------------------------- /src/app/views/pages/auth/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/login/login.component.html -------------------------------------------------------------------------------- /src/app/views/pages/auth/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/login/login.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/register/register.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/register/register.component.css -------------------------------------------------------------------------------- /src/app/views/pages/auth/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/register/register.component.html -------------------------------------------------------------------------------- /src/app/views/pages/auth/register/register.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/register/register.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/register/register.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/services/auth-guard.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/services/auth-guard.service.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/services/auth-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/services/auth-guard.service.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/services/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/services/auth.service.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/services/jwt.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/services/jwt.interceptor.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/services/localstorage.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/services/localstorage.service.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/auth/services/localstorage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/auth/services/localstorage.service.ts -------------------------------------------------------------------------------- /src/app/views/pages/checkout/checkout-complete/checkout-complete.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/checkout/checkout-complete/checkout-complete.component.css -------------------------------------------------------------------------------- /src/app/views/pages/checkout/checkout-complete/checkout-complete.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/checkout/checkout-complete/checkout-complete.component.html -------------------------------------------------------------------------------- /src/app/views/pages/checkout/checkout-complete/checkout-complete.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/checkout/checkout-complete/checkout-complete.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/checkout/checkout-complete/checkout-complete.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/checkout/checkout-complete/checkout-complete.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/checkout/checkout-page/checkout-page.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/checkout/checkout-page/checkout-page.component.css -------------------------------------------------------------------------------- /src/app/views/pages/checkout/checkout-page/checkout-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/checkout/checkout-page/checkout-page.component.html -------------------------------------------------------------------------------- /src/app/views/pages/checkout/checkout-page/checkout-page.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/checkout/checkout-page/checkout-page.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/checkout/checkout-page/checkout-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/checkout/checkout-page/checkout-page.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/checkout/checkout.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/pages/checkout/checkout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/checkout/checkout.component.html -------------------------------------------------------------------------------- /src/app/views/pages/checkout/checkout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/checkout/checkout.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/checkout/checkout.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/checkout/checkout.module.ts -------------------------------------------------------------------------------- /src/app/views/pages/error-page/error-page.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/error-page/error-page.component.css -------------------------------------------------------------------------------- /src/app/views/pages/error-page/error-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/error-page/error-page.component.html -------------------------------------------------------------------------------- /src/app/views/pages/error-page/error-page.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/error-page/error-page.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/error-page/error-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/error-page/error-page.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/general/general.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/general/general.module.ts -------------------------------------------------------------------------------- /src/app/views/pages/models/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/models/cart.ts -------------------------------------------------------------------------------- /src/app/views/pages/models/wishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/models/wishlist.ts -------------------------------------------------------------------------------- /src/app/views/pages/products/all-products/all-products.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/all-products/all-products.component.css -------------------------------------------------------------------------------- /src/app/views/pages/products/all-products/all-products.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/all-products/all-products.component.html -------------------------------------------------------------------------------- /src/app/views/pages/products/all-products/all-products.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/all-products/all-products.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/products/all-products/all-products.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/all-products/all-products.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/products/pipe/filter.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/pipe/filter.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/products/pipe/filter.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/pipe/filter.pipe.ts -------------------------------------------------------------------------------- /src/app/views/pages/products/product-details/product-details.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/product-details/product-details.component.css -------------------------------------------------------------------------------- /src/app/views/pages/products/product-details/product-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/product-details/product-details.component.html -------------------------------------------------------------------------------- /src/app/views/pages/products/product-details/product-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/product-details/product-details.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/products/product-details/product-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/product-details/product-details.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/products/product/product.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/product/product.component.css -------------------------------------------------------------------------------- /src/app/views/pages/products/product/product.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/product/product.component.html -------------------------------------------------------------------------------- /src/app/views/pages/products/product/product.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/product/product.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/products/product/product.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/product/product.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/views/pages/products/products.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/products.component.html -------------------------------------------------------------------------------- /src/app/views/pages/products/products.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/products.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/products/products.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/products.module.ts -------------------------------------------------------------------------------- /src/app/views/pages/products/services/product.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/services/product.service.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/products/services/product.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/products/services/product.service.ts -------------------------------------------------------------------------------- /src/app/views/pages/services/cart.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/services/cart.service.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/services/cart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/services/cart.service.ts -------------------------------------------------------------------------------- /src/app/views/pages/services/wishlist.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/services/wishlist.service.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/services/wishlist.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/services/wishlist.service.ts -------------------------------------------------------------------------------- /src/app/views/pages/user/profile/profile.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/profile/profile.component.css -------------------------------------------------------------------------------- /src/app/views/pages/user/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/profile/profile.component.html -------------------------------------------------------------------------------- /src/app/views/pages/user/profile/profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/profile/profile.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/user/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/user/services/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/services/user.service.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/user/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/services/user.service.ts -------------------------------------------------------------------------------- /src/app/views/pages/user/user.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/user.component.css -------------------------------------------------------------------------------- /src/app/views/pages/user/user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/user.component.html -------------------------------------------------------------------------------- /src/app/views/pages/user/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/user.component.ts -------------------------------------------------------------------------------- /src/app/views/pages/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/user.module.ts -------------------------------------------------------------------------------- /src/app/views/pages/user/wishlist/wishlist.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/wishlist/wishlist.component.css -------------------------------------------------------------------------------- /src/app/views/pages/user/wishlist/wishlist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/wishlist/wishlist.component.html -------------------------------------------------------------------------------- /src/app/views/pages/user/wishlist/wishlist.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/wishlist/wishlist.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/pages/user/wishlist/wishlist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/pages/user/wishlist/wishlist.component.ts -------------------------------------------------------------------------------- /src/app/views/shared/cart/cart.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/shared/cart/cart.component.css -------------------------------------------------------------------------------- /src/app/views/shared/cart/cart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/shared/cart/cart.component.html -------------------------------------------------------------------------------- /src/app/views/shared/cart/cart.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/shared/cart/cart.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/shared/cart/cart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/shared/cart/cart.component.ts -------------------------------------------------------------------------------- /src/app/views/shared/confirm-model/confirm-model.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/shared/confirm-model/confirm-model.component.css -------------------------------------------------------------------------------- /src/app/views/shared/confirm-model/confirm-model.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/shared/confirm-model/confirm-model.component.html -------------------------------------------------------------------------------- /src/app/views/shared/confirm-model/confirm-model.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/shared/confirm-model/confirm-model.component.ts -------------------------------------------------------------------------------- /src/app/views/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/views/shared/wishlist/wishlist.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/shared/wishlist/wishlist.component.css -------------------------------------------------------------------------------- /src/app/views/shared/wishlist/wishlist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/shared/wishlist/wishlist.component.html -------------------------------------------------------------------------------- /src/app/views/shared/wishlist/wishlist.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/shared/wishlist/wishlist.component.spec.ts -------------------------------------------------------------------------------- /src/app/views/shared/wishlist/wishlist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/app/views/shared/wishlist/wishlist.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/css/nice-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/css/nice-select.css -------------------------------------------------------------------------------- /src/assets/css/structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/css/structure.css -------------------------------------------------------------------------------- /src/assets/images/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/404.svg -------------------------------------------------------------------------------- /src/assets/images/ImageNotFound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/ImageNotFound.png -------------------------------------------------------------------------------- /src/assets/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/avatar.jpg -------------------------------------------------------------------------------- /src/assets/images/banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/banner.webp -------------------------------------------------------------------------------- /src/assets/images/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/gift.png -------------------------------------------------------------------------------- /src/assets/images/icon/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/icon/car.png -------------------------------------------------------------------------------- /src/assets/images/icon/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/icon/marker.png -------------------------------------------------------------------------------- /src/assets/images/icon/menu-bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/icon/menu-bag.png -------------------------------------------------------------------------------- /src/assets/images/icon/menu-wishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/icon/menu-wishlist.png -------------------------------------------------------------------------------- /src/assets/images/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/login-bg.jpg -------------------------------------------------------------------------------- /src/assets/images/payment-support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/payment-support.png -------------------------------------------------------------------------------- /src/assets/images/stars-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/stars-active.svg -------------------------------------------------------------------------------- /src/assets/images/starts-disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/assets/images/starts-disable.svg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahmoudEwiis/Ecommerce/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------