Track WebViews
Enable tracking in WebViews
Section titled Enable tracking in WebViewsInject the Bridge between the CS Tag in WebView mode and the SDK
Section titled Inject the Bridge between the CS Tag in WebView mode and the SDKThis step will inject our JavaScript Bridge in order to connect the CS Tag in WebView mode and our SDK.
In order to inject this JavaScript, you will use our CSWebView
component to render your WebView, as detailed bellow.
Here is a screen with a react-native-webview
WebView component. Let’s detail how we will inject it with the Contentsquare JavaScript WebView interface.
1. Retrieve the native tag to the WebView
Section titled 1. Retrieve the native tag to the WebViewIn order to be able to call our bridge injection functions, you need to store the native tag of the WebView component, which acts as an identifier, so you can inject it with Contentsquare bridge later. We do that using the useState
hook (1), and setting it to the value of the webview target (2) we get from the onLoadStart
callback of the WebView component (3).
2. Call the Contentsquare bridge’s injection/removal functions
Section titled 2. Call the Contentsquare bridge’s injection/removal functionsIn order for the injection and removal to be successful, you should call the bridge when your WebView is fully loaded, and before it is destroyed.
To avoid multiple injections issues, you have to create a new state (1) to set the tag once it is injected (2). You should inject the tag (3) in a function you pass to the onLoadEnd
callback of the WebView (4) and remove the injection in the useLayoutEffect
(5). Make sure to only inject it once, and pay attention to side effects of useLayoutEffect
when states change within your component.