@reflowhq/cart-react
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

Reflow CartView

This is a React 18+ component for rendering a Reflow 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:

Prop Type Required Description
projectID string Yes The id of your Reflow project.
localization object No An object consisting of key/value pairs. Learn more.
testMode boolean No Determines 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

Prop Type Required Description
cart object Yes The result of calling the useCart hook.
auth object No The result of calling the useAuth hook from @reflowhq/auth-react.
successURL string No The URL where the customer will be redirected after a successful payment.
cancelURL string No The URL where the customer will be redirected after a failed or canceled payment.
onMessage function No Called 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

Prop Type Required Description
cart object Yes The result of calling the useCart hook.
product object Yes
buttonText string No Redefines the "Add to Cart" button text, if set.
showQuantity boolean No Whether the component should display the quantity widget.
showPersonalization boolean No Whether the component should display the product personalization options.
onMessage function No Called when the component produces any messages that should be shown to the customer. Returns a message object with type, title and description keys.
onVariantSelect function No Called 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

Prop Type Description
isLoaded boolean True if the cart has been fetched.
isUnavailable boolean True if there were issues while fetching the cart.
vacationMode object Includes a boolean status and a message if the store is in vacation mode.
products array The line items currently in the shopping cart.
footerLinks array An array of the links to terms of service/privacy/refund policy that are configured in the Reflow project's settings.
signInProviders array An array of the configured payment providers e.g. "facebook", "google", etc.
paymentProviders array An array of objects describing the configured payment providers e.g. Paypal, Stripe, etc.
currency string The cart currency.
subtotal number The cart subtotal. Use cart.formatCurrency(subtotal) to format the price.
total number The cart total. Use cart.formatCurrency(total) to format the price.
discount number The cart discount. Use cart.formatCurrency(discount) to format the price.
coupon object An object describing the coupon applied to the cart or null. Includes the coupon name, code, discount amount, etc.
giftCard object An object describing the gift card applied to the cart or null. Includes the gift card code, discount amount, balance, etc.
taxes object An object describing the taxes applicable to the order or null. Includes the tax amount, as well as tax exemption details.
taxExemption object An object describing the applied tax exemption.
locations array The available pickup locations.
shippingMethods array The available shipping methods for the provided shipping address.
shippableCountries array The countries the items in the cart can be shipped to.
shippingAddress object The shipping address entered by the user.
quantity number The total number of products currently in the cart, taking into account quantity.
errors array An 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:

Prop Required Description
id Yes The id of the product you want to add to the cart.
variantID No* The id of the selected product variant (* required if the product has variants)
personalization No An array of objects describing the applied personalizations.

Each personalization object can have the following props:

Prop Required Description
id Yes The personalization id.
inputText No The personalization text (for personalizations of type "text").
selected No The selected value from the personalization dropdown (for personalizations of type "dropdown").
file No A 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.

Prop Required Possible Values
address Yes object
deliveryMethod Yes 'shipping', 'pickup', 'digital'
exemptionType Yes 'tax-exemption-file' or 'tax-exemption-text'
exemptionValue Yes a 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:

Prop Required Possible Values Description
success-url Yes URL The URL the user should be redirected to after a successful checkout.
cancel-url Yes URL The URL where the customer will be redirected after a failed or cancelled payment.
payment-method Yes 'stripe', 'custom', 'pay-in-store', 'zero-value-cart' The payment method that will be used for completing the checkout.
payment-id No* string The id of the payment method. * Required if the payment method is 'custom'.
email Yes string
phone No string
customer-name No string
delivery-method Yes 'shipping', 'pickup', 'digital'
store-location No* number The index of the selected pickup location. * Required if the delivery method is 'pickup'
shipping-method No* number The index of the selected shipping method. * Required if the delivery method is 'shipping'
note-to-seller No string
auth-account-id No number The user id. * If Reflow user auth is enabled and a user is signed in in.
auth-save-address No boolean

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.

Package Sidebar

Install

npm i @reflowhq/cart-react

Weekly Downloads

56

Version

3.0.0

License

MIT

Unpacked Size

771 kB

Total Files

9

Last publish

Collaborators

  • martinaglv