@quotientjs/react
React provider for the Quotient SDK client.
Installation
npm install @quotientjs/react
yarn add @quotientjs/react
pnpm add @quotientjs/react
Usage
Provider Setup
Wrap your application with the QuotientProvider:
import { QuotientProvider } from "@quotientjs/react";
function App() {
  return (
    <QuotientProvider
      clientOptions={{
        apiKey: "your_api_key",
        baseUrl: "https://api.quotient.com",
      }}
      // Automatically track page views on initial load and route changes
      autoTrackPageViews={true}
    >
      <YourApp />
    </QuotientProvider>
  );
}
Using the Client
Access the Quotient client with the useQuotient hook:
import { useQuotient } from "@quotientjs/react";
function YourComponent() {
  
  const { client, isInitializing, error, reset, trackPageView } = useQuotient();
  
  const handleTrackPageView = () => {
    trackPageView();
  };
  
  const handleSubmit = async (email) => {
    if (client) {
      await client.people.upsert({
        emailAddress: email,
        emailMarketingState: "SUBSCRIBED",
      });
    }
  };
  return (
    <div>
      {isInitializing ? (
        <p>Initializing client...</p>
      ) : error ? (
        <p>Error: {error.message}</p>
      ) : (
        <p>Client ready!</p>
      )}
      <button onClick={handleTrackPageView}>Track Page View</button>
      <button onClick={reset}>Reset Client</button>
    </div>
  );
}
Automatic Page View Tracking
When autoTrackPageViews is enabled, the provider will:
- Track a page view when the component mounts
- Track page views when the pathname changes (works with history API)
- Works with most modern React routers like React Router
This is ideal for Single Page Applications where you want analytics for each virtual page.
Additional Hooks
For components that only need to know the client status:
import { useQuotientStatus } from "@quotientjs/react";
function ClientStatus() {
  
  const { isInitializing, error } = useQuotientStatus();
  return (
    <div>
      {isInitializing
        ? "Initializing..."
        : error
          ? `Error: ${error.message}`
          : "Ready"}
    </div>
  );
}
Manual Initialization
If you need to initialize the client manually:
import { QuotientProvider, useQuotient } from "@quotientjs/react";
function App() {
  return (
    <QuotientProvider
      clientOptions={{
        apiKey: "your_api_key",
        baseUrl: "https://api.quotient.com",
      }}
      autoInitialize={false}
    >
      <InitializeButton />
    </QuotientProvider>
  );
}
function InitializeButton() {
  const { initialize, isInitializing, client } = useQuotient();
  return (
    <div>
      {client ? (
        <p>Client initialized!</p>
      ) : (
        <button onClick={initialize} disabled={isInitializing}>
          {isInitializing ? "Initializing..." : "Initialize Client"}
        </button>
      )}
    </div>
  );
}
License
MIT