Notice
Install the React Native SDK and Web SDK respectively on the app and website before setting up the hybrid app.
You can set the React Native SDK to handle Airbridge related tasks occurring on the in-app website in hybrid apps without changing the website code.
React Native SDK can handle commands related to event transmission, device settings, and user settings that take place in the Web SDK. Set up using Airbridge.createWebInterfaceScript
and Airbridge.handleWebInterfaceCommand
functions before displaying the website in the web view.
webToken
is a Web SDK token. The Web SDK token can be checked in Airbridge dashboard under [Settings]>[Tokens].
postMessageScript
is a JavaScript code that delivers the payload variable, which stores the command passed from the web SDK to the React Native SDK, to the React Native area.
command
is the command received from the web SDK delivered to the React Native SDK.
import { useEffect, useState } from 'react'
import { WebView } from 'react-native-webview'
import { Airbridge } from 'airbridge-react-native-sdk'
export const App = () => {
const [script, setScript] = useState<string | undefined>(undefined)
useEffect(() => {
const webToken = 'YOUR_WEB_SDK_TOKEN'
const postMessageScript = 'window.ReactNativeWebView.postMessage(payload)'
Airbridge.createWebInterfaceScript(webToken, postMessageScript).then((script) => {
setScript(script)
})
}, [])
return (
script !== undefined
) ? (
<WebView
source={{ uri: 'https://...' }}
onMessage={(event) => {
const command = event.nativeEvent.data
Airbridge.handleWebInterfaceCommand(command)
}}
injectedJavaScript={script}
/>
) : (
<></>
)
}
Beware following.
Make sure to collect the events that occur in the in-app WebView through the Web SDK in a hybrid app setting. When collecting such events through the App SDK, event duplication will occur.
このページは役に立ちましたか?