0.13.5 • Published 2 months ago

@shopify/post-purchase-ui-extensions-react v0.13.5

Weekly downloads
-
License
MIT
Repository
-
Last release
2 months ago

@shopify/post-purchase-ui-extensions-react

This library provides utilities for writing UI Extensions for Checkout post-purchase using React.

Installation

$ yarn add @shopify/post-purchase-ui-extensions-react

Usage

UI Extensions rendering capabilities are built on top of a library called remote-ui. One of the powerful aspects of remote-ui is that it can be the target for JavaScript libraries that support custom (non-DOM) rendering. React is one such library, and remote-ui provides a custom renderer for React that allows you to use all the power of React, while outputting UI mutations that UI Extensions can understand.

@shopify/post-purchase-ui-extensions-react provides a few additional utilities if you are writing a UI extension in React (it also re-exports all the relevant values from @shopify/post-purchase-ui-extensions). Before you start down this path, though, make sure you are working on an extension that will be complex enough to warrant the additional bundle size of including React. The core API of remote-ui is built to be usable directly, and remote-ui provides other bindings, like this one to htm, that provide some of the ergonomics of React without so much overhead. For additional details, please read the performance guide.

To use the React bindings in UI Extensions for Post Purchase, start by importing React as you normally would. All of the core features of React are available, including hooks, context, and more.

You’ll then import render from @shopify/post-purchase-ui-extensions-react. This function is a thing wrapper around shopify.extend and @remote-ui/react’s render(). You’ll pass this function the name of an extension that can render UI, and a function that should return the JSX to render when that extension point is run. This function receives the input argument for the extension point.

import {render} from '@shopify/post-purchase-ui-extensions-react';

// `extensionPoint` is part of the [standard API](../checkout-ui-extensions/src/extension-points/api/standard)
render('Checkout::PostPurchase::Render', ({extensionPoint}) => (
  <App extensionPoint={extensionPoint} />
));

interface Props {
  extensionPoint: string;
}

function App({extensionPoint}: Props) {
  return <>Extension point: {extensionPoint}</>;
}

If you’ve ever used React on the web, you’re probably used to returning DOM nodes as part of your React components. Because UI Extensions execute in a web worker and have no access to the DOM, returning DOM components is an error in UI Extensions. Instead, you can return the components you import from @shopify/post-purchase-ui-extensions-react, which are the equivalent of the DOM in Post Purchase UI Extensions — they are the “leaf” elements, the lowest-level UI primitives that exist.

import {render, Button} from '@shopify/post-purchase-ui-extensions-react';

render('Checkout::PostPurchase::Render', (props) => <App {...props} />);

interface Props {
  extensionPoint: string;
}

function App({extensionPoint}: Props) {
  return (
    <Button
      onPress={() => {
        console.log(`Extension point: ${extensionPoint}`);
      }}
    >
      Log extension point to console
    </Button>
  );
}

Other React-specific APIs

useExtensionInput()

useExtensionInput is a custom React hook that gives you access to the full input argument provided to your extension point (this is the value that, if you were registering an extension point directly with shopify.extend, would be passed as the second argument to your callback). This allows you to access and call the main APIs between your extension and Shopify anywhere in your React component.

If you are using TypeScript, you can supply the name of the extension point as a type parameter to this function. Doing so will refine the return type to be exactly the input type for that extension point, so make sure you pass the name of the extension you are actually rendering.

import {
  render,
  useExtensionInput,
  Button,
} from '@shopify/post-purchase-ui-extensions-react';

render('Checkout::PostPurchase::Render', () => <App />);

function App() {
  const {extensionPoint} =
    useExtensionInput<'Checkout::PostPurchase::Render'>();

  return (
    <Button
      onPress={() => {
        console.log(`Extension point: ${extensionPoint}`);
      }}
    >
      Log extension point to console
    </Button>
  );
}

This hook can only be called if you registered your extension with render, as that callback wraps the application in the necessary React context to make the input available anywhere in the tree.

0.13.5

2 months ago

0.13.4

1 year ago

0.13.3

2 years ago

0.13.2

3 years ago

0.13.0

3 years ago

0.12.0

3 years ago

0.12.1

3 years ago

0.11.0

3 years ago

0.10.1

3 years ago

0.10.1-alpha.0

3 years ago

0.10.0

3 years ago

0.10.0-alpha.2

3 years ago

0.10.0-alpha.1

3 years ago

0.10.0-alpha.0

3 years ago

0.9.5

3 years ago