├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── admin │ │ ├── admin-routing.module.ts │ │ ├── admin.module.ts │ │ ├── admin.service.ts │ │ └── components │ │ │ ├── dashboard │ │ │ ├── dashboard.component.css │ │ │ ├── dashboard.component.html │ │ │ └── dashboard.component.ts │ │ │ ├── manage-categories │ │ │ ├── manage-categories.component.css │ │ │ ├── manage-categories.component.html │ │ │ └── manage-categories.component.ts │ │ │ ├── manage-orders │ │ │ ├── manage-orders.component.css │ │ │ ├── manage-orders.component.html │ │ │ └── manage-orders.component.ts │ │ │ └── manage-users │ │ │ ├── manage-users.component.css │ │ │ ├── manage-users.component.html │ │ │ └── manage-users.component.ts │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ ├── auth │ │ │ ├── login │ │ │ │ ├── login.component.css │ │ │ │ ├── login.component.html │ │ │ │ └── login.component.ts │ │ │ └── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ ├── cart │ │ │ ├── cart.component.css │ │ │ ├── cart.component.html │ │ │ └── cart.component.ts │ │ ├── category-details │ │ │ ├── category-details.component.css │ │ │ ├── category-details.component.html │ │ │ └── category-details.component.ts │ │ ├── category-list │ │ │ ├── category-list.component.css │ │ │ ├── category-list.component.html │ │ │ └── category-list.component.ts │ │ ├── contact │ │ │ ├── contact.component.css │ │ │ ├── contact.component.html │ │ │ └── contact.component.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ └── home.component.ts │ │ ├── order │ │ │ ├── order.component.css │ │ │ ├── order.component.html │ │ │ └── order.component.ts │ │ ├── product-details │ │ │ ├── product-details.component.css │ │ │ ├── product-details.component.html │ │ │ └── product-details.component.ts │ │ ├── product-list │ │ │ ├── product-list.component.css │ │ │ ├── product-list.component.html │ │ │ └── product-list.component.ts │ │ └── profile │ │ │ ├── profile.component.css │ │ │ ├── profile.component.html │ │ │ └── profile.component.ts │ ├── enums │ │ ├── category-type.enum.ts │ │ ├── order-status.enum.ts │ │ └── payment-methods.enum.ts │ ├── guards │ │ ├── admin-auth.guard.ts │ │ └── user-auth.guard.ts │ ├── models │ │ ├── cart-item.ts │ │ ├── cart.ts │ │ ├── category.ts │ │ ├── invoice.ts │ │ ├── order-item.ts │ │ ├── order.ts │ │ ├── payment.ts │ │ ├── product.ts │ │ ├── profile.ts │ │ ├── user-data.ts │ │ └── user.ts │ ├── pipes │ │ └── product-filter.pipe.ts │ ├── resolvers │ │ ├── admin-resolver.service.ts │ │ ├── cart-resolver.service.ts │ │ ├── category-resolver.service.ts │ │ ├── order-resolver.service.ts │ │ ├── product-resolver.service.ts │ │ ├── profile-resolver.service.ts │ │ └── user-resolver.service.ts │ ├── services │ │ ├── alert │ │ │ └── alert.service.ts │ │ ├── auth │ │ │ ├── auth.service.ts │ │ │ ├── error-interceptor.service.ts │ │ │ └── token-interceptor.service.ts │ │ ├── cart │ │ │ └── cart.service.ts │ │ ├── category │ │ │ └── category.service.ts │ │ ├── invoice │ │ │ └── invoice.service.ts │ │ ├── order │ │ │ └── order.service.ts │ │ ├── payment │ │ │ └── payment.service.ts │ │ └── product │ │ │ └── product.service.ts │ └── shared │ │ ├── add-to-cart │ │ ├── add-to-cart.component.css │ │ ├── add-to-cart.component.html │ │ └── add-to-cart.component.ts │ │ ├── alert │ │ ├── alert.component.css │ │ ├── alert.component.html │ │ └── alert.component.ts │ │ ├── application-error │ │ ├── application-error.component.css │ │ ├── application-error.component.html │ │ └── application-error.component.ts │ │ ├── error-handler.ts │ │ ├── files │ │ └── files.module.ts │ │ ├── material │ │ └── material.module.ts │ │ ├── ngx │ │ └── ngx.module.ts │ │ ├── page-not-found │ │ ├── page-not-found.component.css │ │ ├── page-not-found.component.html │ │ └── page-not-found.component.ts │ │ └── resource-not-found │ │ ├── resource-not-found.component.css │ │ ├── resource-not-found.component.html │ │ └── resource-not-found.component.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/browserslist -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/package.json -------------------------------------------------------------------------------- /src/app/admin/admin-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/admin/admin-routing.module.ts -------------------------------------------------------------------------------- /src/app/admin/admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/admin/admin.module.ts -------------------------------------------------------------------------------- /src/app/admin/admin.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/admin/admin.service.ts -------------------------------------------------------------------------------- /src/app/admin/components/dashboard/dashboard.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/admin/components/dashboard/dashboard.component.css -------------------------------------------------------------------------------- /src/app/admin/components/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/admin/components/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/admin/components/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/admin/components/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/admin/components/manage-categories/manage-categories.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/admin/components/manage-categories/manage-categories.component.css -------------------------------------------------------------------------------- /src/app/admin/components/manage-categories/manage-categories.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/admin/components/manage-categories/manage-categories.component.html -------------------------------------------------------------------------------- /src/app/admin/components/manage-categories/manage-categories.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/admin/components/manage-categories/manage-categories.component.ts -------------------------------------------------------------------------------- /src/app/admin/components/manage-orders/manage-orders.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/admin/components/manage-orders/manage-orders.component.html: -------------------------------------------------------------------------------- 1 |

manage-orders works!

2 | -------------------------------------------------------------------------------- /src/app/admin/components/manage-orders/manage-orders.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/admin/components/manage-orders/manage-orders.component.ts -------------------------------------------------------------------------------- /src/app/admin/components/manage-users/manage-users.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/admin/components/manage-users/manage-users.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/admin/components/manage-users/manage-users.component.html -------------------------------------------------------------------------------- /src/app/admin/components/manage-users/manage-users.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/admin/components/manage-users/manage-users.component.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/app.component.css -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/auth/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/auth/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/auth/login/login.component.html -------------------------------------------------------------------------------- /src/app/components/auth/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/auth/login/login.component.ts -------------------------------------------------------------------------------- /src/app/components/auth/register/register.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/auth/register/register.component.css -------------------------------------------------------------------------------- /src/app/components/auth/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/auth/register/register.component.html -------------------------------------------------------------------------------- /src/app/components/auth/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/auth/register/register.component.ts -------------------------------------------------------------------------------- /src/app/components/cart/cart.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/cart/cart.component.css -------------------------------------------------------------------------------- /src/app/components/cart/cart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/cart/cart.component.html -------------------------------------------------------------------------------- /src/app/components/cart/cart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/cart/cart.component.ts -------------------------------------------------------------------------------- /src/app/components/category-details/category-details.component.css: -------------------------------------------------------------------------------- 1 | .card-img-top { 2 | height: 200px; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/components/category-details/category-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/category-details/category-details.component.html -------------------------------------------------------------------------------- /src/app/components/category-details/category-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/category-details/category-details.component.ts -------------------------------------------------------------------------------- /src/app/components/category-list/category-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/category-list/category-list.component.css -------------------------------------------------------------------------------- /src/app/components/category-list/category-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/category-list/category-list.component.html -------------------------------------------------------------------------------- /src/app/components/category-list/category-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/category-list/category-list.component.ts -------------------------------------------------------------------------------- /src/app/components/contact/contact.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/contact/contact.component.css -------------------------------------------------------------------------------- /src/app/components/contact/contact.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/contact/contact.component.html -------------------------------------------------------------------------------- /src/app/components/contact/contact.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/contact/contact.component.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/home/home.component.html -------------------------------------------------------------------------------- /src/app/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/components/order/order.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/order/order.component.css -------------------------------------------------------------------------------- /src/app/components/order/order.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/order/order.component.html -------------------------------------------------------------------------------- /src/app/components/order/order.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/order/order.component.ts -------------------------------------------------------------------------------- /src/app/components/product-details/product-details.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/product-details/product-details.component.css -------------------------------------------------------------------------------- /src/app/components/product-details/product-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/product-details/product-details.component.html -------------------------------------------------------------------------------- /src/app/components/product-details/product-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/product-details/product-details.component.ts -------------------------------------------------------------------------------- /src/app/components/product-list/product-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/product-list/product-list.component.css -------------------------------------------------------------------------------- /src/app/components/product-list/product-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/product-list/product-list.component.html -------------------------------------------------------------------------------- /src/app/components/product-list/product-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/product-list/product-list.component.ts -------------------------------------------------------------------------------- /src/app/components/profile/profile.component.css: -------------------------------------------------------------------------------- 1 | .tit { 2 | font-family: 'Anton', sans-serif; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /src/app/components/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/profile/profile.component.html -------------------------------------------------------------------------------- /src/app/components/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/components/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/enums/category-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/enums/category-type.enum.ts -------------------------------------------------------------------------------- /src/app/enums/order-status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/enums/order-status.enum.ts -------------------------------------------------------------------------------- /src/app/enums/payment-methods.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/enums/payment-methods.enum.ts -------------------------------------------------------------------------------- /src/app/guards/admin-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/guards/admin-auth.guard.ts -------------------------------------------------------------------------------- /src/app/guards/user-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/guards/user-auth.guard.ts -------------------------------------------------------------------------------- /src/app/models/cart-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/models/cart-item.ts -------------------------------------------------------------------------------- /src/app/models/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/models/cart.ts -------------------------------------------------------------------------------- /src/app/models/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/models/category.ts -------------------------------------------------------------------------------- /src/app/models/invoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/models/invoice.ts -------------------------------------------------------------------------------- /src/app/models/order-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/models/order-item.ts -------------------------------------------------------------------------------- /src/app/models/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/models/order.ts -------------------------------------------------------------------------------- /src/app/models/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/models/payment.ts -------------------------------------------------------------------------------- /src/app/models/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/models/product.ts -------------------------------------------------------------------------------- /src/app/models/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/models/profile.ts -------------------------------------------------------------------------------- /src/app/models/user-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/models/user-data.ts -------------------------------------------------------------------------------- /src/app/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/models/user.ts -------------------------------------------------------------------------------- /src/app/pipes/product-filter.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/pipes/product-filter.pipe.ts -------------------------------------------------------------------------------- /src/app/resolvers/admin-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/resolvers/admin-resolver.service.ts -------------------------------------------------------------------------------- /src/app/resolvers/cart-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/resolvers/cart-resolver.service.ts -------------------------------------------------------------------------------- /src/app/resolvers/category-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/resolvers/category-resolver.service.ts -------------------------------------------------------------------------------- /src/app/resolvers/order-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/resolvers/order-resolver.service.ts -------------------------------------------------------------------------------- /src/app/resolvers/product-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/resolvers/product-resolver.service.ts -------------------------------------------------------------------------------- /src/app/resolvers/profile-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/resolvers/profile-resolver.service.ts -------------------------------------------------------------------------------- /src/app/resolvers/user-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/resolvers/user-resolver.service.ts -------------------------------------------------------------------------------- /src/app/services/alert/alert.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/services/alert/alert.service.ts -------------------------------------------------------------------------------- /src/app/services/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/services/auth/auth.service.ts -------------------------------------------------------------------------------- /src/app/services/auth/error-interceptor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/services/auth/error-interceptor.service.ts -------------------------------------------------------------------------------- /src/app/services/auth/token-interceptor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/services/auth/token-interceptor.service.ts -------------------------------------------------------------------------------- /src/app/services/cart/cart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/services/cart/cart.service.ts -------------------------------------------------------------------------------- /src/app/services/category/category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/services/category/category.service.ts -------------------------------------------------------------------------------- /src/app/services/invoice/invoice.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/services/invoice/invoice.service.ts -------------------------------------------------------------------------------- /src/app/services/order/order.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/services/order/order.service.ts -------------------------------------------------------------------------------- /src/app/services/payment/payment.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/services/payment/payment.service.ts -------------------------------------------------------------------------------- /src/app/services/product/product.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/services/product/product.service.ts -------------------------------------------------------------------------------- /src/app/shared/add-to-cart/add-to-cart.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/add-to-cart/add-to-cart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/add-to-cart/add-to-cart.component.html -------------------------------------------------------------------------------- /src/app/shared/add-to-cart/add-to-cart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/add-to-cart/add-to-cart.component.ts -------------------------------------------------------------------------------- /src/app/shared/alert/alert.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/alert/alert.component.html: -------------------------------------------------------------------------------- 1 |

alert works!

2 | -------------------------------------------------------------------------------- /src/app/shared/alert/alert.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/alert/alert.component.ts -------------------------------------------------------------------------------- /src/app/shared/application-error/application-error.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/application-error/application-error.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/application-error/application-error.component.html -------------------------------------------------------------------------------- /src/app/shared/application-error/application-error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/application-error/application-error.component.ts -------------------------------------------------------------------------------- /src/app/shared/error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/error-handler.ts -------------------------------------------------------------------------------- /src/app/shared/files/files.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/files/files.module.ts -------------------------------------------------------------------------------- /src/app/shared/material/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/material/material.module.ts -------------------------------------------------------------------------------- /src/app/shared/ngx/ngx.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/ngx/ngx.module.ts -------------------------------------------------------------------------------- /src/app/shared/page-not-found/page-not-found.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/page-not-found/page-not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/page-not-found/page-not-found.component.html -------------------------------------------------------------------------------- /src/app/shared/page-not-found/page-not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/page-not-found/page-not-found.component.ts -------------------------------------------------------------------------------- /src/app/shared/resource-not-found/resource-not-found.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/resource-not-found/resource-not-found.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/resource-not-found/resource-not-found.component.html -------------------------------------------------------------------------------- /src/app/shared/resource-not-found/resource-not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/app/shared/resource-not-found/resource-not-found.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammadqaderi/Ecommerce-Demo/HEAD/tslint.json --------------------------------------------------------------------------------