Analytics. Provider
Provides a context for tracking page views and cart events to send as analytics data to Shopify. This component is integrated with the Customer Privacy API for consent management. The provider can also be used to connect third-party analytics services through its subscribe and publish system. The hook provides access to the analytics provider context.
Anchor to propsProps
- Anchor to cartcartcartCartReturn | Promise<CartReturn>CartReturn | Promise<CartReturn>requiredrequired
The cart or cart promise to track for cart analytics. When there is a difference between the state of the cart,
will trigger aevent. It will also produceandbased on cart line quantity and cart line id changes.- Anchor to shopshopshopShopAnalytics | Promise<ShopAnalytics>ShopAnalytics | Promise<ShopAnalytics>requiredrequired
- Anchor to consentconsentconsentPartial< Pick< CustomerPrivacyApiProps, 'checkoutDomain' | 'storefrontAccessToken' | 'withPrivacyBanner' > >Partial< Pick< CustomerPrivacyApiProps, 'checkoutDomain' | 'storefrontAccessToken' | 'withPrivacyBanner' > >requiredrequired
The customer privacy consent configuration and options.
- Anchor to childrenchildrenchildrenReactNodeReactNode
React children to render.
- Anchor to canTrackcanTrackcanTrack() => boolean() => boolean
An optional function to set wether the user can be tracked. Defaults to Customer Privacy API's
.- Anchor to customDatacustomDatacustomDataRecord<string, unknown>Record<string, unknown>
An optional custom payload to pass to all events. e.g language/locale/currency.
- Anchor to disableThrowOnErrordisableThrowOnErrordisableThrowOnErrorbooleanboolean
Disable throwing errors when required props are missing.
- stringstring
The domain scope of the cookie set with
. *
CartReturn
Cart & {
errors?: StorefrontApiErrors;
}Cart
StorefrontApiErrors
JsonGraphQLError[] | undefinedShopAnalytics
- shopId
The shop ID.
string - acceptedLanguage
The language code that is being displayed to user.
LanguageCode - currency
The currency code that is being displayed to user.
CurrencyCode - hydrogenSubchannelId
The Hydrogen subchannel ID generated by Oxygen in the environment variable.
string
CustomerPrivacyApiProps
- checkoutDomain
The production shop checkout domain url.
string - storefrontAccessToken
The storefront access token for the shop.
string - withPrivacyBanner
Whether to load the Shopify privacy banner as configured in Shopify admin. Defaults to true.
boolean - onVisitorConsentCollected
Callback to be called when visitor consent is collected.
(consent: VisitorConsentCollected) => void - onReady
Callback to be call when customer privacy api is ready.
() => void
VisitorConsentCollected
- analyticsAllowed
boolean - firstPartyMarketingAllowed
boolean - marketingAllowed
boolean - preferencesAllowed
boolean - saleOfDataAllowed
boolean - thirdPartyMarketingAllowed
boolean
Examples
example
Description
This is the default example
JavaScript
import {Analytics, getShopAnalytics} from '@shopify/hydrogen'; import {defer} from '@shopify/remix-oxygen'; import {Outlet, useLoaderData} from '@remix-run/react'; export async function loader({context}) { const {cart, env} = context; const cartPromise = cart.get(); return defer({ cart: cartPromise, shop: getShopAnalytics(context), consent: { checkoutDomain: env.PUBLIC_CHECKOUT_DOMAIN, storefrontAccessToken: env.PUBLIC_STOREFRONT_API_TOKEN, }, }); } export default function App() { const data = useLoaderData(); return ( <html lang="en"> <head> <meta charSet="utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1" /> </head> <body> <Analytics.Provider cart={data.cart} shop={data.shop} consent={data.consent} > <Outlet /> </Analytics.Provider> </body> </html> ); }TypeScript
import {Analytics, getShopAnalytics} from '@shopify/hydrogen'; import {defer, type LoaderFunctionArgs} from '@shopify/remix-oxygen'; import {Outlet, useLoaderData} from '@remix-run/react'; export async function loader({context}: LoaderFunctionArgs) { const {cart, env} = context; const cartPromise = cart.get(); return defer({ cart: cartPromise, shop: getShopAnalytics({ storefront: context.storefront, publicStorefrontId: env.PUBLIC_STOREFRONT_ID, }), consent: { checkoutDomain: env.PUBLIC_CHECKOUT_DOMAIN, storefrontAccessToken: env.PUBLIC_STOREFRONT_API_TOKEN, }, }); } export default function App() { const data = useLoaderData<typeof loader>(); return ( <html lang="en"> <head> <meta charSet="utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1" /> </head> <body> <Analytics.Provider cart={data.cart} shop={data.shop} consent={data.consent} > <Outlet /> </Analytics.Provider> </body> </html> ); }