matejkriz / react-native-today-widget

iOS Today Widget in React Native
Other
415 stars 26 forks source link
ios ios-extension react-native react-native-ios today-widget widget

React Native Today Widget

Experimental library investigating limits of implementation iOS App Extensions using React Native.

Sample result from Complex example:

today_widget_example

What is Today Widget?

Getting started

This library will help you to add iOS Today Widget App Extension without need to open XCode.

Dependencies

Setup

$ yarn add react-native-today-widget
$ react-native link

You could use $ npm i react-native-today-widget --save as well, but don't forget to save it in package.json dependencies. Otherwise RN will not link it.

Whenever you change Bundle Identifier (CFBundleIdentifier) for main app, you have to run ./node_modules/.bin/bundle-id script or reinstall the module (rm -rf node_modules/react-native-today-widget && yarn)

Manual linking

react-native link should works, but in case of some troubles, you could follow general guide for linking libraries.

Usage

All you need is to create an index.widget.js file at the root and register there your component for key TodayWidgetExtension:

const TodayWidget = () => (
  <View>
    <Text>
      Hello Today Widget!
    </Text>
  </View>
);

AppRegistry.registerComponent('TodayWidgetExtension', () => TodayWidget);

Please note that registering both the widget and the main app in index.js file can cause memory issues. Because the app is also bundled (even if you don't use it in your widget), and it causes 'Unable to load' error. When we split the registration into two different files, the widget and the main app are bundled seperately. See blog post from Maxim Toyberman.

In place of TodayWidget component, you could use any JSX component. See Basic example.

Run your app as usual:

react-native run-ios

Display new widget on Search screen or by force touch on your app icon (on devices supporting 3D Touch).

If you need to see logs from TodayWidgetExtension, use:

react-native log-ios

In your extension scheme’s Run phase, you specify a host app as the executable

Memory limitation

The memory limit for Today Widget on device is 16 MB. (Great explanation is in this talk by Conrad Kramer)

Verified experimentally using XCode debugger - while loading big image, Today Widget crashes as soon as it reaches 16 MB memory usage.

Memory usage of Basic example with just one Text element is about 11 MB. Up to 13 MB during content rendering.

For running Today Widget on device you have to use Release build configuration. Development mode adds too much overhead. Only possibility to run the widget on device in development mode is using Instruments tool to temporarily disable the limit.

Notes

To investigate more iOS App Extensions with React Native check those:

API Reference

DevMenu

Default dev menu is not available in widget, but you could use DevSettings from NativeModules or this prepared DevMenu component to enable Live/Hot reload or remote JS debugging.

Example
import { DevMenu } from 'react-native-today-widget';

const TodayWidget = () => (
  <View>
    <Text>Hello Today Widget!</Text>
    {__DEV__ && <DevMenu />
      /* Has to be a last element to be clickable,
      because it has absolute position */
    }
  </View>
);

Screenshot of opened Developer Menu:

developer_menu

openURL([url:string])

Asks the system open a URL on behalf of the currently running app extension.

If you employ this method to open other apps from your widget, your App Store submission might entail additional review to ensure compliance with the intent of widgets.

setExpandable([expandable:boolean = true], [maxHeight:number = 110])

Enables to display native Show More / Less button in top right corner of the widget (iOS 10).

Height of collapsed Today Widget is always 110px on iOS 10.

Example
import { setExpandable } from 'react-native-today-widget';

const TodayWidget = () => {
  const isExpandable = true;
  const maxHeight = 500;
  setExpandable(isExpandable, maxHeight);
  const onLayout = (event) => {
    const height = event.nativeEvent.layout.height;
    if (height <= 110) {
      console.log('widget is in compact mode');
    }
    else if (height > 110) {
      console.log('widget is in expanded mode');
    }
  }
  return (
    <View onLayout={onLayout}>
      <Text>
        Hello Today Widget!
      </Text>
    </View>
  );
};

You could try Expandable example