Skip to main content

Cart React

This is a React 18+ component for rendering a Reflow Ecommerce shopping cart in your application.

Installation

Install it in your project with npm or another package manager:

npm install @reflowhq/cart-react

Usage

This library is meant to run in the browser. Just import the hook and pass your projectID, which can be found in the Reflow dashboard settings page:

useCart(config)

import { useCart } from "@reflowhq/cart-react";
import localization from "./localization.json";

const config = {
projectID: "1234",
localization,
};

function App() {
const cart = useCart(config);
...
}

The config can have the following keys:

PropTypeRequiredDescription
projectIDstringYesThe id of your Reflow project.
localizationobjectNoAn object consisting of key/value pairs. Learn more.
testModebooleanNoDetermines whether the cart should run in test mode. Learn more.

The cart object the hook returns contains the current cart state and a lot of useful functions.

<CartView/>

Renders a two-step shopping cart - Overview and Checkout.

import CartView, { useCart } from "@reflowhq/cart-react";
import useAuth from "@reflowhq/auth-react";
import "@reflowhq/cart-react/dist/style.css";

const config = {
projectID: "1234",
};

function App() {
const auth = useAuth(config);
const cart = useCart(config);

return (
<div>
<CartView
cart={cart}
auth={auth}
successURL={"https://example.com/success"}
cancelURL={"https://example.com/cancel"}
onMessage={(message) => {
console.log(message.type, message.title, message.description);
}}
/>
<button onClick={() => cart.addProduct({ id: "5678" })}>Add to cart</button>
</div>
);
}

Props

PropTypeRequiredDescription
cartobjectYesThe result of calling the useCart hook.
authobjectNoThe result of calling the useAuth hook from @reflowhq/auth-react.
successURLstringNoThe URL where the customer will be redirected after a successful payment.
cancelURLstringNoThe URL where the customer will be redirected after a failed or canceled payment.
onMessagefunctionNoCalled when the component produces any messages that should be shown to the customer. Returns a message object with type, title and description keys.

You can see a full featured example in the examples directory.

<AddToCart/>

Renders controls for variant selection, personalization options, a quantity widget and a button that adds the product to the cart.

import { useState, useEffect } from "react";
import { AddToCart, useCart } from "@reflowhq/cart-react";
import "@reflowhq/cart-react/dist/style.css";

const config = {
projectID: "1234",
};

function App() {
const cart = useCart(config);
const [products, setProducts] = useState([]);

useEffect(() => {
fetch(`https://api.reflowhq.com/v2/projects/${config.projectID}/products/`)
.then((response) => response.json())
.then((r) => setProducts(r.data))
.catch((error) => console.error(error));
}, []);

return (
<div>
{products.map((product) => (
<AddToCart
key={product.id}
cart={cart}
product={product}
onMessage={(message) => {
alert(message.title);
}}
/>
))}
</div>
);
}

Props

PropTypeRequiredDescription
cartobjectYesThe result of calling the useCart hook.
productobjectYes
buttonTextstringNoRedefines the "Add to Cart" button text, if set.
showQuantitybooleanNoWhether the component should display the quantity widget.
showPersonalizationbooleanNoWhether the component should display the product personalization options.
onMessagefunctionNoCalled when the component produces any messages that should be shown to the customer. Returns a message object with type, title and description keys.
onVariantSelectfunctionNoCalled when a different variant is selected for purchase. Returns a variant object containing all properties of the newly selected variant.

You can see a full featured example in the examples directory.

API

Calling the useCart hook returns an object containing the current cart state as well as methods for managing it.

const cart = useCart(config);
console.log(cart);

/*
{
"isLoaded": true,
"isUnavailable": false,
"products": [],
"locations": [],
...
}
*/

Cart state

PropTypeDescription
isLoadedbooleanTrue if the cart has been fetched.
isUnavailablebooleanTrue if there were issues while fetching the cart.
vacationModeobjectIncludes a boolean status and a message if the store is in vacation mode.
productsarrayThe line items currently in the shopping cart.
footerLinksarrayAn array of the links to terms of service/privacy/refund policy that are configured in the Reflow project's settings.
signInProvidersarrayAn array of the configured payment providers e.g. "facebook", "google", etc.
paymentProvidersarrayAn array of objects describing the configured payment providers e.g. Paypal, Stripe, etc.
currencystringThe cart currency.
subtotalnumberThe cart subtotal. Use cart.formatCurrency(subtotal) to format the price.
totalnumberThe cart total. Use cart.formatCurrency(total) to format the price.
discountnumberThe cart discount. Use cart.formatCurrency(discount) to format the price.
couponobjectAn object describing the coupon applied to the cart or null. Includes the coupon name, code, discount amount, etc.
giftCardobjectAn object describing the gift card applied to the cart or null. Includes the gift card code, discount amount, balance, etc.
taxesobjectAn object describing the taxes applicable to the order or null. Includes the tax amount, as well as tax exemption details.
taxExemptionobjectAn object describing the applied tax exemption.
locationsarrayThe available pickup locations.
shippingMethodsarrayThe available shipping methods for the provided shipping address.
shippableCountriesarrayThe countries the items in the cart can be shipped to.
shippingAddressobjectThe shipping address entered by the user.
quantitynumberThe total number of products currently in the cart, taking into account quantity.
errorsarrayAn array of objects describing the errors encountered. Includes error type, severity, message.

Reflow API

cart.refresh()

Updates the cart state with fresh data. If a cart has not yet been created, it creates a new cart.

cart.addProduct(options, quantity)

Adds a new product to the cart.

options can have the following keys:

PropRequiredDescription
idYesThe id of the product you want to add to the cart.
variantIDNo*The id of the selected product variant (* required if the product has variants)
personalizationNoAn array of objects describing the applied personalizations.

Each personalization object can have the following props:

PropRequiredDescription
idYesThe personalization id.
inputTextNoThe personalization text (for personalizations of type "text").
selectedNoThe selected value from the personalization dropdown (for personalizations of type "dropdown").
fileNoA Blob or a File object that will be uploaded to the server (for personalizations of type "file").
let result = await cart.addProduct(
{
id: "1234",
variantID: "1234_m",
personalization: [
{
id: "1234_engraving",
inputText: "Hello World",
},
{
id: "1234_gift_wrap",
},
],
},
2
);

console.log(result);

/*
{
"cartKey": <your-cart-key>
"cartQuantity": 2,
"success": true
}
*/

cart.updateLineItemQuantity(lineItemID, quantity)

Updates the quantity of a line item in the cart.

let result = await cart.updateLineItemQuantity(product.lineItemID, 3);

console.log(result);

/*
{
"cartQuantity": 3,
"success": true
}
*/

cart.removeLineItem(lineItemID)

Removes a line item from the cart.

let result = await cart.removeLineItem(product.lineItemID);

console.log(result);

/*
{
"cartQuantity": 0,
"success": true
}
*/

cart.applyDiscountCode({ code })

Adds a coupon/gift card code to the cart.

let result = await cart.applyDiscountCode({ code: "1234" });

console.log(result);

/*
{
"type": "coupon",
"success": true
}
*/

cart.removeDiscountCode({ code })

Removes the coupon/gift card with the given code from the cart.

let result = await cart.removeDiscountCode({ code: "1234" });

console.log(result);

/*
{
"type": "coupon",
"success": true
}
*/

cart.updateAddress({ address, deliveryMethod })

Updates the shipping/digital address and fetches the contents of the Cart with updated tax regions, shipping methods, etc. taking into account the new address.

let result = await cart.updateAddress({
address: {
name: "John Doe",
address: {
city: "New York",
country: "US",
postcode: "1234",
state: "NY",
},
},
deliveryMethod: "shipping",
});

console.log(result);

/*
{
"success": true
}
*/

cart.updateTaxExemption({ address, deliveryMethod, exemptionType, exemptionValue })

Updates the tax exemption.

PropRequiredPossible Values
addressYesobject
deliveryMethodYes'shipping', 'pickup', 'digital'
exemptionTypeYes'tax-exemption-file' or 'tax-exemption-text'
exemptionValueYesa Blob or a File object that will be uploaded to the server (jpg, jpeg, png, pdf, doc, docx) or a string (VAT number)
let result = await cart.updateTaxExemption({
address: {
name: "John Doe",
address: {
city: "New York",
country: "US",
postcode: "1234",
state: "NY",
},
},
deliveryMethod: "shipping",
exemptionType: "tax-exemption-text",
exemptionValue: "1234",
});

console.log(result);

/*
{
"success": true
}
*/

cart.removeTaxExemptionFile({ address, deliveryMethod, exemptionType, exemptionValue })

Removes the applied tax exemption.

let result = await cart.removeTaxExemptionFile();

console.log(result);

/*
{
"success": true
}
*/

cart.checkout(data)

data can have the following keys:

PropRequiredPossible ValuesDescription
success-urlYesURLThe URL the user should be redirected to after a successful checkout.
cancel-urlYesURLThe URL where the customer will be redirected after a failed or cancelled payment.
payment-methodYes'stripe', 'custom', 'pay-in-store', 'zero-value-cart'The payment method that will be used for completing the checkout.
payment-idNo*stringThe id of the payment method. * Required if the payment method is 'custom'.
emailYesstring
phoneNostring
customer-nameNostring
delivery-methodYes'shipping', 'pickup', 'digital'
store-locationNo*numberThe index of the selected pickup location. * Required if the delivery method is 'pickup'
shipping-methodNo*numberThe index of the selected shipping method. * Required if the delivery method is 'shipping'
note-to-sellerNostring
auth-account-idNonumberThe user id. * If Reflow user auth is enabled and a user is signed in in.
auth-save-addressNoboolean

Localization

To translate this toolkit, you need to pass a localization object to the useCart hook. This will change the entire user interface of Reflow components, including labels, text prompts and error messages. Example:

import localization from "./localization.json";

const cart = useCart({
projectID: "1234",
localization,
});

To create a translation, follow these steps:

  1. Download the en-US.json file. This is Reflow's default language file. You will use it as a starting point.
  2. Translate some or all of the phrases to your language of choice. This is covered in the next section.
  3. Save the translation file somewhere in your project.
  4. Import it and pass it to the useCart hook.
  5. Check your browser's console for any error messages that may point you to potential problems with your translation.

Translation File Format

The translation file is a simple JSON consisting of key/value pairs. The process of translating Reflow consists of rewriting the values to your language of choice.

// The default en-US.json in English
{
"locale": "en-US",

"shopping_cart": "Shopping Cart",
"product": "Product",
...
}
// A localized example in French
{
"locale": "fr-FR",

"shopping_cart": "Panier",
"product": "Produit",
...
}

Instructions

  • The keys should not be changed. They are used by the library for matching UI elements with their localized text.
  • The values represent the actual content that is visible in the UI. They should be replaced with the translation in the chosen language.
  • All lines in the JSON (except for the locale property) are optional. You can omit the lines you don't wish to translate. In that case the default English equivalent will be used.
  • The locale line is special. It only accepts a standard ISO country-language tag. This is the locale used for formatting prices and dates, among other things.

Message Format

The values in the JSON follow the standardized ICU message format. You can learn more about the message format here.

Translating Countries and Regions

In some cases the CartView component can display select inputs for customers to choose their country and region (e.g. for shipping address). By default all the countries and their regions names are shown in English.

These can be translated by adding the geo property to the localization JSON. In it, you can define what names should be displayed for the countries and regions you wish to translate. Here is an example:

"geo": {
"BE": {
"country_name": "Belgique",
},
"DE": {
"country_name": "Allemagne",
},
"CA": {
"country_name": "Canada",
"regions": {
"AB": "Alberta",
"BC": "Colombie-Britannique",
"MB": "Manitoba",
"NB": "Nouveau-Brunswick",
"NL": "Terre-Neuve-et-Labrador",
"NT": "Territoires du Nord-Ouest",
"NS": "Nouvelle-Écosse",
"NU": "Nunavut",
"ON": "Ontario",
"PE": "île du Prince-Édouard",
"QC": "Québec",
"SK": "Saskatchewan",
"YT": "Yukon"
}
},
}

We recommend downloading our example file for the geo property in English. You can then remove the countries that are unnecessary for you store, translate the ones you need and move them to your localization file under the geo property.

Local Currency

Reflow supports a wide array of currencies that can be used for everything in your store, including product prices and shipping costs. You can change the currency of your project from the general settings page.

For a full list of available currencies visit the Currency Support docs.

Test Mode

With Reflow's test mode you can try out your integration without making actual payments. The test mode provides a separate environment that supports all of the available features from live mode, without the risk of accidentally making a payment with real money.

To enable test mode, just add testMode: true to the config object:

import { useCart } from "@reflowhq/cart-react";

const config = {
projectID: "1234",
testMode: true,
};

function App() {
const cart = useCart(config);
// ...
}

While testMode is active, orders will be recorded in the "Test mode" section of your Reflow project, and payments will be made with PayPal's Sandbox and Stripe's test credit card info.

License

Released under the MIT license.