├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── app.json ├── app ├── (tabs) │ ├── (home) │ │ ├── _layout.tsx │ │ ├── index.tsx │ │ ├── products │ │ │ ├── [handle].tsx │ │ │ └── __layout.tsx │ │ └── store.tsx │ ├── _layout.tsx │ ├── account │ │ ├── _layout.tsx │ │ ├── addresses.tsx │ │ ├── index.tsx │ │ ├── login.tsx │ │ ├── orders.tsx │ │ └── profile.tsx │ ├── cart.tsx │ └── my-bag.tsx ├── _layout.tsx ├── checkout.tsx └── order │ ├── confirmed │ └── [id].tsx │ └── details │ └── [id].tsx ├── assets ├── adaptive-icon.png ├── favicon.png ├── hero.jpg ├── icon.png └── splash.png ├── babel.config.js ├── design ├── image.tsx ├── index.ts ├── layout.tsx ├── pressable.tsx ├── svg.tsx ├── tailwind │ ├── custom-css-classes.ts │ └── theme.js ├── typography.tsx └── view.tsx ├── index.js ├── lib ├── config.ts ├── constants.ts ├── context │ ├── account-context.tsx │ ├── cart-dropdown-context.tsx │ ├── checkout-context.tsx │ ├── mobile-menu-context.tsx │ ├── modal-context.tsx │ ├── product-context.tsx │ └── store-context.tsx ├── data │ └── index.ts ├── hooks │ ├── use-country-options.tsx │ ├── use-current-width.tsx │ ├── use-debounce.tsx │ ├── use-enrich-line-items.tsx │ ├── use-in-view.tsx │ ├── use-layout-data.tsx │ ├── use-previews.tsx │ ├── use-product-price.tsx │ ├── use-product.tsx │ ├── use-toggle-state.tsx │ └── use-universal-pathname │ │ ├── index.tsx │ │ ├── useUniversalPathname.tsx │ │ └── useUniversalPathname.web.tsx └── util │ ├── can-buy.ts │ ├── get-collection-ids.ts │ ├── get-number-of-skeletons.ts │ ├── get-precentage-diff.ts │ ├── get-product-handles.ts │ ├── handle-error.ts │ ├── noop.ts │ ├── only-unique.ts │ ├── prices.ts │ ├── regex.ts │ ├── repeat.ts │ └── transform-product-preview.ts ├── metro.config.js ├── modules ├── account │ ├── account-screen.tsx │ ├── addresses-screen.tsx │ ├── components │ │ ├── account-info │ │ │ └── index.tsx │ │ ├── account-nav │ │ │ └── index.tsx │ │ ├── address-book │ │ │ └── index.tsx │ │ ├── address-card │ │ │ ├── add-address.tsx │ │ │ ├── edit-address-modal.tsx │ │ │ └── remove-address-dialog.tsx │ │ ├── detail-container │ │ │ └── index.tsx │ │ ├── edit-button │ │ │ └── index.tsx │ │ ├── login-details │ │ │ ├── edit-email-modal.tsx │ │ │ ├── edit-password-modal.tsx │ │ │ └── index.tsx │ │ ├── login │ │ │ └── index.tsx │ │ ├── order-card │ │ │ └── index.tsx │ │ ├── order-overview │ │ │ └── index.tsx │ │ ├── overview │ │ │ └── index.tsx │ │ ├── profile-billing-address │ │ │ └── index.tsx │ │ ├── profile-email │ │ │ └── index.tsx │ │ ├── profile-name │ │ │ └── index.tsx │ │ ├── profile-password │ │ │ └── index.tsx │ │ ├── profile-phone │ │ │ └── index.tsx │ │ └── register │ │ │ └── index.tsx │ ├── login-screen.tsx │ ├── orders-screen.tsx │ ├── profile-screen.tsx │ └── templates │ │ ├── account-layout.tsx │ │ ├── addresses-template.tsx │ │ ├── login-template.tsx │ │ ├── order-details-template.tsx │ │ ├── orders-template.tsx │ │ ├── overview-template.tsx │ │ └── profile-template.tsx ├── cart │ ├── components │ │ ├── empty-cart-message │ │ │ └── index.tsx │ │ ├── item │ │ │ └── index.tsx │ │ └── sign-in-prompt │ │ │ └── index.tsx │ ├── screen.tsx │ └── templates │ │ ├── index.tsx │ │ ├── items.tsx │ │ └── summary.tsx ├── checkout │ ├── components │ │ ├── address-select │ │ │ ├── index.native.tsx │ │ │ └── index.web.tsx │ │ ├── addresses │ │ │ └── index.tsx │ │ ├── billing_address │ │ │ └── index.tsx │ │ ├── checkout-loader │ │ │ └── index.tsx │ │ ├── country-select │ │ │ └── index.tsx │ │ ├── discount-code │ │ │ └── index.tsx │ │ ├── gift-card │ │ │ └── index.tsx │ │ ├── payment-button │ │ │ └── index.tsx │ │ ├── payment-container │ │ │ └── index.tsx │ │ ├── payment-stripe │ │ │ └── index.tsx │ │ ├── payment-test │ │ │ └── index.tsx │ │ ├── payment-wrapper │ │ │ ├── index.tsx │ │ │ └── index.web.tsx │ │ ├── payment │ │ │ └── index.tsx │ │ ├── shipping-address │ │ │ └── index.tsx │ │ ├── shipping │ │ │ └── index.tsx │ │ └── step-container │ │ │ └── index.tsx │ ├── screen.tsx │ └── templates │ │ ├── checkout-form │ │ └── index.tsx │ │ ├── checkout-summary │ │ └── index.tsx │ │ └── index.tsx ├── common │ ├── components │ │ ├── button │ │ │ └── index.tsx │ │ ├── cart-totals │ │ │ └── index.tsx │ │ ├── checkbox │ │ │ └── index.tsx │ │ ├── connect-form │ │ │ └── index.tsx │ │ ├── hamburger │ │ │ └── index.tsx │ │ ├── head │ │ │ └── index.tsx │ │ ├── input │ │ │ └── index.tsx │ │ ├── line-item-options │ │ │ └── index.tsx │ │ ├── line-item-price │ │ │ └── index.tsx │ │ ├── modal │ │ │ └── index.tsx │ │ ├── native-select │ │ │ ├── index.tsx │ │ │ └── index.web.tsx │ │ ├── radio │ │ │ └── index.tsx │ │ └── underline-link │ │ │ └── index.tsx │ └── icons │ │ ├── alert.tsx │ │ ├── arrow-right.tsx │ │ ├── back.tsx │ │ ├── cart.tsx │ │ ├── chevron-down.tsx │ │ ├── edit.tsx │ │ ├── eye-off.tsx │ │ ├── eye.tsx │ │ ├── fast-delivery.tsx │ │ ├── gift.tsx │ │ ├── map-pin.tsx │ │ ├── minus.tsx │ │ ├── package.tsx │ │ ├── placeholder-image.tsx │ │ ├── plus.tsx │ │ ├── refresh.tsx │ │ ├── search.tsx │ │ ├── sorting.tsx │ │ ├── spinner.tsx │ │ ├── trash.tsx │ │ ├── user.tsx │ │ └── x.tsx ├── home │ ├── components │ │ ├── featured-products │ │ │ └── index.tsx │ │ └── hero │ │ │ └── index.tsx │ └── screen.tsx ├── layout │ ├── components │ │ ├── cart-dropdown │ │ │ └── index.tsx │ │ ├── country-select │ │ │ └── index.tsx │ │ ├── dropdown-menu │ │ │ └── index.tsx │ │ ├── footer-cta │ │ │ └── index.tsx │ │ ├── footer-nav │ │ │ └── index.tsx │ │ ├── medusa-cta │ │ │ └── index.tsx │ │ └── site-info │ │ │ └── index.tsx │ └── templates │ │ ├── footer │ │ └── index.tsx │ │ ├── index.tsx │ │ └── nav │ │ └── index.tsx ├── mobile-menu │ ├── components │ │ ├── container │ │ │ └── index.tsx │ │ ├── country-menu │ │ │ └── index.tsx │ │ ├── main-menu │ │ │ └── index.tsx │ │ └── search-menu │ │ │ └── index.tsx │ └── templates │ │ └── index.tsx ├── order │ ├── components │ │ ├── help │ │ │ └── index.tsx │ │ ├── items │ │ │ └── index.tsx │ │ ├── order-details │ │ │ └── index.tsx │ │ ├── order-summary │ │ │ └── index.tsx │ │ ├── payment-details │ │ │ └── index.tsx │ │ └── shipping-details │ │ │ └── index.tsx │ ├── order-confirmed-screen.tsx │ ├── order-details-screen.tsx │ └── templates │ │ ├── order-completed-template.tsx │ │ └── order-details-template.tsx ├── products │ ├── components │ │ ├── image-gallary │ │ │ └── index.tsx │ │ ├── infinite-products │ │ │ └── index.tsx │ │ ├── mobile-actions │ │ │ └── index.tsx │ │ ├── option-select │ │ │ └── index.tsx │ │ ├── product-actions │ │ │ └── index.tsx │ │ ├── product-preview │ │ │ └── index.tsx │ │ ├── product-tabs │ │ │ └── index.tsx │ │ ├── related-products │ │ │ └── index.tsx │ │ └── thumbnail │ │ │ └── index.tsx │ ├── screen.tsx │ └── templates │ │ ├── index.tsx │ │ └── product-info │ │ └── index.tsx ├── skeletons │ ├── components │ │ ├── skeleton-button │ │ │ └── index.tsx │ │ ├── skeleton-cart-item │ │ │ └── index.tsx │ │ ├── skeleton-cart-totals │ │ │ └── index.tsx │ │ ├── skeleton-code-form │ │ │ └── index.tsx │ │ ├── skeleton-line-item │ │ │ └── index.tsx │ │ ├── skeleton-order-confirmed-header │ │ │ └── index.tsx │ │ ├── skeleton-order-information │ │ │ └── index.tsx │ │ ├── skeleton-order-items │ │ │ └── index.tsx │ │ ├── skeleton-order-summary │ │ │ └── index.tsx │ │ ├── skeleton-product-preview │ │ │ └── index.tsx │ │ └── skeleton-product-tabs │ │ │ └── index.tsx │ └── templates │ │ ├── skeleton-cart-page │ │ └── index.tsx │ │ ├── skeleton-collection-page │ │ └── index.tsx │ │ ├── skeleton-order-confirmed │ │ └── index.tsx │ │ └── skeleton-product-page │ │ └── index.tsx ├── store │ ├── components │ │ └── refinement-list │ │ │ └── index.tsx │ └── store-screen.tsx └── user │ └── detail-screen.tsx ├── package.json ├── provider ├── bottom-sheet │ ├── index.tsx │ └── index.web.tsx ├── index.tsx ├── medusa │ └── index.tsx ├── navigation │ ├── index.tsx │ └── index.web.tsx ├── safe-area │ ├── index.tsx │ ├── index.web.tsx │ ├── use-safe-area.ts │ └── use-safe-area.web.ts └── toasts │ └── index.tsx ├── public ├── cta_four.jpg ├── cta_one.jpg ├── cta_three.jpg ├── cta_two.jpg ├── favicon.ico └── hero.jpg ├── tailwind.config.js ├── tsconfig.json ├── types.d.ts ├── types ├── global.ts ├── icon.ts └── medusa.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app.json -------------------------------------------------------------------------------- /app/(tabs)/(home)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/(home)/_layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/(home)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/(home)/index.tsx -------------------------------------------------------------------------------- /app/(tabs)/(home)/products/[handle].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/(home)/products/[handle].tsx -------------------------------------------------------------------------------- /app/(tabs)/(home)/products/__layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/(home)/products/__layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/(home)/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/(home)/store.tsx -------------------------------------------------------------------------------- /app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/account/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/account/_layout.tsx -------------------------------------------------------------------------------- /app/(tabs)/account/addresses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/account/addresses.tsx -------------------------------------------------------------------------------- /app/(tabs)/account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/account/index.tsx -------------------------------------------------------------------------------- /app/(tabs)/account/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/account/login.tsx -------------------------------------------------------------------------------- /app/(tabs)/account/orders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/account/orders.tsx -------------------------------------------------------------------------------- /app/(tabs)/account/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/account/profile.tsx -------------------------------------------------------------------------------- /app/(tabs)/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/cart.tsx -------------------------------------------------------------------------------- /app/(tabs)/my-bag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/(tabs)/my-bag.tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/checkout.tsx -------------------------------------------------------------------------------- /app/order/confirmed/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/order/confirmed/[id].tsx -------------------------------------------------------------------------------- /app/order/details/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/app/order/details/[id].tsx -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/assets/hero.jpg -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/babel.config.js -------------------------------------------------------------------------------- /design/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/design/image.tsx -------------------------------------------------------------------------------- /design/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/design/index.ts -------------------------------------------------------------------------------- /design/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/design/layout.tsx -------------------------------------------------------------------------------- /design/pressable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/design/pressable.tsx -------------------------------------------------------------------------------- /design/svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/design/svg.tsx -------------------------------------------------------------------------------- /design/tailwind/custom-css-classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/design/tailwind/custom-css-classes.ts -------------------------------------------------------------------------------- /design/tailwind/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/design/tailwind/theme.js -------------------------------------------------------------------------------- /design/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/design/typography.tsx -------------------------------------------------------------------------------- /design/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/design/view.tsx -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/index.js -------------------------------------------------------------------------------- /lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/config.ts -------------------------------------------------------------------------------- /lib/constants.ts: -------------------------------------------------------------------------------- 1 | export const IS_BROWSER = typeof window !== "undefined" 2 | -------------------------------------------------------------------------------- /lib/context/account-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/context/account-context.tsx -------------------------------------------------------------------------------- /lib/context/cart-dropdown-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/context/cart-dropdown-context.tsx -------------------------------------------------------------------------------- /lib/context/checkout-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/context/checkout-context.tsx -------------------------------------------------------------------------------- /lib/context/mobile-menu-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/context/mobile-menu-context.tsx -------------------------------------------------------------------------------- /lib/context/modal-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/context/modal-context.tsx -------------------------------------------------------------------------------- /lib/context/product-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/context/product-context.tsx -------------------------------------------------------------------------------- /lib/context/store-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/context/store-context.tsx -------------------------------------------------------------------------------- /lib/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/data/index.ts -------------------------------------------------------------------------------- /lib/hooks/use-country-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-country-options.tsx -------------------------------------------------------------------------------- /lib/hooks/use-current-width.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-current-width.tsx -------------------------------------------------------------------------------- /lib/hooks/use-debounce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-debounce.tsx -------------------------------------------------------------------------------- /lib/hooks/use-enrich-line-items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-enrich-line-items.tsx -------------------------------------------------------------------------------- /lib/hooks/use-in-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-in-view.tsx -------------------------------------------------------------------------------- /lib/hooks/use-layout-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-layout-data.tsx -------------------------------------------------------------------------------- /lib/hooks/use-previews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-previews.tsx -------------------------------------------------------------------------------- /lib/hooks/use-product-price.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-product-price.tsx -------------------------------------------------------------------------------- /lib/hooks/use-product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-product.tsx -------------------------------------------------------------------------------- /lib/hooks/use-toggle-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-toggle-state.tsx -------------------------------------------------------------------------------- /lib/hooks/use-universal-pathname/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-universal-pathname/index.tsx -------------------------------------------------------------------------------- /lib/hooks/use-universal-pathname/useUniversalPathname.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-universal-pathname/useUniversalPathname.tsx -------------------------------------------------------------------------------- /lib/hooks/use-universal-pathname/useUniversalPathname.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/hooks/use-universal-pathname/useUniversalPathname.web.tsx -------------------------------------------------------------------------------- /lib/util/can-buy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/util/can-buy.ts -------------------------------------------------------------------------------- /lib/util/get-collection-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/util/get-collection-ids.ts -------------------------------------------------------------------------------- /lib/util/get-number-of-skeletons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/util/get-number-of-skeletons.ts -------------------------------------------------------------------------------- /lib/util/get-precentage-diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/util/get-precentage-diff.ts -------------------------------------------------------------------------------- /lib/util/get-product-handles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/util/get-product-handles.ts -------------------------------------------------------------------------------- /lib/util/handle-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/util/handle-error.ts -------------------------------------------------------------------------------- /lib/util/noop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/util/noop.ts -------------------------------------------------------------------------------- /lib/util/only-unique.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/util/only-unique.ts -------------------------------------------------------------------------------- /lib/util/prices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/util/prices.ts -------------------------------------------------------------------------------- /lib/util/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/util/regex.ts -------------------------------------------------------------------------------- /lib/util/repeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/util/repeat.ts -------------------------------------------------------------------------------- /lib/util/transform-product-preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/lib/util/transform-product-preview.ts -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/metro.config.js -------------------------------------------------------------------------------- /modules/account/account-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/account-screen.tsx -------------------------------------------------------------------------------- /modules/account/addresses-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/addresses-screen.tsx -------------------------------------------------------------------------------- /modules/account/components/account-info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/account-info/index.tsx -------------------------------------------------------------------------------- /modules/account/components/account-nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/account-nav/index.tsx -------------------------------------------------------------------------------- /modules/account/components/address-book/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/address-book/index.tsx -------------------------------------------------------------------------------- /modules/account/components/address-card/add-address.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/address-card/add-address.tsx -------------------------------------------------------------------------------- /modules/account/components/address-card/edit-address-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/address-card/edit-address-modal.tsx -------------------------------------------------------------------------------- /modules/account/components/address-card/remove-address-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/address-card/remove-address-dialog.tsx -------------------------------------------------------------------------------- /modules/account/components/detail-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/detail-container/index.tsx -------------------------------------------------------------------------------- /modules/account/components/edit-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/edit-button/index.tsx -------------------------------------------------------------------------------- /modules/account/components/login-details/edit-email-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/login-details/edit-email-modal.tsx -------------------------------------------------------------------------------- /modules/account/components/login-details/edit-password-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/login-details/edit-password-modal.tsx -------------------------------------------------------------------------------- /modules/account/components/login-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/login-details/index.tsx -------------------------------------------------------------------------------- /modules/account/components/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/login/index.tsx -------------------------------------------------------------------------------- /modules/account/components/order-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/order-card/index.tsx -------------------------------------------------------------------------------- /modules/account/components/order-overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/order-overview/index.tsx -------------------------------------------------------------------------------- /modules/account/components/overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/overview/index.tsx -------------------------------------------------------------------------------- /modules/account/components/profile-billing-address/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/profile-billing-address/index.tsx -------------------------------------------------------------------------------- /modules/account/components/profile-email/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/profile-email/index.tsx -------------------------------------------------------------------------------- /modules/account/components/profile-name/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/profile-name/index.tsx -------------------------------------------------------------------------------- /modules/account/components/profile-password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/profile-password/index.tsx -------------------------------------------------------------------------------- /modules/account/components/profile-phone/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/profile-phone/index.tsx -------------------------------------------------------------------------------- /modules/account/components/register/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/components/register/index.tsx -------------------------------------------------------------------------------- /modules/account/login-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/login-screen.tsx -------------------------------------------------------------------------------- /modules/account/orders-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/orders-screen.tsx -------------------------------------------------------------------------------- /modules/account/profile-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/profile-screen.tsx -------------------------------------------------------------------------------- /modules/account/templates/account-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/templates/account-layout.tsx -------------------------------------------------------------------------------- /modules/account/templates/addresses-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/templates/addresses-template.tsx -------------------------------------------------------------------------------- /modules/account/templates/login-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/templates/login-template.tsx -------------------------------------------------------------------------------- /modules/account/templates/order-details-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/templates/order-details-template.tsx -------------------------------------------------------------------------------- /modules/account/templates/orders-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/templates/orders-template.tsx -------------------------------------------------------------------------------- /modules/account/templates/overview-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/templates/overview-template.tsx -------------------------------------------------------------------------------- /modules/account/templates/profile-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/account/templates/profile-template.tsx -------------------------------------------------------------------------------- /modules/cart/components/empty-cart-message/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/cart/components/empty-cart-message/index.tsx -------------------------------------------------------------------------------- /modules/cart/components/item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/cart/components/item/index.tsx -------------------------------------------------------------------------------- /modules/cart/components/sign-in-prompt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/cart/components/sign-in-prompt/index.tsx -------------------------------------------------------------------------------- /modules/cart/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/cart/screen.tsx -------------------------------------------------------------------------------- /modules/cart/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/cart/templates/index.tsx -------------------------------------------------------------------------------- /modules/cart/templates/items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/cart/templates/items.tsx -------------------------------------------------------------------------------- /modules/cart/templates/summary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/cart/templates/summary.tsx -------------------------------------------------------------------------------- /modules/checkout/components/address-select/index.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/address-select/index.native.tsx -------------------------------------------------------------------------------- /modules/checkout/components/address-select/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/address-select/index.web.tsx -------------------------------------------------------------------------------- /modules/checkout/components/addresses/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/addresses/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/billing_address/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/billing_address/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/checkout-loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/checkout-loader/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/country-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/country-select/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/discount-code/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/discount-code/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/gift-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/gift-card/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/payment-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/payment-button/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/payment-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/payment-container/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/payment-stripe/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/payment-stripe/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/payment-test/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/payment-test/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/payment-wrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/payment-wrapper/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/payment-wrapper/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/payment-wrapper/index.web.tsx -------------------------------------------------------------------------------- /modules/checkout/components/payment/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/payment/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/shipping-address/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/shipping-address/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/shipping/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/shipping/index.tsx -------------------------------------------------------------------------------- /modules/checkout/components/step-container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/components/step-container/index.tsx -------------------------------------------------------------------------------- /modules/checkout/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/screen.tsx -------------------------------------------------------------------------------- /modules/checkout/templates/checkout-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/templates/checkout-form/index.tsx -------------------------------------------------------------------------------- /modules/checkout/templates/checkout-summary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/templates/checkout-summary/index.tsx -------------------------------------------------------------------------------- /modules/checkout/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/checkout/templates/index.tsx -------------------------------------------------------------------------------- /modules/common/components/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/button/index.tsx -------------------------------------------------------------------------------- /modules/common/components/cart-totals/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/cart-totals/index.tsx -------------------------------------------------------------------------------- /modules/common/components/checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/checkbox/index.tsx -------------------------------------------------------------------------------- /modules/common/components/connect-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/connect-form/index.tsx -------------------------------------------------------------------------------- /modules/common/components/hamburger/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/hamburger/index.tsx -------------------------------------------------------------------------------- /modules/common/components/head/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/head/index.tsx -------------------------------------------------------------------------------- /modules/common/components/input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/input/index.tsx -------------------------------------------------------------------------------- /modules/common/components/line-item-options/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/line-item-options/index.tsx -------------------------------------------------------------------------------- /modules/common/components/line-item-price/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/line-item-price/index.tsx -------------------------------------------------------------------------------- /modules/common/components/modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/modal/index.tsx -------------------------------------------------------------------------------- /modules/common/components/native-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/native-select/index.tsx -------------------------------------------------------------------------------- /modules/common/components/native-select/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/native-select/index.web.tsx -------------------------------------------------------------------------------- /modules/common/components/radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/radio/index.tsx -------------------------------------------------------------------------------- /modules/common/components/underline-link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/components/underline-link/index.tsx -------------------------------------------------------------------------------- /modules/common/icons/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/alert.tsx -------------------------------------------------------------------------------- /modules/common/icons/arrow-right.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/arrow-right.tsx -------------------------------------------------------------------------------- /modules/common/icons/back.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/back.tsx -------------------------------------------------------------------------------- /modules/common/icons/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/cart.tsx -------------------------------------------------------------------------------- /modules/common/icons/chevron-down.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/chevron-down.tsx -------------------------------------------------------------------------------- /modules/common/icons/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/edit.tsx -------------------------------------------------------------------------------- /modules/common/icons/eye-off.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/eye-off.tsx -------------------------------------------------------------------------------- /modules/common/icons/eye.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/eye.tsx -------------------------------------------------------------------------------- /modules/common/icons/fast-delivery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/fast-delivery.tsx -------------------------------------------------------------------------------- /modules/common/icons/gift.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/gift.tsx -------------------------------------------------------------------------------- /modules/common/icons/map-pin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/map-pin.tsx -------------------------------------------------------------------------------- /modules/common/icons/minus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/minus.tsx -------------------------------------------------------------------------------- /modules/common/icons/package.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/package.tsx -------------------------------------------------------------------------------- /modules/common/icons/placeholder-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/placeholder-image.tsx -------------------------------------------------------------------------------- /modules/common/icons/plus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/plus.tsx -------------------------------------------------------------------------------- /modules/common/icons/refresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/refresh.tsx -------------------------------------------------------------------------------- /modules/common/icons/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/search.tsx -------------------------------------------------------------------------------- /modules/common/icons/sorting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/sorting.tsx -------------------------------------------------------------------------------- /modules/common/icons/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/spinner.tsx -------------------------------------------------------------------------------- /modules/common/icons/trash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/trash.tsx -------------------------------------------------------------------------------- /modules/common/icons/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/user.tsx -------------------------------------------------------------------------------- /modules/common/icons/x.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/common/icons/x.tsx -------------------------------------------------------------------------------- /modules/home/components/featured-products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/home/components/featured-products/index.tsx -------------------------------------------------------------------------------- /modules/home/components/hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/home/components/hero/index.tsx -------------------------------------------------------------------------------- /modules/home/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/home/screen.tsx -------------------------------------------------------------------------------- /modules/layout/components/cart-dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/layout/components/cart-dropdown/index.tsx -------------------------------------------------------------------------------- /modules/layout/components/country-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/layout/components/country-select/index.tsx -------------------------------------------------------------------------------- /modules/layout/components/dropdown-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/layout/components/dropdown-menu/index.tsx -------------------------------------------------------------------------------- /modules/layout/components/footer-cta/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/layout/components/footer-cta/index.tsx -------------------------------------------------------------------------------- /modules/layout/components/footer-nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/layout/components/footer-nav/index.tsx -------------------------------------------------------------------------------- /modules/layout/components/medusa-cta/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/layout/components/medusa-cta/index.tsx -------------------------------------------------------------------------------- /modules/layout/components/site-info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/layout/components/site-info/index.tsx -------------------------------------------------------------------------------- /modules/layout/templates/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/layout/templates/footer/index.tsx -------------------------------------------------------------------------------- /modules/layout/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/layout/templates/index.tsx -------------------------------------------------------------------------------- /modules/layout/templates/nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/layout/templates/nav/index.tsx -------------------------------------------------------------------------------- /modules/mobile-menu/components/container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/mobile-menu/components/container/index.tsx -------------------------------------------------------------------------------- /modules/mobile-menu/components/country-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/mobile-menu/components/country-menu/index.tsx -------------------------------------------------------------------------------- /modules/mobile-menu/components/main-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/mobile-menu/components/main-menu/index.tsx -------------------------------------------------------------------------------- /modules/mobile-menu/components/search-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/mobile-menu/components/search-menu/index.tsx -------------------------------------------------------------------------------- /modules/mobile-menu/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/mobile-menu/templates/index.tsx -------------------------------------------------------------------------------- /modules/order/components/help/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/order/components/help/index.tsx -------------------------------------------------------------------------------- /modules/order/components/items/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/order/components/items/index.tsx -------------------------------------------------------------------------------- /modules/order/components/order-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/order/components/order-details/index.tsx -------------------------------------------------------------------------------- /modules/order/components/order-summary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/order/components/order-summary/index.tsx -------------------------------------------------------------------------------- /modules/order/components/payment-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/order/components/payment-details/index.tsx -------------------------------------------------------------------------------- /modules/order/components/shipping-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/order/components/shipping-details/index.tsx -------------------------------------------------------------------------------- /modules/order/order-confirmed-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/order/order-confirmed-screen.tsx -------------------------------------------------------------------------------- /modules/order/order-details-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/order/order-details-screen.tsx -------------------------------------------------------------------------------- /modules/order/templates/order-completed-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/order/templates/order-completed-template.tsx -------------------------------------------------------------------------------- /modules/order/templates/order-details-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/order/templates/order-details-template.tsx -------------------------------------------------------------------------------- /modules/products/components/image-gallary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/products/components/image-gallary/index.tsx -------------------------------------------------------------------------------- /modules/products/components/infinite-products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/products/components/infinite-products/index.tsx -------------------------------------------------------------------------------- /modules/products/components/mobile-actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/products/components/mobile-actions/index.tsx -------------------------------------------------------------------------------- /modules/products/components/option-select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/products/components/option-select/index.tsx -------------------------------------------------------------------------------- /modules/products/components/product-actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/products/components/product-actions/index.tsx -------------------------------------------------------------------------------- /modules/products/components/product-preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/products/components/product-preview/index.tsx -------------------------------------------------------------------------------- /modules/products/components/product-tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/products/components/product-tabs/index.tsx -------------------------------------------------------------------------------- /modules/products/components/related-products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/products/components/related-products/index.tsx -------------------------------------------------------------------------------- /modules/products/components/thumbnail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/products/components/thumbnail/index.tsx -------------------------------------------------------------------------------- /modules/products/screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/products/screen.tsx -------------------------------------------------------------------------------- /modules/products/templates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/products/templates/index.tsx -------------------------------------------------------------------------------- /modules/products/templates/product-info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/products/templates/product-info/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/components/skeleton-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/components/skeleton-button/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/components/skeleton-cart-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/components/skeleton-cart-item/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/components/skeleton-cart-totals/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/components/skeleton-cart-totals/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/components/skeleton-code-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/components/skeleton-code-form/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/components/skeleton-line-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/components/skeleton-line-item/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/components/skeleton-order-confirmed-header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/components/skeleton-order-confirmed-header/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/components/skeleton-order-information/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/components/skeleton-order-information/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/components/skeleton-order-items/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/components/skeleton-order-items/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/components/skeleton-order-summary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/components/skeleton-order-summary/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/components/skeleton-product-preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/components/skeleton-product-preview/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/components/skeleton-product-tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/components/skeleton-product-tabs/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/templates/skeleton-cart-page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/templates/skeleton-cart-page/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/templates/skeleton-collection-page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/templates/skeleton-collection-page/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/templates/skeleton-order-confirmed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/templates/skeleton-order-confirmed/index.tsx -------------------------------------------------------------------------------- /modules/skeletons/templates/skeleton-product-page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/skeletons/templates/skeleton-product-page/index.tsx -------------------------------------------------------------------------------- /modules/store/components/refinement-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/store/components/refinement-list/index.tsx -------------------------------------------------------------------------------- /modules/store/store-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/store/store-screen.tsx -------------------------------------------------------------------------------- /modules/user/detail-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/modules/user/detail-screen.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/package.json -------------------------------------------------------------------------------- /provider/bottom-sheet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/provider/bottom-sheet/index.tsx -------------------------------------------------------------------------------- /provider/bottom-sheet/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/provider/bottom-sheet/index.web.tsx -------------------------------------------------------------------------------- /provider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/provider/index.tsx -------------------------------------------------------------------------------- /provider/medusa/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/provider/medusa/index.tsx -------------------------------------------------------------------------------- /provider/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/provider/navigation/index.tsx -------------------------------------------------------------------------------- /provider/navigation/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/provider/navigation/index.web.tsx -------------------------------------------------------------------------------- /provider/safe-area/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/provider/safe-area/index.tsx -------------------------------------------------------------------------------- /provider/safe-area/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/provider/safe-area/index.web.tsx -------------------------------------------------------------------------------- /provider/safe-area/use-safe-area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/provider/safe-area/use-safe-area.ts -------------------------------------------------------------------------------- /provider/safe-area/use-safe-area.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/provider/safe-area/use-safe-area.web.ts -------------------------------------------------------------------------------- /provider/toasts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/provider/toasts/index.tsx -------------------------------------------------------------------------------- /public/cta_four.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/public/cta_four.jpg -------------------------------------------------------------------------------- /public/cta_one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/public/cta_one.jpg -------------------------------------------------------------------------------- /public/cta_three.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/public/cta_three.jpg -------------------------------------------------------------------------------- /public/cta_two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/public/cta_two.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/public/hero.jpg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/types.d.ts -------------------------------------------------------------------------------- /types/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/types/global.ts -------------------------------------------------------------------------------- /types/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/types/icon.ts -------------------------------------------------------------------------------- /types/medusa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/types/medusa.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bidah/mobile-medusa/HEAD/yarn.lock --------------------------------------------------------------------------------