A framework for building WinJS apps with a React Native compatible API, based on the hard work already put in by the react-web project.
If you already have a React Native project and want to add WinJS support, you need to execute the following commands in your existing project directory:
- Install
npm install react-native-winjs-cli -g
- Execute
react-native-winjs init <ExistedProjectDir>
that installreact-native-winjs
anddevDependencies
to your project and make aweb
directory withwebpack.config.js
file under your project. - Edit the root js file eg
index.ios.js
, or createindex.web.js
: adding the following to the end would usually get you started, assuming the root component is registered as 'MyApp'
import {Platform} from 'react-native';
if(Platform.OS == 'winjs'){
var app = document.createElement('div');
document.body.appendChild(app);
AppRegistry.runApplication('MyApp', {
rootTag: app
})
}
- Execute
react-native-winjs start
that starts the web dev server - Execute
react-native-winjs bundle
that builds the output
npm install react-native-winjs --save
Inside your webpack configuration, alias the react-native
package to the react-native-winjs
package, then install and add haste-resolver-webpack-plugin plugin.
// webpack.config.js
var HasteResolverPlugin = require('haste-resolver-webpack-plugin');
module.exports = {
resolve: {
alias: {
'react-native': 'react-native-winjs'
}
},
plugins: [
new HasteResolverPlugin({
platform: 'winjs',
nodeModules: ['react-native-winjs']
})
]
}
When using components of react-native-winjs
, just require('ReactActivityIndicator')
, and Webpack will build a bundle with ActivityIndicator.web.js
for web platform.
HasteResolverPlugin
will do the following for you:
- Walk over all components and check out the
@providesModule
info. - When webpack build bundle, it makes your components recognised rather than throwing an error.
- It will help webpack build bundle with correct file depending on the tar* platform.
You can find something like @providesModule ReactActivityIndicator
on react-native-winjs
component's comment, it's for HasteResolverPlugin
.
- Native events without direct pageX/pageY on web platform
if (Platform.OS == 'winjs') {
var touch = event.nativeEvent.changedTouches[0];
pageX = touch.pageX;
pageY = touch.pageY;
} else {
startX = event.nativeEvent.pageX;
startY = event.nativeEvent.pageY;
}
- Should run application on web platform
AppRegistry.registerComponent('Game2048', () => Game2048);
if(Platform.OS == 'winjs'){
var app = document.createElement('div');
document.body.appendChild(app);
AppRegistry.runApplication('Game2048', {
rootTag: app
})
}
- Should care about fetch domain on web platform
var fetch = Platform.OS === 'winjs'? require('ReactJsonp'): require('ReactFetch').fetch;
- Component without setNativeProps method on web platform
var setNativeProps = require('ReactSetNativeProps')
setNativeProps(this.refs.foo, {
style: {
top: 0
}
})
- Without some APIs like
LayoutAnimation
on web platform
var LayoutAnimation = require('ReactLayoutAnimation')
if(Platform.OS !== 'winjs'){
LayoutAnimation.configureNext(...)
}
- Need fetch?
fetch = require('ReactFetch').fetch;
- ActivityIndicatorIOS
- DrawerLayoutAndroid
- Image
- ListView
- Modal
- Navigator
- PickerIOS
- ProgressViewIOS
- ScrollView
- SegmentedControlIOS
- SliderIOS
- Switch
- TabBarIOS
- Text
- TextInput
- Touchable
- TouchableHighlight
- TouchableOpacity
- TouchableWithoutFeedback
- View
- Alert
- Animated
- AppRegistry
- AsyncStorage
- Dimensions
- Easing
- InteractionManager
- PanResponder
- PixelRatio
- StyleSheet
- Platform (='winjs')
- Linting - npm run lint - Must run it before commit.
- Testing - npm test - Run unit testing by jest.
- Developing - npm start - This will run a server at localhost:3000 and use Hot Module Reloading.
- Demo deployment - npm run demo - Generate demo assets under pages directory.
React Native WinJS is BSD licensed.