_startCheckout
Example Usage of_startCheckout
Method
_startCheckout
method is a utility function designed to initiate the checkout process within an application. It handles the creation of a checkout session based on either a quote or a cart, and then triggers the appropriate events and callbacks. This method is essential for managing the transition from product selection to the checkout stage.Purpose
_startCheckout
method starts the checkout process by:1.
2.
3.
4.
Usage Steps
1.
onSuccess
: A function that will be called when the checkout initiation is successful. It receives the response data from the API.onError
: A function that will be called if there is an error during the checkout initiation. It receives the error status and data.
2.
Invoke the
_startCheckout
method with the onSuccess
and onError
callback functions.
Detailed Breakdown
1.
localStorage.checkoutToken
is not present, a new token is generated and stored in localStorage
. This token is used to identify the checkout session.2.
quote
parameter, a POST request is sent to the endpoint designed for quote-based checkouts.checkoutToken
and quoteToken
to start the checkout session based on a saved quote.quote
parameter is present, the method checks for localStorage.cartToken
.checkoutToken
and cartToken
.3.
proceed-to-checkout
is emitted with the response data. This allows other parts of the application to react to the checkout initiation.4.
onSuccess
callback is called with the response data from the checkout initiation.onError
callback is called with the error status and data if the checkout initiation fails.Common Use Cases
Notes
/api/checkout/start/quote/{checkoutToken}/{quoteToken}
and /api/checkout/start/{checkoutToken}/{cartToken}
) are properly implemented on the server side._startCheckout
method to handle the initiation of checkout processes in your application, ensuring that users can transition smoothly from shopping to completing their purchase.Modified at 2024-08-20 13:34:37