ePrivacy and GPDR Cookie Consent by Cookie Consent Skip to main content

How to track pageviews and other events

Single-page-appspage applications

As there is no page refresh in single-page applications developed like React, Vue or Angular frameworks. In this case, the page view tracking method needs to be called directly in the application router.

In SPAssingle-page applications you need to call the following method to track every page view:

window.MeiroEvents.track("pageView", {referrer: "https://example.com/previous" });

The second object parameter is optional, you can pass additional data to the event payload.

Example

Following example shows usage for React with the React Router library.

 As referrer doesn’t change in the singe-page application, it’s recommended to pass it in event payload.

import { Router, Route, Switch } from "react-router-dom";
import createBrowserHistory from "history/createBrowserHistory";

const history = createBrowserHistory({})

history.listen(() => {
  if (MeiroEvents && typeof MeiroEvents.track === "function") {
    MeiroEvents.track("pageView", {
      referrer: "previous url..."
    })  
  }
})

React.DOM.render(
  <Router history={history}>
    <Switch>
      <Router ... />
    </Switch>
  </Router>,
  document.querySelector(".app")
)