├── .gitignore ├── LICENSE ├── README.md ├── backend ├── .env.template ├── .gitignore ├── .medusa │ └── types │ │ ├── index.d.ts │ │ └── remote-query-entry-points.d.ts ├── .yarnrc.yml ├── README.md ├── data │ └── medusa-eats-seed-data.json ├── jest.config.js ├── medusa-config.ts ├── package.json ├── src │ ├── admin │ │ ├── components │ │ │ ├── actions-menu.tsx │ │ │ ├── delivery-actions-menu.tsx │ │ │ ├── delivery-items.tsx │ │ │ ├── delivery-row.tsx │ │ │ ├── driver-actions-menu.tsx │ │ │ └── icons.tsx │ │ ├── hooks │ │ │ └── index.tsx │ │ ├── routes │ │ │ ├── deliveries │ │ │ │ └── page.tsx │ │ │ ├── drivers │ │ │ │ └── page.tsx │ │ │ └── restaurants │ │ │ │ └── page.tsx │ │ └── tsconfig.json │ ├── api │ │ ├── README.md │ │ ├── middlewares.ts │ │ ├── store │ │ │ ├── deliveries │ │ │ │ ├── [id] │ │ │ │ │ ├── accept │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── claim │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── complete │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── decline │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── pass │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── pick-up │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── prepare │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── ready │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── route.ts │ │ │ │ │ └── subscribe │ │ │ │ │ │ └── route.ts │ │ │ │ ├── route.ts │ │ │ │ └── subscribe │ │ │ │ │ └── route.ts │ │ │ ├── drivers │ │ │ │ ├── [id] │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ ├── restaurants │ │ │ │ ├── [id] │ │ │ │ │ ├── admins │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── products │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── route.ts │ │ │ │ │ └── status │ │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ └── users │ │ │ │ ├── me │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ └── types.ts │ ├── jobs │ │ └── README.md │ ├── links │ │ ├── delivery-cart.ts │ │ ├── delivery-order.ts │ │ ├── restaurant-deliveries.ts │ │ └── restaurant-products.ts │ ├── loaders │ │ └── README.md │ ├── modules │ │ ├── delivery │ │ │ ├── index.ts │ │ │ ├── migrations │ │ │ │ ├── .snapshot-medusa-TGe-.json │ │ │ │ └── Migration20240822141125.ts │ │ │ ├── models │ │ │ │ ├── delivery-driver.ts │ │ │ │ ├── delivery.ts │ │ │ │ ├── driver.ts │ │ │ │ └── index.ts │ │ │ ├── service.ts │ │ │ └── types │ │ │ │ ├── common.ts │ │ │ │ └── mutations.ts │ │ └── restaurant │ │ │ ├── index.ts │ │ │ ├── migrations │ │ │ ├── .snapshot-medusa-eats.json │ │ │ └── Migration20240925143313.ts │ │ │ ├── models │ │ │ ├── index.ts │ │ │ ├── restaurant-admin.ts │ │ │ └── restaurant.ts │ │ │ ├── service.ts │ │ │ └── types │ │ │ ├── common.ts │ │ │ └── mutations.ts │ ├── scripts │ │ └── seed.ts │ ├── subscribers │ │ └── README.md │ ├── utils │ │ ├── create-variant-price-set.ts │ │ └── index.ts │ └── workflows │ │ ├── delivery │ │ ├── steps │ │ │ ├── await-delivery.ts │ │ │ ├── await-pick-up.ts │ │ │ ├── await-preparation.ts │ │ │ ├── await-start-preparation.ts │ │ │ ├── create-delivery.ts │ │ │ ├── create-fulfillment.ts │ │ │ ├── create-order.ts │ │ │ ├── delete-delivery-drivers.ts │ │ │ ├── find-driver.ts │ │ │ ├── index.ts │ │ │ ├── notify-restaurant.ts │ │ │ ├── set-transaction-id.ts │ │ │ └── update-delivery.ts │ │ └── workflows │ │ │ ├── claim-delivery.ts │ │ │ ├── create-delivery.ts │ │ │ ├── handle-delivery.ts │ │ │ ├── index.ts │ │ │ ├── pass-delivery.ts │ │ │ └── update-delivery.ts │ │ ├── restaurant │ │ ├── steps │ │ │ ├── create-restaurant.ts │ │ │ └── index.ts │ │ └── workflows │ │ │ ├── create-restaurant-products.ts │ │ │ ├── create-restaurant.ts │ │ │ └── index.ts │ │ ├── user │ │ ├── steps │ │ │ ├── create-user.ts │ │ │ ├── index.ts │ │ │ └── update-user.ts │ │ └── workflows │ │ │ ├── create-user.ts │ │ │ └── index.ts │ │ └── util │ │ └── steps │ │ ├── index.ts │ │ ├── set-step-failed.ts │ │ └── set-step-success.ts ├── tsconfig.json └── yarn.lock └── frontend ├── .env.template ├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── _1ed747de-53f1-4915-aaba-92c046039beb.jpeg ├── _35841975-1e89-4c07-adb8-208cc8c59e17.jpeg ├── _411c260a-d6e5-4989-9a00-1cd8b80265fb.jpeg ├── _4476ce30-b852-402d-b65f-e3db54165e4c.jpeg ├── _7a9bad3a-6f04-4030-a584-a622a1bb8c68.jpeg ├── _ca16b6a2-9c4c-4a6a-98fa-620f12f6123f.jpeg ├── _de4759b3-096f-47f6-936a-ea291df53f9f.jpeg ├── medusa-logo.svg ├── next.svg ├── notification.mp3 ├── pizza-loading.gif └── vercel.svg ├── src ├── app │ ├── (checkout) │ │ ├── checkout │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── your-order │ │ │ └── page.tsx │ ├── (store) │ │ ├── layout.tsx │ │ ├── login │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── restaurant │ │ │ └── [handle] │ │ │ │ └── page.tsx │ │ └── signup │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ ├── api │ │ └── subscribe │ │ │ └── route.ts │ ├── dashboard │ │ ├── driver │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── restaurant │ │ │ ├── menu │ │ │ └── page.tsx │ │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ └── layout.tsx ├── components │ ├── common │ │ ├── demo-modal.tsx │ │ ├── footer.tsx │ │ ├── icons.tsx │ │ └── profile-badge.tsx │ ├── dashboard │ │ ├── account-badge.tsx │ │ ├── completed-grid.tsx │ │ ├── delivery-card.tsx │ │ ├── delivery-column.tsx │ │ ├── driver │ │ │ ├── create-category-drawer.tsx │ │ │ ├── delivery-buttons.tsx │ │ │ └── delivery-status-badge.tsx │ │ ├── login-form.tsx │ │ ├── menu │ │ │ ├── create-category-drawer.tsx │ │ │ ├── create-category-form.tsx │ │ │ ├── create-product-drawer.tsx │ │ │ ├── create-product-form.tsx │ │ │ ├── menu-actions.tsx │ │ │ └── menu-product-actions.tsx │ │ ├── realtime-client.tsx │ │ ├── restaurant │ │ │ ├── delivery-buttons.tsx │ │ │ ├── delivery-status-badge.tsx │ │ │ └── restaurant-status.tsx │ │ └── signup-form.tsx │ └── store │ │ ├── cart │ │ ├── cart-button.tsx │ │ ├── cart-counter.tsx │ │ ├── cart-modal.tsx │ │ └── nav-cart.tsx │ │ ├── checkout │ │ ├── checkout-form.tsx │ │ └── order-summary.tsx │ │ ├── order │ │ ├── lottie-player.tsx │ │ ├── order-status-content-tab.tsx │ │ └── order-status.tsx │ │ └── restaurant │ │ ├── dish-card.tsx │ │ ├── restaurant-categories.tsx │ │ └── restaurant-category.tsx ├── lib │ ├── actions │ │ ├── carts.ts │ │ ├── checkout.ts │ │ ├── deliveries.ts │ │ ├── index.ts │ │ ├── restaurants.ts │ │ └── users.ts │ ├── config.ts │ ├── data │ │ ├── carts.ts │ │ ├── categories.ts │ │ ├── cookies.ts │ │ ├── deliveries.ts │ │ ├── drivers.ts │ │ ├── index.ts │ │ ├── restaurants.ts │ │ ├── sessions.ts │ │ └── users.ts │ ├── types.ts │ └── util │ │ ├── constants.ts │ │ └── get-numeric-status.ts └── middleware.ts ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | **/dump.rdb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/.env.template -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.medusa/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/.medusa/types/index.d.ts -------------------------------------------------------------------------------- /backend/.medusa/types/remote-query-entry-points.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/.medusa/types/remote-query-entry-points.d.ts -------------------------------------------------------------------------------- /backend/.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/data/medusa-eats-seed-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/data/medusa-eats-seed-data.json -------------------------------------------------------------------------------- /backend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/jest.config.js -------------------------------------------------------------------------------- /backend/medusa-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/medusa-config.ts -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/admin/components/actions-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/admin/components/actions-menu.tsx -------------------------------------------------------------------------------- /backend/src/admin/components/delivery-actions-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/admin/components/delivery-actions-menu.tsx -------------------------------------------------------------------------------- /backend/src/admin/components/delivery-items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/admin/components/delivery-items.tsx -------------------------------------------------------------------------------- /backend/src/admin/components/delivery-row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/admin/components/delivery-row.tsx -------------------------------------------------------------------------------- /backend/src/admin/components/driver-actions-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/admin/components/driver-actions-menu.tsx -------------------------------------------------------------------------------- /backend/src/admin/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/admin/components/icons.tsx -------------------------------------------------------------------------------- /backend/src/admin/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/admin/hooks/index.tsx -------------------------------------------------------------------------------- /backend/src/admin/routes/deliveries/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/admin/routes/deliveries/page.tsx -------------------------------------------------------------------------------- /backend/src/admin/routes/drivers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/admin/routes/drivers/page.tsx -------------------------------------------------------------------------------- /backend/src/admin/routes/restaurants/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/admin/routes/restaurants/page.tsx -------------------------------------------------------------------------------- /backend/src/admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/admin/tsconfig.json -------------------------------------------------------------------------------- /backend/src/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/README.md -------------------------------------------------------------------------------- /backend/src/api/middlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/middlewares.ts -------------------------------------------------------------------------------- /backend/src/api/store/deliveries/[id]/accept/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/deliveries/[id]/accept/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/deliveries/[id]/claim/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/deliveries/[id]/claim/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/deliveries/[id]/complete/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/deliveries/[id]/complete/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/deliveries/[id]/decline/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/deliveries/[id]/decline/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/deliveries/[id]/pass/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/deliveries/[id]/pass/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/deliveries/[id]/pick-up/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/deliveries/[id]/pick-up/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/deliveries/[id]/prepare/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/deliveries/[id]/prepare/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/deliveries/[id]/ready/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/deliveries/[id]/ready/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/deliveries/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/deliveries/[id]/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/deliveries/[id]/subscribe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/deliveries/[id]/subscribe/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/deliveries/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/deliveries/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/deliveries/subscribe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/deliveries/subscribe/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/drivers/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/drivers/[id]/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/drivers/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/drivers/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/restaurants/[id]/admins/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/restaurants/[id]/admins/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/restaurants/[id]/products/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/restaurants/[id]/products/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/restaurants/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/restaurants/[id]/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/restaurants/[id]/status/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/restaurants/[id]/status/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/restaurants/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/restaurants/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/users/me/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/users/me/route.ts -------------------------------------------------------------------------------- /backend/src/api/store/users/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/store/users/route.ts -------------------------------------------------------------------------------- /backend/src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/api/types.ts -------------------------------------------------------------------------------- /backend/src/jobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/jobs/README.md -------------------------------------------------------------------------------- /backend/src/links/delivery-cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/links/delivery-cart.ts -------------------------------------------------------------------------------- /backend/src/links/delivery-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/links/delivery-order.ts -------------------------------------------------------------------------------- /backend/src/links/restaurant-deliveries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/links/restaurant-deliveries.ts -------------------------------------------------------------------------------- /backend/src/links/restaurant-products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/links/restaurant-products.ts -------------------------------------------------------------------------------- /backend/src/loaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/loaders/README.md -------------------------------------------------------------------------------- /backend/src/modules/delivery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/delivery/index.ts -------------------------------------------------------------------------------- /backend/src/modules/delivery/migrations/.snapshot-medusa-TGe-.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/delivery/migrations/.snapshot-medusa-TGe-.json -------------------------------------------------------------------------------- /backend/src/modules/delivery/migrations/Migration20240822141125.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/delivery/migrations/Migration20240822141125.ts -------------------------------------------------------------------------------- /backend/src/modules/delivery/models/delivery-driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/delivery/models/delivery-driver.ts -------------------------------------------------------------------------------- /backend/src/modules/delivery/models/delivery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/delivery/models/delivery.ts -------------------------------------------------------------------------------- /backend/src/modules/delivery/models/driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/delivery/models/driver.ts -------------------------------------------------------------------------------- /backend/src/modules/delivery/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/delivery/models/index.ts -------------------------------------------------------------------------------- /backend/src/modules/delivery/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/delivery/service.ts -------------------------------------------------------------------------------- /backend/src/modules/delivery/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/delivery/types/common.ts -------------------------------------------------------------------------------- /backend/src/modules/delivery/types/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/delivery/types/mutations.ts -------------------------------------------------------------------------------- /backend/src/modules/restaurant/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/restaurant/index.ts -------------------------------------------------------------------------------- /backend/src/modules/restaurant/migrations/.snapshot-medusa-eats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/restaurant/migrations/.snapshot-medusa-eats.json -------------------------------------------------------------------------------- /backend/src/modules/restaurant/migrations/Migration20240925143313.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/restaurant/migrations/Migration20240925143313.ts -------------------------------------------------------------------------------- /backend/src/modules/restaurant/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/restaurant/models/index.ts -------------------------------------------------------------------------------- /backend/src/modules/restaurant/models/restaurant-admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/restaurant/models/restaurant-admin.ts -------------------------------------------------------------------------------- /backend/src/modules/restaurant/models/restaurant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/restaurant/models/restaurant.ts -------------------------------------------------------------------------------- /backend/src/modules/restaurant/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/restaurant/service.ts -------------------------------------------------------------------------------- /backend/src/modules/restaurant/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/restaurant/types/common.ts -------------------------------------------------------------------------------- /backend/src/modules/restaurant/types/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/modules/restaurant/types/mutations.ts -------------------------------------------------------------------------------- /backend/src/scripts/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/scripts/seed.ts -------------------------------------------------------------------------------- /backend/src/subscribers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/subscribers/README.md -------------------------------------------------------------------------------- /backend/src/utils/create-variant-price-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/utils/create-variant-price-set.ts -------------------------------------------------------------------------------- /backend/src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./create-variant-price-set" -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/await-delivery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/await-delivery.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/await-pick-up.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/await-pick-up.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/await-preparation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/await-preparation.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/await-start-preparation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/await-start-preparation.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/create-delivery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/create-delivery.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/create-fulfillment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/create-fulfillment.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/create-order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/create-order.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/delete-delivery-drivers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/delete-delivery-drivers.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/find-driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/find-driver.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/index.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/notify-restaurant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/notify-restaurant.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/set-transaction-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/set-transaction-id.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/steps/update-delivery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/steps/update-delivery.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/workflows/claim-delivery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/workflows/claim-delivery.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/workflows/create-delivery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/workflows/create-delivery.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/workflows/handle-delivery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/workflows/handle-delivery.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/workflows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/workflows/index.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/workflows/pass-delivery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/workflows/pass-delivery.ts -------------------------------------------------------------------------------- /backend/src/workflows/delivery/workflows/update-delivery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/delivery/workflows/update-delivery.ts -------------------------------------------------------------------------------- /backend/src/workflows/restaurant/steps/create-restaurant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/restaurant/steps/create-restaurant.ts -------------------------------------------------------------------------------- /backend/src/workflows/restaurant/steps/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./create-restaurant"; -------------------------------------------------------------------------------- /backend/src/workflows/restaurant/workflows/create-restaurant-products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/restaurant/workflows/create-restaurant-products.ts -------------------------------------------------------------------------------- /backend/src/workflows/restaurant/workflows/create-restaurant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/restaurant/workflows/create-restaurant.ts -------------------------------------------------------------------------------- /backend/src/workflows/restaurant/workflows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/restaurant/workflows/index.ts -------------------------------------------------------------------------------- /backend/src/workflows/user/steps/create-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/user/steps/create-user.ts -------------------------------------------------------------------------------- /backend/src/workflows/user/steps/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./create-user"; 2 | -------------------------------------------------------------------------------- /backend/src/workflows/user/steps/update-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/user/steps/update-user.ts -------------------------------------------------------------------------------- /backend/src/workflows/user/workflows/create-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/user/workflows/create-user.ts -------------------------------------------------------------------------------- /backend/src/workflows/user/workflows/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./create-user"; 2 | -------------------------------------------------------------------------------- /backend/src/workflows/util/steps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/util/steps/index.ts -------------------------------------------------------------------------------- /backend/src/workflows/util/steps/set-step-failed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/util/steps/set-step-failed.ts -------------------------------------------------------------------------------- /backend/src/workflows/util/steps/set-step-success.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/src/workflows/util/steps/set-step-success.ts -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/backend/yarn.lock -------------------------------------------------------------------------------- /frontend/.env.template: -------------------------------------------------------------------------------- 1 | JWT_SECRET=supersecret 2 | BACKEND_URL=http://localhost:9000 -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/next.config.mjs -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/_1ed747de-53f1-4915-aaba-92c046039beb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/public/_1ed747de-53f1-4915-aaba-92c046039beb.jpeg -------------------------------------------------------------------------------- /frontend/public/_35841975-1e89-4c07-adb8-208cc8c59e17.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/public/_35841975-1e89-4c07-adb8-208cc8c59e17.jpeg -------------------------------------------------------------------------------- /frontend/public/_411c260a-d6e5-4989-9a00-1cd8b80265fb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/public/_411c260a-d6e5-4989-9a00-1cd8b80265fb.jpeg -------------------------------------------------------------------------------- /frontend/public/_4476ce30-b852-402d-b65f-e3db54165e4c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/public/_4476ce30-b852-402d-b65f-e3db54165e4c.jpeg -------------------------------------------------------------------------------- /frontend/public/_7a9bad3a-6f04-4030-a584-a622a1bb8c68.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/public/_7a9bad3a-6f04-4030-a584-a622a1bb8c68.jpeg -------------------------------------------------------------------------------- /frontend/public/_ca16b6a2-9c4c-4a6a-98fa-620f12f6123f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/public/_ca16b6a2-9c4c-4a6a-98fa-620f12f6123f.jpeg -------------------------------------------------------------------------------- /frontend/public/_de4759b3-096f-47f6-936a-ea291df53f9f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/public/_de4759b3-096f-47f6-936a-ea291df53f9f.jpeg -------------------------------------------------------------------------------- /frontend/public/medusa-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/public/medusa-logo.svg -------------------------------------------------------------------------------- /frontend/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/public/next.svg -------------------------------------------------------------------------------- /frontend/public/notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/public/notification.mp3 -------------------------------------------------------------------------------- /frontend/public/pizza-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/public/pizza-loading.gif -------------------------------------------------------------------------------- /frontend/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/public/vercel.svg -------------------------------------------------------------------------------- /frontend/src/app/(checkout)/checkout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/(checkout)/checkout/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/(checkout)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/(checkout)/layout.tsx -------------------------------------------------------------------------------- /frontend/src/app/(checkout)/your-order/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/(checkout)/your-order/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/(store)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/(store)/layout.tsx -------------------------------------------------------------------------------- /frontend/src/app/(store)/login/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/(store)/login/layout.tsx -------------------------------------------------------------------------------- /frontend/src/app/(store)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/(store)/login/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/(store)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/(store)/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/(store)/restaurant/[handle]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/(store)/restaurant/[handle]/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/(store)/signup/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/(store)/signup/layout.tsx -------------------------------------------------------------------------------- /frontend/src/app/(store)/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/(store)/signup/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/api/subscribe/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/api/subscribe/route.ts -------------------------------------------------------------------------------- /frontend/src/app/dashboard/driver/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/dashboard/driver/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /frontend/src/app/dashboard/restaurant/menu/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/dashboard/restaurant/menu/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/dashboard/restaurant/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/dashboard/restaurant/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/favicon.ico -------------------------------------------------------------------------------- /frontend/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/globals.css -------------------------------------------------------------------------------- /frontend/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/app/layout.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/demo-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/common/demo-modal.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/common/footer.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/common/icons.tsx -------------------------------------------------------------------------------- /frontend/src/components/common/profile-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/common/profile-badge.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/account-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/account-badge.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/completed-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/completed-grid.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/delivery-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/delivery-card.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/delivery-column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/delivery-column.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/driver/create-category-drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/driver/create-category-drawer.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/driver/delivery-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/driver/delivery-buttons.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/driver/delivery-status-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/driver/delivery-status-badge.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/login-form.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/menu/create-category-drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/menu/create-category-drawer.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/menu/create-category-form.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/components/dashboard/menu/create-product-drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/menu/create-product-drawer.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/menu/create-product-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/menu/create-product-form.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/menu/menu-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/menu/menu-actions.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/menu/menu-product-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/menu/menu-product-actions.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/realtime-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/realtime-client.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/restaurant/delivery-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/restaurant/delivery-buttons.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/restaurant/delivery-status-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/restaurant/delivery-status-badge.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/restaurant/restaurant-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/restaurant/restaurant-status.tsx -------------------------------------------------------------------------------- /frontend/src/components/dashboard/signup-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/dashboard/signup-form.tsx -------------------------------------------------------------------------------- /frontend/src/components/store/cart/cart-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/store/cart/cart-button.tsx -------------------------------------------------------------------------------- /frontend/src/components/store/cart/cart-counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/store/cart/cart-counter.tsx -------------------------------------------------------------------------------- /frontend/src/components/store/cart/cart-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/store/cart/cart-modal.tsx -------------------------------------------------------------------------------- /frontend/src/components/store/cart/nav-cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/store/cart/nav-cart.tsx -------------------------------------------------------------------------------- /frontend/src/components/store/checkout/checkout-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/store/checkout/checkout-form.tsx -------------------------------------------------------------------------------- /frontend/src/components/store/checkout/order-summary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/store/checkout/order-summary.tsx -------------------------------------------------------------------------------- /frontend/src/components/store/order/lottie-player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/store/order/lottie-player.tsx -------------------------------------------------------------------------------- /frontend/src/components/store/order/order-status-content-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/store/order/order-status-content-tab.tsx -------------------------------------------------------------------------------- /frontend/src/components/store/order/order-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/store/order/order-status.tsx -------------------------------------------------------------------------------- /frontend/src/components/store/restaurant/dish-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/store/restaurant/dish-card.tsx -------------------------------------------------------------------------------- /frontend/src/components/store/restaurant/restaurant-categories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/store/restaurant/restaurant-categories.tsx -------------------------------------------------------------------------------- /frontend/src/components/store/restaurant/restaurant-category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/components/store/restaurant/restaurant-category.tsx -------------------------------------------------------------------------------- /frontend/src/lib/actions/carts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/actions/carts.ts -------------------------------------------------------------------------------- /frontend/src/lib/actions/checkout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/actions/checkout.ts -------------------------------------------------------------------------------- /frontend/src/lib/actions/deliveries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/actions/deliveries.ts -------------------------------------------------------------------------------- /frontend/src/lib/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/actions/index.ts -------------------------------------------------------------------------------- /frontend/src/lib/actions/restaurants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/actions/restaurants.ts -------------------------------------------------------------------------------- /frontend/src/lib/actions/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/actions/users.ts -------------------------------------------------------------------------------- /frontend/src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/config.ts -------------------------------------------------------------------------------- /frontend/src/lib/data/carts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/data/carts.ts -------------------------------------------------------------------------------- /frontend/src/lib/data/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/data/categories.ts -------------------------------------------------------------------------------- /frontend/src/lib/data/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/data/cookies.ts -------------------------------------------------------------------------------- /frontend/src/lib/data/deliveries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/data/deliveries.ts -------------------------------------------------------------------------------- /frontend/src/lib/data/drivers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/data/drivers.ts -------------------------------------------------------------------------------- /frontend/src/lib/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/data/index.ts -------------------------------------------------------------------------------- /frontend/src/lib/data/restaurants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/data/restaurants.ts -------------------------------------------------------------------------------- /frontend/src/lib/data/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/data/sessions.ts -------------------------------------------------------------------------------- /frontend/src/lib/data/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/data/users.ts -------------------------------------------------------------------------------- /frontend/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/types.ts -------------------------------------------------------------------------------- /frontend/src/lib/util/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/util/constants.ts -------------------------------------------------------------------------------- /frontend/src/lib/util/get-numeric-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/lib/util/get-numeric-status.ts -------------------------------------------------------------------------------- /frontend/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/src/middleware.ts -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/medusajs/medusa-eats/HEAD/frontend/yarn.lock --------------------------------------------------------------------------------