├── .browserslistrc ├── .editorconfig ├── .gitignore ├── .nvmrc ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── firebase.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── admin.guard.spec.ts │ ├── admin.guard.ts │ ├── admin │ │ ├── admin-routing.module.ts │ │ ├── admin.module.ts │ │ ├── categories │ │ │ ├── categories-routing.module.ts │ │ │ ├── categories.module.ts │ │ │ └── components │ │ │ │ ├── categories │ │ │ │ ├── categories.component.html │ │ │ │ ├── categories.component.scss │ │ │ │ ├── categories.component.spec.ts │ │ │ │ └── categories.component.ts │ │ │ │ └── category-form │ │ │ │ ├── category-form.component.html │ │ │ │ ├── category-form.component.scss │ │ │ │ ├── category-form.component.spec.ts │ │ │ │ └── category-form.component.ts │ │ ├── components │ │ │ └── nav │ │ │ │ ├── nav.component.html │ │ │ │ ├── nav.component.scss │ │ │ │ ├── nav.component.spec.ts │ │ │ │ └── nav.component.ts │ │ ├── dashboard │ │ │ ├── components │ │ │ │ └── dashboard │ │ │ │ │ ├── dashboard.component.html │ │ │ │ │ ├── dashboard.component.scss │ │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ │ └── dashboard.component.ts │ │ │ ├── dashboard-routing.module.ts │ │ │ └── dashboard.module.ts │ │ └── products │ │ │ ├── components │ │ │ ├── product-create │ │ │ │ ├── product-create.component.html │ │ │ │ ├── product-create.component.scss │ │ │ │ └── product-create.component.ts │ │ │ ├── product-edit │ │ │ │ ├── product-edit.component.html │ │ │ │ ├── product-edit.component.scss │ │ │ │ ├── product-edit.component.spec.ts │ │ │ │ └── product-edit.component.ts │ │ │ └── products │ │ │ │ ├── products.component.html │ │ │ │ ├── products.component.scss │ │ │ │ ├── products.component.spec.ts │ │ │ │ └── products.component.ts │ │ │ ├── products-routing.module.ts │ │ │ └── products.module.ts │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── auth │ │ ├── auth-routing.module.ts │ │ ├── auth.module.ts │ │ └── components │ │ │ ├── login │ │ │ ├── login.component.html │ │ │ ├── login.component.scss │ │ │ ├── login.component.spec.ts │ │ │ └── login.component.ts │ │ │ └── register │ │ │ ├── register.component.html │ │ │ ├── register.component.scss │ │ │ ├── register.component.spec.ts │ │ │ └── register.component.ts │ ├── contact │ │ ├── components │ │ │ └── contact │ │ │ │ ├── contact.component.html │ │ │ │ ├── contact.component.scss │ │ │ │ ├── contact.component.spec.ts │ │ │ │ └── contact.component.ts │ │ ├── contact-routing.module.ts │ │ └── contact.module.ts │ ├── core │ │ ├── core.module.ts │ │ ├── models │ │ │ └── product.model.ts │ │ └── services │ │ │ ├── auth.service.spec.ts │ │ │ ├── auth.service.ts │ │ │ ├── cart.service.spec.ts │ │ │ ├── cart.service.ts │ │ │ └── products │ │ │ ├── products.service.spec.ts │ │ │ └── products.service.ts │ ├── demo │ │ ├── components │ │ │ └── demo │ │ │ │ ├── demo.component.html │ │ │ │ ├── demo.component.scss │ │ │ │ ├── demo.component.spec.ts │ │ │ │ └── demo.component.ts │ │ ├── demo-routing.module.ts │ │ └── demo.module.ts │ ├── home │ │ ├── components │ │ │ ├── banner │ │ │ │ ├── banner.component.html │ │ │ │ ├── banner.component.scss │ │ │ │ ├── banner.component.spec.ts │ │ │ │ └── banner.component.ts │ │ │ └── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.scss │ │ │ │ ├── home.component.spec.ts │ │ │ │ └── home.component.ts │ │ ├── home-routing.module.ts │ │ └── home.module.ts │ ├── layout │ │ ├── layout.component.html │ │ ├── layout.component.scss │ │ ├── layout.component.spec.ts │ │ └── layout.component.ts │ ├── material │ │ └── material.module.ts │ ├── order │ │ ├── components │ │ │ └── order │ │ │ │ ├── order.component.html │ │ │ │ ├── order.component.scss │ │ │ │ ├── order.component.spec.ts │ │ │ │ └── order.component.ts │ │ ├── order-routing.module.ts │ │ └── order.module.ts │ ├── page-not-found │ │ ├── components │ │ │ └── page-not-found │ │ │ │ ├── page-not-found.component.html │ │ │ │ ├── page-not-found.component.scss │ │ │ │ ├── page-not-found.component.spec.ts │ │ │ │ └── page-not-found.component.ts │ │ ├── page-not-found-routing.module.ts │ │ └── page-not-found.module.ts │ ├── product │ │ ├── components │ │ │ ├── product-detail │ │ │ │ ├── product-detail.component.html │ │ │ │ ├── product-detail.component.scss │ │ │ │ ├── product-detail.component.spec.ts │ │ │ │ └── product-detail.component.ts │ │ │ ├── product │ │ │ │ ├── product.component.html │ │ │ │ ├── product.component.scss │ │ │ │ └── product.component.ts │ │ │ └── products │ │ │ │ ├── products.component.html │ │ │ │ ├── products.component.scss │ │ │ │ ├── products.component.spec.ts │ │ │ │ └── products.component.ts │ │ ├── product-routing.module.ts │ │ └── product.module.ts │ ├── shared │ │ ├── components │ │ │ ├── cart │ │ │ │ ├── cart.component.html │ │ │ │ ├── cart.component.scss │ │ │ │ ├── cart.component.spec.ts │ │ │ │ └── cart.component.ts │ │ │ ├── footer │ │ │ │ ├── footer.component.html │ │ │ │ ├── footer.component.scss │ │ │ │ ├── footer.component.spec.ts │ │ │ │ └── footer.component.ts │ │ │ └── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.spec.ts │ │ │ │ └── header.component.ts │ │ ├── directives │ │ │ └── highlight │ │ │ │ ├── highlight.directive.spec.ts │ │ │ │ └── highlight.directive.ts │ │ ├── pipes │ │ │ └── exponential │ │ │ │ ├── exponential.pipe.spec.ts │ │ │ │ └── exponential.pipe.ts │ │ └── shared.module.ts │ └── utils │ │ └── validators.ts ├── assets │ ├── .gitkeep │ └── images │ │ ├── banner-1.jpg │ │ ├── banner-2.jpg │ │ ├── banner-3.jpg │ │ ├── camiseta.png │ │ ├── hoodie.png │ │ ├── mug.png │ │ ├── pin.png │ │ ├── stickers1.png │ │ └── stickers2.png ├── environments │ ├── environment.prod.ts │ ├── environment.stag.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.base.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/firebase.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/package.json -------------------------------------------------------------------------------- /src/app/admin.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin.guard.spec.ts -------------------------------------------------------------------------------- /src/app/admin.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin.guard.ts -------------------------------------------------------------------------------- /src/app/admin/admin-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/admin-routing.module.ts -------------------------------------------------------------------------------- /src/app/admin/admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/admin.module.ts -------------------------------------------------------------------------------- /src/app/admin/categories/categories-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/categories/categories-routing.module.ts -------------------------------------------------------------------------------- /src/app/admin/categories/categories.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/categories/categories.module.ts -------------------------------------------------------------------------------- /src/app/admin/categories/components/categories/categories.component.html: -------------------------------------------------------------------------------- 1 |
categories works!
2 | -------------------------------------------------------------------------------- /src/app/admin/categories/components/categories/categories.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/admin/categories/components/categories/categories.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/categories/components/categories/categories.component.spec.ts -------------------------------------------------------------------------------- /src/app/admin/categories/components/categories/categories.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/categories/components/categories/categories.component.ts -------------------------------------------------------------------------------- /src/app/admin/categories/components/category-form/category-form.component.html: -------------------------------------------------------------------------------- 1 |category-form works!
2 | -------------------------------------------------------------------------------- /src/app/admin/categories/components/category-form/category-form.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/admin/categories/components/category-form/category-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/categories/components/category-form/category-form.component.spec.ts -------------------------------------------------------------------------------- /src/app/admin/categories/components/category-form/category-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/categories/components/category-form/category-form.component.ts -------------------------------------------------------------------------------- /src/app/admin/components/nav/nav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/components/nav/nav.component.html -------------------------------------------------------------------------------- /src/app/admin/components/nav/nav.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/components/nav/nav.component.scss -------------------------------------------------------------------------------- /src/app/admin/components/nav/nav.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/components/nav/nav.component.spec.ts -------------------------------------------------------------------------------- /src/app/admin/components/nav/nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/components/nav/nav.component.ts -------------------------------------------------------------------------------- /src/app/admin/dashboard/components/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/dashboard/components/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/admin/dashboard/components/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/dashboard/components/dashboard/dashboard.component.scss -------------------------------------------------------------------------------- /src/app/admin/dashboard/components/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/dashboard/components/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /src/app/admin/dashboard/components/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/dashboard/components/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/admin/dashboard/dashboard-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/dashboard/dashboard-routing.module.ts -------------------------------------------------------------------------------- /src/app/admin/dashboard/dashboard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/dashboard/dashboard.module.ts -------------------------------------------------------------------------------- /src/app/admin/products/components/product-create/product-create.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/products/components/product-create/product-create.component.html -------------------------------------------------------------------------------- /src/app/admin/products/components/product-create/product-create.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/products/components/product-create/product-create.component.scss -------------------------------------------------------------------------------- /src/app/admin/products/components/product-create/product-create.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/products/components/product-create/product-create.component.ts -------------------------------------------------------------------------------- /src/app/admin/products/components/product-edit/product-edit.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/products/components/product-edit/product-edit.component.html -------------------------------------------------------------------------------- /src/app/admin/products/components/product-edit/product-edit.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/admin/products/components/product-edit/product-edit.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/products/components/product-edit/product-edit.component.spec.ts -------------------------------------------------------------------------------- /src/app/admin/products/components/product-edit/product-edit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/products/components/product-edit/product-edit.component.ts -------------------------------------------------------------------------------- /src/app/admin/products/components/products/products.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/products/components/products/products.component.html -------------------------------------------------------------------------------- /src/app/admin/products/components/products/products.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/products/components/products/products.component.scss -------------------------------------------------------------------------------- /src/app/admin/products/components/products/products.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/products/components/products/products.component.spec.ts -------------------------------------------------------------------------------- /src/app/admin/products/components/products/products.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/products/components/products/products.component.ts -------------------------------------------------------------------------------- /src/app/admin/products/products-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/products/products-routing.module.ts -------------------------------------------------------------------------------- /src/app/admin/products/products.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/admin/products/products.module.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/auth/auth-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/auth/auth-routing.module.ts -------------------------------------------------------------------------------- /src/app/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/auth/auth.module.ts -------------------------------------------------------------------------------- /src/app/auth/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/auth/components/login/login.component.html -------------------------------------------------------------------------------- /src/app/auth/components/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/auth/components/login/login.component.scss -------------------------------------------------------------------------------- /src/app/auth/components/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/auth/components/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/app/auth/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/auth/components/login/login.component.ts -------------------------------------------------------------------------------- /src/app/auth/components/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/auth/components/register/register.component.html -------------------------------------------------------------------------------- /src/app/auth/components/register/register.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/auth/components/register/register.component.scss -------------------------------------------------------------------------------- /src/app/auth/components/register/register.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/auth/components/register/register.component.spec.ts -------------------------------------------------------------------------------- /src/app/auth/components/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/auth/components/register/register.component.ts -------------------------------------------------------------------------------- /src/app/contact/components/contact/contact.component.html: -------------------------------------------------------------------------------- 1 |contact
2 | -------------------------------------------------------------------------------- /src/app/contact/components/contact/contact.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/contact/components/contact/contact.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/contact/components/contact/contact.component.spec.ts -------------------------------------------------------------------------------- /src/app/contact/components/contact/contact.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/contact/components/contact/contact.component.ts -------------------------------------------------------------------------------- /src/app/contact/contact-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/contact/contact-routing.module.ts -------------------------------------------------------------------------------- /src/app/contact/contact.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/contact/contact.module.ts -------------------------------------------------------------------------------- /src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/app/core/models/product.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/core/models/product.model.ts -------------------------------------------------------------------------------- /src/app/core/services/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/core/services/auth.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/core/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/core/services/cart.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/core/services/cart.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/cart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/core/services/cart.service.ts -------------------------------------------------------------------------------- /src/app/core/services/products/products.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/core/services/products/products.service.spec.ts -------------------------------------------------------------------------------- /src/app/core/services/products/products.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/core/services/products/products.service.ts -------------------------------------------------------------------------------- /src/app/demo/components/demo/demo.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/demo/components/demo/demo.component.html -------------------------------------------------------------------------------- /src/app/demo/components/demo/demo.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/demo/components/demo/demo.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/demo/components/demo/demo.component.spec.ts -------------------------------------------------------------------------------- /src/app/demo/components/demo/demo.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/demo/components/demo/demo.component.ts -------------------------------------------------------------------------------- /src/app/demo/demo-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/demo/demo-routing.module.ts -------------------------------------------------------------------------------- /src/app/demo/demo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/demo/demo.module.ts -------------------------------------------------------------------------------- /src/app/home/components/banner/banner.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/home/components/banner/banner.component.html -------------------------------------------------------------------------------- /src/app/home/components/banner/banner.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/home/components/banner/banner.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/home/components/banner/banner.component.spec.ts -------------------------------------------------------------------------------- /src/app/home/components/banner/banner.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/home/components/banner/banner.component.ts -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/home/components/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/home/components/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/home/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/home/home.module.ts -------------------------------------------------------------------------------- /src/app/layout/layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/layout/layout.component.html -------------------------------------------------------------------------------- /src/app/layout/layout.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/layout/layout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/layout/layout.component.spec.ts -------------------------------------------------------------------------------- /src/app/layout/layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/layout/layout.component.ts -------------------------------------------------------------------------------- /src/app/material/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/material/material.module.ts -------------------------------------------------------------------------------- /src/app/order/components/order/order.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/order/components/order/order.component.html -------------------------------------------------------------------------------- /src/app/order/components/order/order.component.scss: -------------------------------------------------------------------------------- 1 | .image{ 2 | max-width: 100%; 3 | } -------------------------------------------------------------------------------- /src/app/order/components/order/order.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/order/components/order/order.component.spec.ts -------------------------------------------------------------------------------- /src/app/order/components/order/order.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/order/components/order/order.component.ts -------------------------------------------------------------------------------- /src/app/order/order-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/order/order-routing.module.ts -------------------------------------------------------------------------------- /src/app/order/order.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/order/order.module.ts -------------------------------------------------------------------------------- /src/app/page-not-found/components/page-not-found/page-not-found.component.html: -------------------------------------------------------------------------------- 1 |page-not-found works!
2 | -------------------------------------------------------------------------------- /src/app/page-not-found/components/page-not-found/page-not-found.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/page-not-found/components/page-not-found/page-not-found.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/page-not-found/components/page-not-found/page-not-found.component.spec.ts -------------------------------------------------------------------------------- /src/app/page-not-found/components/page-not-found/page-not-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/page-not-found/components/page-not-found/page-not-found.component.ts -------------------------------------------------------------------------------- /src/app/page-not-found/page-not-found-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/page-not-found/page-not-found-routing.module.ts -------------------------------------------------------------------------------- /src/app/page-not-found/page-not-found.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/page-not-found/page-not-found.module.ts -------------------------------------------------------------------------------- /src/app/product/components/product-detail/product-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/product/components/product-detail/product-detail.component.html -------------------------------------------------------------------------------- /src/app/product/components/product-detail/product-detail.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/product/components/product-detail/product-detail.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/product/components/product-detail/product-detail.component.spec.ts -------------------------------------------------------------------------------- /src/app/product/components/product-detail/product-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/product/components/product-detail/product-detail.component.ts -------------------------------------------------------------------------------- /src/app/product/components/product/product.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/product/components/product/product.component.html -------------------------------------------------------------------------------- /src/app/product/components/product/product.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/product/components/product/product.component.scss -------------------------------------------------------------------------------- /src/app/product/components/product/product.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/product/components/product/product.component.ts -------------------------------------------------------------------------------- /src/app/product/components/products/products.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/product/components/products/products.component.html -------------------------------------------------------------------------------- /src/app/product/components/products/products.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/product/components/products/products.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/product/components/products/products.component.spec.ts -------------------------------------------------------------------------------- /src/app/product/components/products/products.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/product/components/products/products.component.ts -------------------------------------------------------------------------------- /src/app/product/product-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/product/product-routing.module.ts -------------------------------------------------------------------------------- /src/app/product/product.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/product/product.module.ts -------------------------------------------------------------------------------- /src/app/shared/components/cart/cart.component.html: -------------------------------------------------------------------------------- 1 |cart works!
2 | -------------------------------------------------------------------------------- /src/app/shared/components/cart/cart.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/components/cart/cart.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/components/cart/cart.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/cart/cart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/components/cart/cart.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/components/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/shared/components/footer/footer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/components/footer/footer.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/components/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/components/header/header.component.html -------------------------------------------------------------------------------- /src/app/shared/components/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/components/header/header.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/components/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/shared/directives/highlight/highlight.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/directives/highlight/highlight.directive.spec.ts -------------------------------------------------------------------------------- /src/app/shared/directives/highlight/highlight.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/directives/highlight/highlight.directive.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/exponential/exponential.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/pipes/exponential/exponential.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/shared/pipes/exponential/exponential.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/pipes/exponential/exponential.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/utils/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/app/utils/validators.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/assets/images/banner-1.jpg -------------------------------------------------------------------------------- /src/assets/images/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/assets/images/banner-2.jpg -------------------------------------------------------------------------------- /src/assets/images/banner-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/assets/images/banner-3.jpg -------------------------------------------------------------------------------- /src/assets/images/camiseta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/assets/images/camiseta.png -------------------------------------------------------------------------------- /src/assets/images/hoodie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/assets/images/hoodie.png -------------------------------------------------------------------------------- /src/assets/images/mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/assets/images/mug.png -------------------------------------------------------------------------------- /src/assets/images/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/assets/images/pin.png -------------------------------------------------------------------------------- /src/assets/images/stickers1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/assets/images/stickers1.png -------------------------------------------------------------------------------- /src/assets/images/stickers2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/assets/images/stickers2.png -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.stag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/environments/environment.stag.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platzi/platzi-store-forms/HEAD/tslint.json --------------------------------------------------------------------------------