prisma-ecommerce
prisma-ecommerce
A prisma e-commerce real-world fullstack example π
Homepage view
Browsing product view
Cart view
Payment view
Project paused for a moment while I’m finishing https://github.com/Weakky/ra-data-prisma.
This will allow the backoffice to be far more robust, maintainable, and easier to develop.
Read more about it here
Features
π Beautiful, easily customizable react-native app
π¨ GraphQL backend powered by Prisma.io
π¦ Support several shops behind the same application
π₯ Handcrafted backoffice to manage your e-commerce shop
π Fully customizable products (variant system)
π« Real-time updates for product availabilities
πΈ Ready-to-sell Stripe integration (PCI compliant, including 3D Secure)
π Push notification system to keep users updated when their orders are prepared
β€οΈ Made with love for the open-source community
The backoffice
Manage your products, your orders, your customers.
Philosophy
Youβll quickly realize that there are no state-management library whatsoever. Iβm actively militating against the wrong usage of those. Although a sweet Redux or MobX could have been used in some places (especially on the RN app), this app also acts as a showcase to promote vanilla React. Especially since the new Context API (Although I havenβt updated React yet).
Troubleshooting
[Mobile][Android] Error: Network error: Network request failed.
Android is running in an emulator.
The localhost is pointing to the environment in which the code is running. The emulator emulates a real device while the simulator is only imitating the device.
Therefore the localhost on Android is pointing to the emulated Android device. And not to the machine on which your server is running.
The solution is to replace localhost with the local IP address of your machine.
mobile/src/graphql/setupApollo.js
const httpLink = new HttpLink({
uri: YOUR_LOCAL_IP,
});