Code sharing between mobile and web

Par :
Zhe SUN
lun, 17/09/2018 - 16:19
Niveau :
Avancé

First experience with react-native and react-native-web

Résumé : en qualité de développeur web et/ou mobile, la question du partage du source entre les applications web et mobile se posent. Les développeurs de Palo-IT nous explique cette passerelle avec React Native. Article en anglais.

To create a native app with sharing code today there are 2 main approaches:

-      Hybrid app: write in javascript, html and css, and the entire code is embedded and run in a web view in mobile. Like phonegap.

-      Js engine + native ui: write in javascript. Ui components are translated into native UI components. Other codes are run in a js engine provided by the mobile system.

React Native is a framework represented by the second philosophy. It lets you create a mobile app using Javascript. As a web app developer with not so much mobile background, it could be a good way to start a mobile app. React Native is based on React, same design as React, so il should have a good integration with other react lib. It is based on version 0.56.RC now, not yet a major version. But looking at who’s actually using React Native: Facebook, Youtube, Skype etc, we could have confidence in it. React Native is a Facebook project.

To make real code sharing, we expect to have at the same time a web app without re-writing the ui part. That comes with the “react-native-web” framework, who brings the Components and APIs of React Native to web. As mentioned in React Native Web home pages, it is used in production by Twitter Lite. It is also supported by react-scripts.

So let we start an experience of a cross device application with this two framework. I want to do something further than a hello world example. But let me start with initializing the project.

Initialize a project

The two ways to initiate a React Native project are explicated here
https://facebook.github.io/react-native/docs/getting-started.html

Creat React Native App

A quick way to create and start a mobile app if you have a device to run it (otherwise you will need to install an emulator).

npm install -g create-react-native-app
create-react-native-app AwesomeProject

It will be hosted by “expo” configuration so you can quickly run your native app within Expo client app.

Scripts run will deploy mobile app within an expo container.

React-native-cli

In this case you will need a full mobile development environment which means XCode for ios and Android Studio and Android SDK for Android etc to start with.

npm install -g react-native-cli
react-native init MyNote

The script creates two folders additional to ‘android’ and ‘ios’ and initiate a default setting for native app without ‘expo’. This should be the best way for initiating a standard project.

To launch a simulator, take ios for example, you can run

react-native run-ios

Or you can also open .xcodeproj in XCode and run the project.

You can also do this job later in your react-native project with react-native upgrade

Either the way of initialization, we now have a runnable native app project. So far so good. Everything goes well.

Configure the native project as a web app

React Native translates its UI components to native platform components for ios and android, and react-native-web will do the job for a web platform. Check its github page https://github.com/necolas/react-native-web

We will need to add a few things to make web app available :

  • Dependencies on react-dom, react-native-web, babel-plugin-react-native-web
  • A public folder with a index.html template
  • A entrypoint js for web index.web.js
  • And make a alias ‘react-native’ to ‘react-native-web’

In the entrypoint index.web.js, instead of the classic react way to render you application in dom, we will do this in the React Native way, using AppRegistry. So my entry point is something like this

import App from './App';
import React from 'react';
import { AppRegistry } from 'react-native';

AppRegistry
.registerComponent('MyNote', () => App);

AppRegistry
.runApplication('MyNote', {
   initialProps: {},
   rootTag: document.getElementById('react-native-app')
});

The thing is, react-script can launch a react-native project and automatically do the magical alias to react-native-web, but the embedded webpack config required a specific folder structure that does not so much fit the structure created by react-native. So i create my  webpack.config.js and run a webpack dev server.

In the webpack config, we need a babel loader for everything needs to be compiled by Babel. And plug our “babel-plugin-react-native-web” here to take care of the aliases ‘react-native’ to ‘react-native-web’. Or you can also do this in you module export resolve.

And don‘t forget to set your entry index.web.js.

After all these, my project and my package.json look like this

And i can now run my native app with xcode and on the other side my web app with script npm run web. When the code changes, a simple Cmd+R in simulator or in browser will reload app.

A little bit settings for the web part, it’s a pity that the web app initialization is not included by react-native init step.

And now we are ready for our develop environment.

Developments

UI component and API

The development is very similar as the classic react. Just using React Native component instead of Dom component.

The basic components of React Native are quite simple. View, Text, Image, TextInput, TouchableHighlight etc. You can easily associate a dom interface using div, img, input, a with them. Most apps will end up using just these basic components.

Component style is defined by ‘style’ prop. If you a familiar with css, the style name and value match usually how it works on web.

The events and handlers are quite similar as dom as well. For example a TextInput component has onChange, onKeyPress, onFocus and onBlur props.

For a web developer, you should be able to make it out quite well for this part.

More advanced native component are also available in react-native. Most common components are well supported in react-native-web. The latest version of react-native-web adds implement for SectionList.

Still there are platform specific components. DatePicker is one of them. It is to be regretted that IOS and Android could not reach an agreement with DatePicker interface. React native provides a Platform API to make platform specific codes. For a DatePicker for example, we could have something like this :

const DatePicker = Platform.select({
   ios: <DatePickerIOS />,
   android: <DatePickerAndroid />,
   web: <input type='date' />
})

Many tierces libraries exist today to unify the two mobile platform codes (react-native-datepicker for example), but few of them includes web support.

Responsive

React-native component use FlexBox layout. FlexBox is a helpful tool to create responsive app. In web it will be translated to css flexbox properties, that means old version browser will not be supported, flexDirection, alignItems, justifyContent, alignSelf, flex properties are available in react-native, and work in the same way as in css.

Dimension is another helpful API. Dimension.get can give the current height and width. You can create a dynamic rendering and styling logic depending on it. The calculates should be done at every render to guarantee the dimensions up to date with any changing due to device rotation or browser resize. Dimension API provides a change event listener.

Platform API is also a choice to build rendering logic. In the case we usually would like to differentiate between a small mobile screen and a large browser window on laptop. Well actually Platform.OS and Platform.select has 3 possible values “ios”, “android” and “web”. I don’t think it can distinguish an iphone from a ipad, so your mobile screen layout may not be suitable for a tablet.

Navigation

Navigation is a hard part to make code sharing. Each platform has its own way to manage navigations and histories. Unfortunately it is also one of the essential part of app. React-native does not provide a “official” API pour navigation. It recommends some available navigation components. I’ve tried React Navigation which support both the mobile and web platform. Although, after trying several combination of react native and react navigation, i fixed in version 0.54.0 of react-native and 1.5.8 of react-navigation. Cause after react-navigation 2.0, web support is broken. And i had differents problems to work react-navigation 1.5.8 with other versions of react-native. Live this instability in js world. Well the fix for web is in V2 roadmap.

React Navigation provides basic features of navigation like navigate, history, routing. Advanced features that could be interesting in React Navigation :

  • Sub routing, multi-routing
  • Deep link in 3 platform
  • Customizable navigator
  • Provides customizable UI for navigation like header and tab.

Even though deep link is supported, i didn’t find an option to change url when path changed in web platform. Need to be implemented manually.

Other classic feature which does not need UI action works well in mobile device as in web browser, like async call, await, integration with redux etc, as the code runs in a javascript environment. If you use a js library that does not reference dom api, you should not have any surprise.

Conclusion

React native, with the help of React-native-web propose a quite simple way to create a cross device application.

  • It include the essential requirement of an application with a possibility to customize. It comes with a rich ecosystem around React.
  • It does not require a great mobile background to start and deploy a mobile app
  • It makes real code sharing between web and mobiles in 90% case.
  • UI development is very similar to html development
  • Ecosystem of react-native is very dynamic.
  • Compare with hybrid app, native component and api are used in react-native app (for mobile platforms).

There are still some regrettable points

  • To integrate web app with react-native, it will need some manual work.
  • Web is not always well supported by the tirces libraries.

Even though, react-native + react-native-web is still a good choice to make a cross device app with a real code sharing and gains significantly in productivity.

Zhe SUN, Developpeuse JEE & Web App

Ajouter un commentaire

Filtered HTML

Plain text

CAPTCHA
Cette question permet de vérifier que vous n'êtes pas un robot spammeur :-)
 L     III   CCC   QQQ    V     V 
L I C Q Q V V
L I C Q Q V V
L I C Q QQ V V
LLLL III CCC QQQQ V
Q