0.8.0 • Published 1 year ago

@crystallize/reactjs-hooks v0.8.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

React JS Hooks

This is the JS API Client wrapper for React JS using hooks.

It provides Hooks and a Provider to handle a Crystallize State.

Installation

With NPM

npm install @crystallize/reactjs-hooks

With Yarn

yarn add @crystallize/reactjs-hooks

Usage

import { CrystallizeProvider } from '@crystallize/reactjs-hooks';
ReactDOM.render(
    <CrystallizeProvider language="en" tenantIdentifier="furniture">
        <App />
    </CrystallizeProvider>,
    document.getElementById('root'),
);

And then anywhere in the component tree:

import { useCrystallize } from '@crystallize/reactjs-hooks';
const { state, dispatch, apiClient, helpers } = useCrystallize();

// Component A

useEffect(() => {
    (async () => {
        const caller = apiClient.catalogueApi;
        const query = `query ($language: String!, $path: String!) {
                    catalogue(language: $language, path: $path) {
                        ... on Product {
                        name
                        }
                    }
                }`;
        const response = await caller(query, {
            language: 'en',
            path: '/shop/chairs/bamboo-chair',
        });

        console.log(response.data.catalogue.name);
    })();
}, []);

As you can see, you get direct access to a built apiClient. You also get access to a helpers object that wraps the following constructors from the JS API Client:

  • catalogueFetcher
  • navigationFetcher
  • productHydrater
  • orderFetcher

But on those, in the React JS Context you don’t have to provide the language, because the context knows it.

The State holds the configuration and the language, and the Dispatch exposes:

  • loading: (state: boolean)
  • changeLanguage: (language: string)
  • updateConfiguration: (configuration: ClientConfiguration)

You can check out this live demo: https://crystallizeapi.github.io/libraries/reactjs-hooks/use-crystallize

0.8.0

1 year ago

0.7.1

2 years ago

0.7.0

2 years ago

0.5.0

2 years ago

0.4.1

2 years ago

0.6.0

2 years ago

0.4.2

2 years ago

0.3.1

2 years ago

0.3.0

2 years ago

0.2.1

2 years ago

0.1.0

2 years ago