react-native-turbo
TypeScript icon, indicating that this package has built-in type declarations

0.2.4 • Public • Published

React Native Turbo

React Native Hotwired Turbo support for creating hybrid apps with a single shared web view session.

NPM version Licence MIT


Installation

First step is to install react-native-turbo as a dependency to your project:

yarn add react-native-turbo

Currently on iOS you need to manually add the Turbo dependency to your Podfile:

pod 'Turbo', :git => 'https://github.com/hotwired/turbo-ios.git', :tag => '7.0.0-rc.6'

For Android you need to adjust your SDK version in your build.gradle.

Turbo Documentation:

Android SDK 24+ is required as the minSdkVersion in your build.gradle.

Example

Turbo webview can be rendered using native view VisitableView.

import {
  VisitableView,
  OnLoadEvent,
  VisitProposal,
  VisitProposalError,
  Session,
} from 'react-native-turbo';
import { useNavigation } from '@react-navigation/native';

const TurboScreen = () => {
  const navigation = useNavigation();

  const onVisitProposal = ({ nativeEvent: { action: actionType, url } }) => {
    // Handle opening new screen e.g. using react-navigation
    navigation.push('TurboScreen', { url });
  };

  return (
    <Session>
      <VisitableView
        url="https://turbo-native-demo.glitch.me"
        onVisitProposal={onVisitProposal}
      />
    </Session>
  );
};

You can use onVisitProposal() to handle turbo visits.

API Reference

VisitableView Component

Turbo manages a single webview instance, shared between multiple view controllers. It also automatically shows a screenshot of web page content when the web view is not focused. The Visitable views are rendered as a native view from React RNVisitable.

The library implements a native view RNVisitable component for React Native. This view is equivalent to the Turbo Visitable.

Props:

url

URL for the WKWebview to open. Changing the url should result in view replacing opening different page.

onVisitProposal

Callback called when the webview detects turbo visit action.

  • url
  • action – e.g "replace"

onLoad

Callback called with screen title and URL when the webview successfully loads.

  • url
  • title – web page title

onVisitError

Callback called when the webview fails to load.

  • statusCode
  • url
  • error

onMessage

Function that is invoked when the webview calls postMessage. Setting this property will inject this global into your webview.

Currently you need to individually call this function for android and for ios separately.

AndroidInterface.postMessage(JSON.stringify({message}));
webkit.messageHandlers.nativeApp.postMessage(message);

Methods:

injectJavaScript(jsCode)

Executes the javascript code in the webview js runtime.

Supports async methods and promises.

const jsCode = "console.warn('foo')";

injectJavaScript(jsCode);

Session Component

Each Session manages a single WKWebView instance. We've added support for multiple sessions, now each session instance is managed by <RNSession> native component. Every Session is used by all its React children RNVisitable components. The session is shared using React.Context API.

<Session>
  <VisitableView />
</Session>

The session enables communication between the native app and JavaScript (the visited page).

You are also able to use withSession(...) React HOC instead of composition.

Props:

onMessage

Function that is invoked when the webview calls postMessage. Setting this property will inject this global into your webview.

AndroidInterface.postMessage(JSON.stringify({message}));
webkit.messageHandlers.nativeApp.postMessage(message);

Methods:

injectJavaScript(jsCode)

Executes the javascript code in the webview js runtime.

Supports async methods and promises.

const jsCode = "console.warn('foo')";

injectJavaScript(jsCode);

Package Sidebar

Install

npm i react-native-turbo

Weekly Downloads

100

Version

0.2.4

License

MIT

Unpacked Size

3.19 MB

Total Files

271

Last publish

Collaborators

  • fryzu
  • pklatka