├── .env.test ├── .eslintrc.json ├── .gitignore ├── components.json ├── index.html ├── package.json ├── playwright.config.ts ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.cjs ├── public └── mockServiceWorker.js ├── src ├── api │ ├── approve-order.ts │ ├── cancel-order.ts │ ├── deliver-order.ts │ ├── dispatch-order.ts │ ├── get-daily-revenue-in-period.ts │ ├── get-day-orders-amount.ts │ ├── get-managed-restaurant.ts │ ├── get-month-canceled-orders-amount.ts │ ├── get-month-orders-amount.ts │ ├── get-month-revenue.ts │ ├── get-order-details.ts │ ├── get-orders.ts │ ├── get-popular-products.ts │ ├── get-profile.ts │ ├── mocks │ │ ├── approve-order-mock.ts │ │ ├── cancel-order-mock.ts │ │ ├── deliver-order-mock.ts │ │ ├── dispatch-order-mock.ts │ │ ├── get-daily-revenue-in-period-mock.ts │ │ ├── get-day-orders-amount.ts │ │ ├── get-managed-restaurant-mock.ts │ │ ├── get-month-canceled-orders-amount.ts │ │ ├── get-month-orders-amount.ts │ │ ├── get-month-revenue.ts │ │ ├── get-order-details-mock.ts │ │ ├── get-orders-mock.ts │ │ ├── get-popular-products-mock.ts │ │ ├── get-profile-mock.ts │ │ ├── index.ts │ │ ├── register-restaurant-mock.ts │ │ ├── sign-in-mock.ts │ │ └── update-profile-mock.ts │ ├── register-restaurant.ts │ ├── sign-in.ts │ ├── sign-out.ts │ └── update-profile.ts ├── app.tsx ├── components │ ├── account-menu.tsx │ ├── header.tsx │ ├── nav-link.spec.tsx │ ├── nav-link.tsx │ ├── order-status.spec.tsx │ ├── order-status.tsx │ ├── pagination.spec.tsx │ ├── pagination.tsx │ ├── store-profile-dialog.tsx │ ├── theme │ │ ├── theme-provider.tsx │ │ └── theme-toggle.tsx │ └── ui │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── date-range-picker.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── popover.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── skeleton.tsx │ │ ├── table.tsx │ │ └── textarea.tsx ├── env.ts ├── global.css ├── lib │ ├── axios.ts │ ├── react-query.ts │ └── utils.ts ├── main.tsx ├── pages │ ├── 404.tsx │ ├── _layouts │ │ ├── app.tsx │ │ └── auth.tsx │ ├── app │ │ ├── dashboard │ │ │ ├── dashboard.tsx │ │ │ ├── day-orders-amount-card.tsx │ │ │ ├── metric-card-skeleton.tsx │ │ │ ├── month-canceled-orders-amount-card.tsx │ │ │ ├── month-orders-amount-card.tsx │ │ │ ├── month-revenue-card.tsx │ │ │ ├── popular-products-chart.tsx │ │ │ └── revenue-chart.tsx │ │ └── orders │ │ │ ├── order-details-skeleton.tsx │ │ │ ├── order-details.tsx │ │ │ ├── order-table-filters.tsx │ │ │ ├── order-table-row.tsx │ │ │ ├── order-table-skeleton.tsx │ │ │ └── orders.tsx │ ├── auth │ │ ├── sign-in.spec.tsx │ │ ├── sign-in.tsx │ │ └── sign-up.tsx │ └── error.tsx ├── routes.tsx └── vite-env.d.ts ├── tailwind.config.js ├── test ├── dashboard.e2e-spec.ts ├── orders.e2e-spec.ts ├── setup.ts ├── sign-in.e2e-spec.ts ├── sign-up.e2e-spec.ts └── store-profile.e2e-spec.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/.env.test -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/.gitignore -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/components.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/public/mockServiceWorker.js -------------------------------------------------------------------------------- /src/api/approve-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/approve-order.ts -------------------------------------------------------------------------------- /src/api/cancel-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/cancel-order.ts -------------------------------------------------------------------------------- /src/api/deliver-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/deliver-order.ts -------------------------------------------------------------------------------- /src/api/dispatch-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/dispatch-order.ts -------------------------------------------------------------------------------- /src/api/get-daily-revenue-in-period.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/get-daily-revenue-in-period.ts -------------------------------------------------------------------------------- /src/api/get-day-orders-amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/get-day-orders-amount.ts -------------------------------------------------------------------------------- /src/api/get-managed-restaurant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/get-managed-restaurant.ts -------------------------------------------------------------------------------- /src/api/get-month-canceled-orders-amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/get-month-canceled-orders-amount.ts -------------------------------------------------------------------------------- /src/api/get-month-orders-amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/get-month-orders-amount.ts -------------------------------------------------------------------------------- /src/api/get-month-revenue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/get-month-revenue.ts -------------------------------------------------------------------------------- /src/api/get-order-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/get-order-details.ts -------------------------------------------------------------------------------- /src/api/get-orders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/get-orders.ts -------------------------------------------------------------------------------- /src/api/get-popular-products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/get-popular-products.ts -------------------------------------------------------------------------------- /src/api/get-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/get-profile.ts -------------------------------------------------------------------------------- /src/api/mocks/approve-order-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/approve-order-mock.ts -------------------------------------------------------------------------------- /src/api/mocks/cancel-order-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/cancel-order-mock.ts -------------------------------------------------------------------------------- /src/api/mocks/deliver-order-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/deliver-order-mock.ts -------------------------------------------------------------------------------- /src/api/mocks/dispatch-order-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/dispatch-order-mock.ts -------------------------------------------------------------------------------- /src/api/mocks/get-daily-revenue-in-period-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/get-daily-revenue-in-period-mock.ts -------------------------------------------------------------------------------- /src/api/mocks/get-day-orders-amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/get-day-orders-amount.ts -------------------------------------------------------------------------------- /src/api/mocks/get-managed-restaurant-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/get-managed-restaurant-mock.ts -------------------------------------------------------------------------------- /src/api/mocks/get-month-canceled-orders-amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/get-month-canceled-orders-amount.ts -------------------------------------------------------------------------------- /src/api/mocks/get-month-orders-amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/get-month-orders-amount.ts -------------------------------------------------------------------------------- /src/api/mocks/get-month-revenue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/get-month-revenue.ts -------------------------------------------------------------------------------- /src/api/mocks/get-order-details-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/get-order-details-mock.ts -------------------------------------------------------------------------------- /src/api/mocks/get-orders-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/get-orders-mock.ts -------------------------------------------------------------------------------- /src/api/mocks/get-popular-products-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/get-popular-products-mock.ts -------------------------------------------------------------------------------- /src/api/mocks/get-profile-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/get-profile-mock.ts -------------------------------------------------------------------------------- /src/api/mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/index.ts -------------------------------------------------------------------------------- /src/api/mocks/register-restaurant-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/register-restaurant-mock.ts -------------------------------------------------------------------------------- /src/api/mocks/sign-in-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/sign-in-mock.ts -------------------------------------------------------------------------------- /src/api/mocks/update-profile-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/mocks/update-profile-mock.ts -------------------------------------------------------------------------------- /src/api/register-restaurant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/register-restaurant.ts -------------------------------------------------------------------------------- /src/api/sign-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/sign-in.ts -------------------------------------------------------------------------------- /src/api/sign-out.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/sign-out.ts -------------------------------------------------------------------------------- /src/api/update-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/api/update-profile.ts -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/components/account-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/account-menu.tsx -------------------------------------------------------------------------------- /src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/header.tsx -------------------------------------------------------------------------------- /src/components/nav-link.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/nav-link.spec.tsx -------------------------------------------------------------------------------- /src/components/nav-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/nav-link.tsx -------------------------------------------------------------------------------- /src/components/order-status.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/order-status.spec.tsx -------------------------------------------------------------------------------- /src/components/order-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/order-status.tsx -------------------------------------------------------------------------------- /src/components/pagination.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/pagination.spec.tsx -------------------------------------------------------------------------------- /src/components/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/pagination.tsx -------------------------------------------------------------------------------- /src/components/store-profile-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/store-profile-dialog.tsx -------------------------------------------------------------------------------- /src/components/theme/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/theme/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/theme/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/theme/theme-toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/date-range-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/date-range-picker.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/global.css -------------------------------------------------------------------------------- /src/lib/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/lib/axios.ts -------------------------------------------------------------------------------- /src/lib/react-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/lib/react-query.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_layouts/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/_layouts/app.tsx -------------------------------------------------------------------------------- /src/pages/_layouts/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/_layouts/auth.tsx -------------------------------------------------------------------------------- /src/pages/app/dashboard/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/dashboard/dashboard.tsx -------------------------------------------------------------------------------- /src/pages/app/dashboard/day-orders-amount-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/dashboard/day-orders-amount-card.tsx -------------------------------------------------------------------------------- /src/pages/app/dashboard/metric-card-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/dashboard/metric-card-skeleton.tsx -------------------------------------------------------------------------------- /src/pages/app/dashboard/month-canceled-orders-amount-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/dashboard/month-canceled-orders-amount-card.tsx -------------------------------------------------------------------------------- /src/pages/app/dashboard/month-orders-amount-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/dashboard/month-orders-amount-card.tsx -------------------------------------------------------------------------------- /src/pages/app/dashboard/month-revenue-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/dashboard/month-revenue-card.tsx -------------------------------------------------------------------------------- /src/pages/app/dashboard/popular-products-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/dashboard/popular-products-chart.tsx -------------------------------------------------------------------------------- /src/pages/app/dashboard/revenue-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/dashboard/revenue-chart.tsx -------------------------------------------------------------------------------- /src/pages/app/orders/order-details-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/orders/order-details-skeleton.tsx -------------------------------------------------------------------------------- /src/pages/app/orders/order-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/orders/order-details.tsx -------------------------------------------------------------------------------- /src/pages/app/orders/order-table-filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/orders/order-table-filters.tsx -------------------------------------------------------------------------------- /src/pages/app/orders/order-table-row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/orders/order-table-row.tsx -------------------------------------------------------------------------------- /src/pages/app/orders/order-table-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/orders/order-table-skeleton.tsx -------------------------------------------------------------------------------- /src/pages/app/orders/orders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/app/orders/orders.tsx -------------------------------------------------------------------------------- /src/pages/auth/sign-in.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/auth/sign-in.spec.tsx -------------------------------------------------------------------------------- /src/pages/auth/sign-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/auth/sign-in.tsx -------------------------------------------------------------------------------- /src/pages/auth/sign-up.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/auth/sign-up.tsx -------------------------------------------------------------------------------- /src/pages/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/pages/error.tsx -------------------------------------------------------------------------------- /src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/src/routes.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test/dashboard.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/test/dashboard.e2e-spec.ts -------------------------------------------------------------------------------- /test/orders.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/test/orders.e2e-spec.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/sign-in.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/test/sign-in.e2e-spec.ts -------------------------------------------------------------------------------- /test/sign-up.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/test/sign-up.e2e-spec.ts -------------------------------------------------------------------------------- /test/store-profile.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/test/store-profile.e2e-spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/ignite-reactjs-04-pizzashop-web/HEAD/vite.config.ts --------------------------------------------------------------------------------