React Use Analytics API
Edit page
Home
Hooks
useAnalyticsApiuseAuthorizeuseDataDescriptionUsageSignatureuseDataChartuseSignOutuseViewSelector
Code of ConductMIT License

useData

Description

This hook returns an execute function that can be used to query the Google Analytics Core Reporting API for data and get back the results.

You can use the raw data to build your own charts using a charting library of your choosing.

Usage

import { useData } from 'react-use-analytics-api';

In your function component:

const query = {
metrics: 'ga:sessions',
dimensions: 'ga:date',
'start-date': '28daysAgo',
'end-date': 'today',
ids: viewId,
};
const execute = useData(
gapi,
query,
response => console.log('Data query response:', response),
response => console.error('Data query error:', response)
);
React.useEffect(() => {
execute();
}, [execute]);

Provide the hook with gapi, your query, and two callbacks: onSuccess and onError.

Call execute to run the query.

Signature

useData = (gapi?: GoogleAnalyticsEmbedAPI, query: Query, onSuccess?: (response: any) => void, onError?: (response: any) => void): (() => void)

Arguments

ArgumentTypeDescription
gapiGoogleAnalyticsEmbedAPI | undefinedThe Google Analytics Embed API. When undefined, calling useData does nothing.
queryQueryThe data query for the Google Analytics Core Reporting API.
onSuccess(response) => voidFired when the query has successfully completed. The response argument will contain the query results.
onError(response) => voidFired when an error occurs during the query process. If you want to get the error message from the response object it will be at response.error.message.

Return

The hook returns a function, execute.

execute() => void

When gapi is not undefined, this function executes the query to the Google Analytics Core Reporting API using gapi.analytics.report.Data.

After calling execute, either the onSuccess or onError callback will be called.