Rails is slow. Spree is slower. The main purpose of this repository is to give a Spree front-end that is snappier and provides a more modern approach to solve the common problems found in e-commerce space. We are enthusiastic about this project and will continue supporting this project. :)
This project was bootstrapped with Create React App. You can tweak any build related configuration by following this package.
Spree-on-react provides a complete front end for Spree built entirely on ReactJS. It works with spree_ams gem which is written using ActiveModelSerializers
and is a faster and a better alternative to the core spree api.
The purpose of this repository is to continue to evolve spree, making it faster and easier to use.
- ReactJS
- ReactBootstrap
- Redux and related packages.
- React-router
- Webpack for deployment
For a comprehensive list, see package.json
.
- User Login / Logout.
- Product listing with infinite scroller.
- Product filtering by taxons.
- Product search.
- Cart (Logged-in as well as guest users).
- Checkout steps (Logged-in as well as guest users).
- Order listing for logged in users.
- Route handling.
- Using local storage to maintain orders and session information in browser.
- I18n
This project depends on the spree_ams
gem as mentioned above. This response is not particularly suited for traversing. Adapter classes process the response sent by spree_ams to make it more traversable across the application. We use this processed response while dispatching redux actions.
Raw Response
{
"product": {
"id": "1",
"product_property_ids": [1, 2, 3]
},
"product_properties": [
{
"id": "1",
"name": "Brand",
"value": "Reebok"
},
{
"id": "2",
"name": "Color",
"value": "Red"
}
]
}
Processed Response - Nesting properties inside products.
{
"product": {
"id": "1",
"product_property_ids": [1, 2, 3],
"product_properties": [
{
"id": "1",
"name": "Brand",
"value": "Reebok"
},
{
"id": "2",
"name": "Color",
"value": "Red"
}
]
}
}
Our long term goal is to evntually get rid of these adapter classes and use redux-orm as it is more scalable. However, the library is yet to release its first stable version.
This application is under initial development currently. It uses a spree API server as its data source to run the FE. To set up the project:
git clone https://github.com/vinsol-spree-contrib/spree-on-react
cd spree-on-react
There are already a lot of resources on how to install node and npm for your operating system. Install Node and npm and come back to follow. This project is tested on node version 5.3.0 and higher.
This will install everything you'll need to run this application.
npm install
The application depends on a few environment variables. Create a
.env
file at the root directory of your project and add the following variables. Change the values based on your backend.
touch .env
vi .env
List of Configuration variables:
- REACT_APP_API_BASE="http://localhost:3001/api/v1"
- REACT_APP_AMS_API_BASE='http://localhost:3001/api/ams'
- REACT_APP_API_HOST="http://localhost:3001"
- REACT_APP_ALLOW_GUEST_SIGNUP = false
- REACT_APP_SPREE_API_TOKEN='2342862741qweqw7te27632'
Note: We are using spree's core API for fetching countries and states as AMS is not really efficient for these end points. So, we need API base for both core and ams.
Imp Note: By Default Spree requires an API token for user signup. REACT_APP_ALLOW_GUEST_SIGNUP is therefore set to false by default. If this API token is disabled under Spree, make sure to set this env variable to true to ignore this token on signup actions. If REACT_APP_ALLOW_GUEST_SIGNUP is false
, then REACT_APP_SPREE_API_TOKEN is required.
- Export the NODE_ENV.
echo 'export NODE_ENV="development"' >> ~/.bash_profile
Ubuntu Desktop note: Modify your ~/.bashrc instead of ~/.bash_profile.
Zsh Note: Modify your ~/.zshrc file instead of ~/.bash_profile.
- Generate the locale files.
npm run build:langs
Note: npm run build
generates the locale files as well as the final build. This should be used for generating the production build.
This runs a local server on http://localhost:3000.
npm start
Finally, run your Spree project on port 3001 (or whatever port you specified in .env
file). This will serve as the api to run the frontend.
Add spree_ams
to your Gemfile
.
cd <path-to-your-rails-spree-project>
gem 'spree_ams', github: 'vinsol-spree-contrib/spree_ams', branch: '3-1-stable'
Run your rails server.
bundle exec rails server -p 3001
open http://localhost:3000
The project uses react-intl for localization. The locale files are written in json
format. The keys are flat in heirarchy (no nested keys). Lets consider that we are adding locales for French.
- Create a directory inside the locales directory with name 'fr'.
- Copy the keys from an existing locale file from
locales
directory in to the 'fr' directory created above. - Add actual language translations as values to the keys.
- Translate the locales: Below is the task defined in
package.json
to build the locales. The same has also been coupled withnpm run build
to assist in production deployment.
npm run build:langs
This task should serve most common needs. For more complex requirements, you can easily tweak this task according to your needs. See: scripts/translate.js
https://spree-on-react.herokuapp.com/
Example Credentials:
- Email: [email protected]
- Password: spree-vinsol
See this blog post.
- Implement webpack's code splitting for smaller bundle sizes.
- Deployment on AWS using Nginx.
We are heavily working on the below features. Our constant focus is on to improve the code quality, making the separation of concerns between components and container more pronounced.
- Adding type checking with Flow
This repository is still very young and adding new features is our top priority. We'll begin writing test cases once we have build most of the spree core functionality.
We encourage you to contribute to this project. Please use GitHub issue tracker to raise pull requests, feature requests and report issues. For any security related issues, please email us directly.
Spree on React is released under the MIT License.
Shubham Gupta, @_guptashubham