Dependencies
Overview
With Dependencies, you can easily replace parts of Spree core with your custom classes. You can replace Services, CanCanCan Abilities (user for Permissions), and API Serializers (used for generating JSON API responses).
We plan to expand this feature to include more classes in the future.
Application (global) customization
This will change every aspect of the application (both APIs, Admin Panel, and default Rails frontend if you’re using it).
In your config/initializers/spree.rb
file, you can set the following:
or
Now let’s create your custom service.
And add the following code to it:
This code will:
- Inherit from
Spree::Cart::AddItem
- Override the
call
method to add your custom logic - Call
run :add_to_line_item
to add the item to the cart - Call
run Spree::Dependencies.cart_recalculate_service.constantize
to recalculate the cart - Call
run :send_notification
to send a notification
Values set in the initializer have to be strings, eg. 'MyNewAwesomeAddItemToCart'
Controller level customization
To replace serializers or Services in a specific API endpoint you can create a simple decorator:
Create a app/controllers/spree/cart_controller_decorator.rb
This will change the serializer in this API endpoint to MyNewAwesomeCartSerializer
and also it will swap the default add_item_service
to MyNewAwesomeAddItemToCart
.
Different API endpoints can have different dependency injection points. You can review their source code to see what you can configure.
API level customization
Storefront and Platform APIs have separate Dependencies injection points so you can easily customize one without touching the other.
In your Spree initializer (config/initializers/spree.rb
) please add:
This will swap the default Cart serializer and Add Item to Cart service for your custom ones within all Storefront API endpoints that use those classes.
You can mix and match both global and API-level customizations:
The second line will have precedence over the first one, and the Storefront API will use AnotherAddItemToCart
and the rest of the application will use MyNewAwesomeAddItemToCart
Default values
By default values can be easily checked by looking at the source code of Dependencies classes:
Was this page helpful?