Compare commits

..

13 Commits

Author SHA1 Message Date
Nicolas Gallagher
dd5f8cf641 0.0.99 2017-06-09 14:58:30 -07:00
Nicolas Gallagher
7f256c6423 Update documentation examples 2017-06-09 14:55:08 -07:00
Nicolas Gallagher
05069253a1 Add Calculator example app 2017-06-09 14:51:32 -07:00
Nicolas Gallagher
f10ac058b6 Add UIExplorer component for docs 2017-06-09 14:51:12 -07:00
Nicolas Gallagher
6aa2ac1f70 Remove ListView docs 2017-06-09 14:50:03 -07:00
Nicolas Gallagher
79e6dbaab5 Move 'NativeMethods' docs to direct manipulation guide 2017-06-09 14:49:15 -07:00
Nicolas Gallagher
fc86c876e0 Update formatter and linter 2017-06-09 12:59:39 -07:00
Nicolas Gallagher
1f25ef82ae Update jest 2017-06-09 11:56:14 -07:00
Nicolas Gallagher
5b60dcf0ff Update React packages and inline-style-prefixer 2017-06-09 11:53:43 -07:00
Nicolas Gallagher
1cf152e8a0 Update build tools 2017-06-09 11:52:38 -07:00
Nicolas Gallagher
d034a0c6ec [change] Linking.getInitialURL returns initial URL
Close #486
2017-06-09 10:44:32 -07:00
Fabrizio Moscon
33d1cdf193 Fix webpack documentation link 2017-06-09 10:28:30 -07:00
Maxime Thirouin
483a76cb5c Fix incorrect links in View documentation 2017-06-09 15:21:10 +02:00
49 changed files with 1883 additions and 1193 deletions

View File

@@ -3,6 +3,7 @@
.*/benchmarks/.*
.*/docs/.*
.*/node_modules/animated/*
.*/node_modules/babel-plugin-transform-react-remove-prop-types/*
[include]

View File

@@ -50,7 +50,6 @@ Exported modules:
* [`ActivityIndicator`](docs/components/ActivityIndicator.md)
* [`Button`](docs/components/Button.md)
* [`Image`](docs/components/Image.md)
* [`ListView`](docs/components/ListView.md)
* [`ProgressBar`](docs/components/ProgressBar.md)
* [`ScrollView`](docs/components/ScrollView.md)
* [`Switch`](docs/components/Switch.md)
@@ -68,7 +67,6 @@ Exported modules:
* [`Clipboard`](docs/apis/Clipboard.md)
* [`Dimensions`](docs/apis/Dimensions.md)
* [`I18nManager`](docs/apis/I18nManager.md)
* [`NativeMethods`](docs/apis/NativeMethods.md)
* [`NetInfo`](docs/apis/NetInfo.md)
* [`PanResponder`](http://facebook.github.io/react-native/releases/0.20/docs/panresponder.html#content) (mirrors React Native)
* [`PixelRatio`](docs/apis/PixelRatio.md)

View File

@@ -3,7 +3,7 @@ import React from 'react';
import View from '../View/aphrodite';
import { StyleSheet } from 'aphrodite';
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) => (
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) =>
<View
{...other}
style={[
@@ -12,8 +12,7 @@ const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other
layout === 'row' && styles.row,
outer && styles.outer
]}
/>
);
/>;
const styles = StyleSheet.create({
outer: {

View File

@@ -4,7 +4,7 @@ import React from 'react';
import View from '../View/css-modules';
import styles from './styles.css';
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) => (
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) =>
<View
{...other}
className={classnames(styles[`color${color}`], {
@@ -12,7 +12,6 @@ const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other
[styles.outer]: outer,
[styles.row]: layout === 'row'
})}
/>
);
/>;
module.exports = Box;

View File

@@ -2,7 +2,7 @@
import React from 'react';
import View from '../View/glamor';
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) => (
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) =>
<View
{...other}
style={[
@@ -11,8 +11,7 @@ const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other
layout === 'row' && styles.row,
outer && styles.outer
]}
/>
);
/>;
const styles = {
outer: {

View File

@@ -4,7 +4,7 @@ import injectSheet from 'react-jss';
import React from 'react';
import View from '../View/jss';
const Box = ({ classes, color, fixed = false, layout = 'column', outer = false, ...other }) => (
const Box = ({ classes, color, fixed = false, layout = 'column', outer = false, ...other }) =>
<View
{...other}
className={classnames({
@@ -13,8 +13,7 @@ const Box = ({ classes, color, fixed = false, layout = 'column', outer = false,
[classes.row]: layout === 'row',
[classes.outer]: outer
})}
/>
);
/>;
const styles = {
outer: {

View File

@@ -3,7 +3,7 @@ import React from 'react';
import StyleSheet from 'react-native/apis/StyleSheet';
import View from '../View/react-native-stylesheet';
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) => (
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) =>
<View
{...other}
style={[
@@ -12,8 +12,7 @@ const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other
layout === 'row' && styles.row,
outer && styles.outer
]}
/>
);
/>;
const styles = StyleSheet.create({
outer: {

View File

@@ -2,7 +2,7 @@
import React from 'react';
import { StyleSheet, View } from 'react-native';
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) => (
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) =>
<View
{...other}
style={[
@@ -11,8 +11,7 @@ const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other
layout === 'row' && styles.row,
outer && styles.outer
]}
/>
);
/>;
const styles = StyleSheet.create({
outer: {

View File

@@ -2,7 +2,7 @@
import React from 'react';
import { Styles, View } from 'reactxp';
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) => (
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) =>
<View
{...other}
style={[
@@ -11,8 +11,7 @@ const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other
layout === 'row' && styles.row,
outer && styles.outer
]}
/>
);
/>;
const styles = {
outer: Styles.createViewStyle({

View File

@@ -3,7 +3,7 @@ import { injectStylePrefixed } from 'styletron-utils';
import React from 'react';
import View, { styletron } from '../View/styletron';
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) => (
const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other }) =>
<View
{...other}
style={[
@@ -12,8 +12,7 @@ const Box = ({ color, fixed = false, layout = 'column', outer = false, ...other
layout === 'row' && styles.row,
outer && styles.outer
]}
/>
);
/>;
const styles = {
outer: injectStylePrefixed(styletron, {

View File

@@ -17,7 +17,7 @@ class DeepTree extends Component {
<Box color={id % 3} components={components} layout={depth % 2 === 0 ? 'column' : 'row'} outer>
{depth === 0 && <Box color={id % 3 + 3} components={components} fixed />}
{depth !== 0 &&
Array.from({ length: breadth }).map((el, i) => (
Array.from({ length: breadth }).map((el, i) =>
<DeepTree
breadth={breadth}
components={components}
@@ -26,7 +26,7 @@ class DeepTree extends Component {
key={i}
wrap={wrap}
/>
))}
)}
</Box>
);
for (let i = 0; i < wrap; i++) {

View File

@@ -24,7 +24,7 @@ export default class TweetActionsBar extends PureComponent {
/* eslint-disable react/jsx-handler-names */
return (
<View style={[styles.root, style]}>
{actions.map((action, i) => (
{actions.map((action, i) =>
<TweetAction
accessibilityLabel={actions.label}
count={action.count}
@@ -34,7 +34,7 @@ export default class TweetActionsBar extends PureComponent {
onPress={action.onPress}
style={styles.action}
/>
))}
)}
</View>
);
}

View File

@@ -17,9 +17,9 @@ class TweetText extends React.Component {
return (
<AppText {...other} lang={lang} numberOfLines={numberOfLines}>
{textParts.map((part, i) => (
{textParts.map((part, i) =>
<TweetTextPart displayMode={displayMode} key={i} part={part} />
))}
)}
</AppText>
);
}

View File

@@ -5,14 +5,13 @@ import theme from '../theme';
const createTextEntity = ({ part }) => <Text>{`${part.prefix}${part.text}`}</Text>;
const createTwemojiEntity = ({ part }) => (
const createTwemojiEntity = ({ part }) =>
<Image
accessibilityLabel={part.text}
draggable={false}
source={{ uri: part.emoji }}
style={styles.twemoji}
/>
);
/>;
// @mention, #hashtag, $cashtag
const createSymbolEntity = ({ displayMode, part }) => {

View File

@@ -25,8 +25,9 @@ const fontSize = {
module.exports = {
colors,
fontFamily: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif, ' +
'"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"', // emoji fonts
fontFamily:
'-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif, ' +
'"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"', // emoji fonts
fontSize,
lineHeight: 1.3125,
spaceX: 0.6,

View File

@@ -1,42 +0,0 @@
# NativeMethods
React Native for Web provides several methods to directly access the underlying
DOM node. This can be useful in cases when you want to focus a view or measure
its on-screen dimensions, for example.
The methods described are available on most of the default components provided
by React Native for Web. Note, however, that they are *not* available on the
composite components that you define in your own app. For more information, see
[Direct Manipulation](../guides/direct-manipulation.md).
## Methods
**blur**()
Removes focus from an input or view. This is the opposite of `focus()`.
**focus**()
Requests focus for the given input or view. The exact behavior triggered will
depend the type of view.
**measure**(callback: (x, y, width, height, pageX, pageY) => void)
For a given view, `measure` determines the offset relative to the parent view,
width, height, and the offset relative to the viewport. Returns the values via
an async callback.
Note that these measurements are not available until after the rendering has
been completed.
**measureLayout**(relativeToNativeNode: DOMNode, onSuccess: (x, y, width, height) => void)
Like `measure`, but measures the view relative to another view, specified as
`relativeToNativeNode`. This means that the returned `x`, `y` are relative to
the origin `x`, `y` of the ancestor view.
**setNativeProps**(nativeProps: Object)
This function sends props straight to the underlying DOM node. See the [direct
manipulation](../guides/direct-manipulation.md) guide for cases where
`setNativeProps` should be used.

View File

@@ -1,34 +0,0 @@
# ListView
TODO
## Props
[...ScrollView props](./ScrollView.md)
**children**: any
Content to display over the image.
**style**: style
+ ...[View#style](View.md)
## Examples
```js
import React, { Component, PropTypes } from 'react'
import { ListView } from 'react-native'
export default class ListViewExample extends Component {
static propTypes = {}
static defaultProps = {}
render() {
return (
<ListView />
)
}
}
```

View File

@@ -18,7 +18,7 @@ NOTE: `View` will transfer all other props to the rendered HTML element.
Overrides the text that's read by a screen reader when the user interacts
with the element. (This is implemented using `aria-label`.)
See the [Accessibility guide](../guides/accessibility) for more information.
See the [Accessibility guide](../guides/accessibility.md) for more information.
**accessibilityLiveRegion**: ?enum('assertive', 'none', 'polite')
@@ -29,7 +29,7 @@ priority. When regions are specified as `assertive`, assistive technologies
will interrupt and immediately notify the user. (This is implemented using
[`aria-live`](http://www.w3.org/TR/wai-aria/states_and_properties#aria-live).)
See the [Accessibility guide](../guides/accessibility) for more information.
See the [Accessibility guide](../guides/accessibility.md) for more information.
(web) **accessibilityRole**: ?enum(roles)
@@ -38,7 +38,7 @@ in a manner that is consistent with user expectations for similar views of that
type. For example, marking a touchable view with an `accessibilityRole` of
`button`. (This is implemented using [ARIA roles](http://www.w3.org/TR/wai-aria/roles#role_definitions)).
See the [Accessibility guide](../guides/accessibility) for more information.
See the [Accessibility guide](../guides/accessibility.md) for more information.
**accessible**: ?boolean
@@ -47,7 +47,7 @@ focusable) and groups its child content. By default, all the touchable elements
and elements with `accessibilityRole` of `button` and `link` are accessible.
(This is implemented using `tabindex`.)
See the [Accessibility guide](../guides/accessibility) for more information.
See the [Accessibility guide](../guides/accessibility.md) for more information.
**children**: ?element
@@ -69,7 +69,7 @@ A value of `no` will remove the element from the tab flow.
A value of `no-hide-descendants` will hide the element and its children from
assistive technologies. (This is implemented using `aria-hidden`.)
See the [Accessibility guide](../guides/accessibility) for more information.
See the [Accessibility guide](../guides/accessibility.md) for more information.
**onLayout**: ?function
@@ -279,7 +279,7 @@ Default:
};
```
(See [facebook/css-layout](https://github.com/facebook/css-layout)).
(See [facebook/yoga](https://github.com/facebook/yoga)).
**testID**: ?string

View File

@@ -1,27 +1,68 @@
# Direct manipulation
It is sometimes necessary to make changes directly to a component without using
state/props to trigger a re-render of the entire subtree in the browser, this
is done by directly modifying a DOM node. `setNativeProps` is the React Native
equivalent to setting properties directly on a DOM node. Use direct
manipulation when frequent re-rendering creates a performance bottleneck. Direct
manipulation will not be a tool that you reach for frequently.
React Native for Web provides several methods to directly access the underlying
DOM node. This can be useful when you need to make changes directly to a
component without using state/props to trigger a re-render of the entire
subtree, or when you want to focus a view or measure its on-screen dimensions.
## `setNativeProps` and `shouldComponentUpdate`
The methods described are available on most of the default components provided
by React Native for Web. Note, however, that they are *not* available on the
composite components that you define in your own app.
## Instance methods
**blur**()
Removes focus from an input or view. This is the opposite of `focus()`.
**focus**()
Requests focus for the given input or view. The exact behavior triggered will
depend the type of view.
**measure**(callback: (x, y, width, height, pageX, pageY) => void)
For a given view, `measure` determines the offset relative to the parent view,
width, height, and the offset relative to the viewport. Returns the values via
an async callback.
Note that these measurements are not available until after the rendering has
been completed.
**measureLayout**(relativeToNativeNode: DOMNode, onSuccess: (x, y, width, height) => void)
Like `measure`, but measures the view relative to another view, specified as
`relativeToNativeNode`. This means that the returned `x`, `y` are relative to
the origin `x`, `y` of the ancestor view.
**setNativeProps**(nativeProps: Object)
This function sends props straight to the underlying DOM node. See the [direct
manipulation](../guides/direct-manipulation.md) guide for cases where
`setNativeProps` should be used.
## About `setNativeProps`
`setNativeProps` is the React Native equivalent to setting properties directly
on a DOM node. Use direct manipulation when frequent re-rendering creates a
performance bottleneck. Direct manipulation will not be a tool that you reach
for frequently.
### `setNativeProps` and `shouldComponentUpdate`
`setNativeProps` is imperative and stores state in the native layer (DOM,
UIView, etc.) and not within your React components, which makes your code more
difficult to reason about. Before you use it, try to solve your problem with
`setState` and `shouldComponentUpdate`.
## Avoiding conflicts with the render function
### Avoiding conflicts with the render function
If you update a property that is also managed by the render function, you might
end up with some unpredictable and confusing bugs because anytime the component
re-renders and that property changes, whatever value was previously set from
`setNativeProps` will be completely ignored and overridden.
## Why use `setNativeProps` on Web?
### Why use `setNativeProps` on Web?
Using `setNativeProps` in web-specific code is required when making changes to
`className` or `style`, as these properties are controlled by React Native for
@@ -35,7 +76,7 @@ setOpacityTo(value) {
}
```
## Composite components and `setNativeProps`
### Composite components and `setNativeProps`
Composite components are not backed by a DOM node, so you cannot call
`setNativeProps` on them. Consider this example:
@@ -63,7 +104,7 @@ prop on it and have that work - you would need to pass the style prop down to a
child, unless you are wrapping a native component. Similarly, we are going to
forward `setNativeProps` to a native-backed child component.
## Forward `setNativeProps` to a child
### Forward `setNativeProps` to a child
All we need to do is provide a `setNativeProps` method on our component that
calls `setNativeProps` on the appropriate child with the given arguments.
@@ -86,7 +127,7 @@ class MyButton extends React.Component {
You can now use `MyButton` inside of `TouchableOpacity`!
## `setNativeProps` to clear `TextInput` value
### `setNativeProps` to clear `TextInput` value
Another very common use case of `setNativeProps` is to clear the value of a
`TextInput`. For example, the following code demonstrates clearing the input

View File

@@ -14,7 +14,7 @@ polyfill.
## Webpack and Babel
[Webpack](webpack.js.org) is a popular build tool for web apps. Below is an
[Webpack](https://webpack.js.org) is a popular build tool for web apps. Below is an
example of how to configure a build that uses [Babel](https://babeljs.io/) to
compile your JavaScript for the web.

View File

@@ -3,15 +3,13 @@ import { StyleSheet, View } from 'react-native';
const styles = StyleSheet.create({
root: {
alignItems: 'center',
height: '100vh',
justifyContent: 'center'
minHeight: '100vh'
}
});
export default function(renderStory) {
return (
<View style={[StyleSheet.absoluteFill, styles.root]}>
<View style={styles.root}>
{renderStory()}
</View>
);

View File

@@ -0,0 +1,84 @@
/* eslint-disable react/prop-types */
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
/**
* Examples explorer
*/
const AppText = ({ style, ...rest }) => <Text {...rest} style={[styles.baseText, style]} />;
const Link = ({ uri }) =>
<AppText accessibilityRole="link" href={uri} style={styles.link} target="_blank">
API documentation
</AppText>;
const Title = ({ children }) => <AppText style={styles.title}>{children}</AppText>;
const Description = ({ children }) => <AppText style={styles.description}>{children}</AppText>;
const Example = ({ example: { description, render, title } }) =>
<View style={styles.example}>
<AppText style={styles.exampleTitle}>{title}</AppText>
{description && <AppText style={styles.exampleDescription}>{description}</AppText>}
{render &&
<View style={styles.exampleRenderBox}>
<AppText style={styles.exampleText}>Example</AppText>
<View>{render()}</View>
</View>}
</View>;
const UIExplorer = ({ description, examples, title, url }) =>
<View style={styles.root}>
<Title>{title}</Title>
{description && <Description>{description}</Description>}
{url && <Link uri={url} />}
{examples.map((example, i) => <Example example={example} key={i} />)}
</View>;
const styles = StyleSheet.create({
root: {
padding: '1rem',
flex: 1
},
baseText: {
fontFamily:
'-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif, ' +
'"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"', // emoji fonts
lineHeight: '1.3125em'
},
title: {
fontSize: '2rem'
},
description: {
color: '#657786',
fontSize: '1.3125rem',
marginTop: 'calc(0.5 * 1.3125rem)'
},
link: {
color: '#1B95E0',
marginTop: 'calc(0.5 * 1.3125rem)'
},
example: {
marginTop: 'calc(2 * 1.3125rem)'
},
exampleTitle: {
fontSize: '1.3125rem'
},
exampleDescription: {
fontSize: '1rem',
marginTop: 'calc(0.5 * 1.3125rem)'
},
exampleRenderBox: {
borderColor: '#E6ECF0',
borderWidth: 1,
padding: '1.3125rem',
marginTop: '1.3125rem'
},
exampleText: {
color: '#AAB8C2',
fontSize: '0.8rem',
fontWeight: 'bold',
marginBottom: 'calc(0.5 * 1.3125rem)',
textTransform: 'uppercase'
}
});
export default UIExplorer;

View File

@@ -1,34 +1,61 @@
import { Clipboard, Text, TextInput, View } from 'react-native';
import React, { Component } from 'react';
import { storiesOf } from '@kadira/storybook';
import UIExplorer from '../../UIExplorer';
import { Button, Clipboard, StyleSheet, TextInput, View } from 'react-native';
import React, { Component } from 'react';
const styles = StyleSheet.create({
buttonBox: {
maxWidth: 300
},
textInput: {
borderColor: '#AAB8C2',
borderWidth: 1,
height: 200,
marginTop: 20,
padding: 10
}
});
class ClipboardExample extends Component {
render() {
return (
<View style={{ minWidth: 300 }}>
<Text onPress={this._handleSet}>Copy to clipboard</Text>
<View>
<View style={styles.buttonBox}>
<Button onPress={this._handleSet} title="Copy to clipboard" />
</View>
<TextInput
multiline={true}
placeholder={'Try pasting here afterwards'}
style={{ borderWidth: 1, height: 200, marginVertical: 20 }}
style={styles.textInput}
/>
<Text onPress={this._handleGet}>
(Clipboard.getString returns a Promise that always resolves to an empty string on web)
</Text>
</View>
);
}
_handleGet() {
Clipboard.getString().then(value => {
console.log(`Clipboard value: ${value}`);
});
}
_handleSet() {
const success = Clipboard.setString('This text was copied to the clipboard by React Native');
console.log(`Clipboard.setString success? ${success}`);
}
}
storiesOf('api: Clipboard', module).add('setString', () => <ClipboardExample />);
const examples = [
{
title: 'Clipboard.setString',
description:
'(Note that `Clipboard.getString` returns a Promise that always resolves to an empty string on web.)',
render: () => <ClipboardExample />
},
{
title: 'Clipboard.getString',
description:
'Not properly supported on Web. Returns a Promise that always resolves to an empty string on web.'
}
];
storiesOf('APIs', module).add('Clipboard', () =>
<UIExplorer
description="Clipboard gives you an interface for setting to the clipboard."
examples={examples}
title="Clipboard"
/>
);

View File

@@ -1,4 +1,5 @@
import { storiesOf } from '@kadira/storybook';
import UIExplorer from '../../UIExplorer';
import { I18nManager, StyleSheet, TouchableHighlight, Text, View } from 'react-native';
import React, { Component } from 'react';
@@ -14,7 +15,8 @@ class I18nManagerExample extends Component {
LTR/RTL layout example!
</Text>
<Text style={styles.text}>
The writing direction of text is automatically determined by the browser, independent of the global writing direction of the app.
The writing direction of text is automatically determined by the browser, independent of
the global writing direction of the app.
</Text>
<Text style={[styles.text, styles.rtlText]}>
أحب اللغة العربية
@@ -84,4 +86,13 @@ const styles = StyleSheet.create({
}
});
storiesOf('api: I18nManager', module).add('RTL layout', () => <I18nManagerExample />);
const examples = [
{
title: 'RTL toggle',
render: () => <I18nManagerExample />
}
];
storiesOf('APIs', module).add('I18nManager', () =>
<UIExplorer examples={examples} title="I18nManager" />
);

View File

@@ -1,6 +1,7 @@
import { storiesOf } from '@kadira/storybook';
import UIExplorer from '../../UIExplorer';
import { Linking, StyleSheet, Text, View } from 'react-native';
import React, { Component } from 'react';
import { storiesOf } from '@kadira/storybook';
const url = 'https://mathiasbynens.github.io/rel-noopener/malicious.html';
@@ -36,4 +37,11 @@ const styles = StyleSheet.create({
}
});
storiesOf('api: Linking', module).add('Safe linking', () => <LinkingExample />);
const examples = [
{
title: 'Safe external links',
render: () => <LinkingExample />
}
];
storiesOf('APIs', module).add('Linking', () => <UIExplorer examples={examples} title="Linking" />);

View File

@@ -1,8 +1,9 @@
/* eslint-disable react/jsx-no-bind */
/* eslint-disable react/jsx-no-bind, react/prefer-es6-class */
import createReactClass from 'create-react-class';
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import UIExplorer from '../../UIExplorer';
import { PanResponder, StyleSheet, View } from 'react-native';
const CIRCLE_SIZE = 80;
@@ -97,12 +98,23 @@ const styles = StyleSheet.create({
height: CIRCLE_SIZE,
borderRadius: CIRCLE_SIZE / 2,
position: 'absolute',
left: 0,
top: 0
},
container: {
flex: 1,
minHeight: 400,
paddingTop: 64
}
});
storiesOf('api: PanResponder', module).add('example', () => <PanResponderExample />);
const examples = [
{
title: 'Draggable circle',
render: () => <PanResponderExample />
}
];
storiesOf('APIs', module).add('PanResponder', () =>
<UIExplorer examples={examples} title="PanResponder" />
);

View File

@@ -1,3 +1,5 @@
/* eslint-disable react/prefer-es6-class, react/prop-types */
/**
* Copyright (c) 2013-present, Facebook, Inc.
* All rights reserved.
@@ -24,8 +26,9 @@
import createReactClass from 'create-react-class';
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import { ActivityIndicator, StyleSheet, View } from 'react-native';
import TimerMixin from 'react-timer-mixin';
import UIExplorer from '../../UIExplorer';
import { ActivityIndicator, StyleSheet, View } from 'react-native';
const ToggleAnimatingActivityIndicator = createReactClass({
mixins: [TimerMixin],
@@ -62,62 +65,59 @@ const ToggleAnimatingActivityIndicator = createReactClass({
const examples = [
{
title: 'Default',
description: 'Renders small and blue',
render() {
return <ActivityIndicator style={[styles.centering]} />;
return (
<View style={styles.horizontal}>
<ActivityIndicator />
</View>
);
}
},
{
title: 'Custom colors',
description: 'Any color value is supported',
render() {
return (
<View style={styles.horizontal}>
<ActivityIndicator color="#0000ff" />
<ActivityIndicator color="#aa00aa" />
<ActivityIndicator color="#aa3300" />
<ActivityIndicator color="#00aa00" />
<ActivityIndicator color="#1DA1F2" style={styles.rightPadding} />
<ActivityIndicator color="#17BF63" style={styles.rightPadding} />
<ActivityIndicator color="#F45D22" style={styles.rightPadding} />
<ActivityIndicator color="#794BC4" style={styles.rightPadding} />
<ActivityIndicator color="#E0245E" style={styles.rightPadding} />
<ActivityIndicator color="#FFAD1F" style={styles.rightPadding} />
</View>
);
}
},
{
title: 'Large',
render() {
return (
<ActivityIndicator color="white" size="large" style={[styles.centering, styles.gray]} />
);
}
},
{
title: 'Large, custom colors',
title: 'Custom sizes',
description:
'There are 2 predefined sizes: "small" and "large". The size can be further customized as a number (pixels) or using scale transforms',
render() {
return (
<View style={styles.horizontal}>
<ActivityIndicator color="#0000ff" size="large" />
<ActivityIndicator color="#aa00aa" size="large" />
<ActivityIndicator color="#aa3300" size="large" />
<ActivityIndicator color="#00aa00" size="large" />
<ActivityIndicator size={20} style={styles.rightPadding} />
<ActivityIndicator size="small" style={styles.rightPadding} />
<ActivityIndicator size={36} style={styles.rightPadding} />
<ActivityIndicator size="large" style={styles.rightPadding} />
<ActivityIndicator size={60} style={styles.rightPadding} />
<ActivityIndicator
size="large"
style={{ marginLeft: 20, transform: [{ scale: 1.75 }] }}
/>
</View>
);
}
},
{
title: 'Start/stop',
title: 'Animation controls (start, pause, hide)',
description: 'The animation can be paused, and the component hidden',
render() {
return (
<View style={[styles.horizontal, styles.centering]}>
<View style={[styles.horizontal]}>
<ToggleAnimatingActivityIndicator hidesWhenStopped={false} style={styles.rightPadding} />
<ToggleAnimatingActivityIndicator />
<ToggleAnimatingActivityIndicator hidesWhenStopped={false} />
</View>
);
}
},
{
title: 'Custom size',
render() {
return (
<View style={[styles.horizontal, styles.centering]}>
<ActivityIndicator size={40} />
<ActivityIndicator size="large" style={{ marginLeft: 20, transform: [{ scale: 1.5 }] }} />
</View>
);
}
@@ -125,21 +125,23 @@ const examples = [
];
const styles = StyleSheet.create({
centering: {
alignItems: 'center',
justifyContent: 'center',
padding: 8
},
gray: {
backgroundColor: '#cccccc'
},
horizontal: {
flexDirection: 'row',
justifyContent: 'space-around',
padding: 8
alignItems: 'center',
flexDirection: 'row'
},
rightPadding: {
paddingRight: 10
}
});
examples.forEach(example => {
storiesOf('component: ActivityIndicator', module).add(example.title, () => example.render());
});
storiesOf('Components', module).add('ActivityIndicator', () =>
<UIExplorer
description="Displays a customizable activity indicator"
examples={examples}
title="ActivityIndicator"
url="https://github.com/necolas/react-native-web/blob/master/docs/components/ActivityIndicator.md"
/>
);

View File

@@ -1,52 +1,66 @@
import React from 'react';
import UIExplorer from '../../UIExplorer';
import { action, storiesOf } from '@kadira/storybook';
import { Button, View } from 'react-native';
import { Button, StyleSheet, View } from 'react-native';
const onButtonPress = action('Button has been pressed!');
const examples = [
{
title: 'Simple Button',
description: 'The title and onPress handler are required. It is ' +
'recommended to set accessibilityLabel to help make your app usable by ' +
'everyone.',
render: function() {
title: 'Default',
description:
'The title and onPress handler are required. It is ' +
'recommended to set "accessibilityLabel" to help make your app usable by ' +
'everyone.',
render() {
return (
<Button
accessibilityLabel="See an informative alert"
onPress={onButtonPress}
title="Press Me"
title="Press me"
/>
);
}
},
{
title: 'Adjusted color',
description: 'Adjusts the color in a way that looks standard on each ' +
'platform. On iOS, the color prop controls the color of the text. On ' +
'Android, the color adjusts the background color of the button.',
render: function() {
title: 'Custom colors',
description:
'Adjusts the color in a way that looks standard on each ' +
'platform. On iOS, the color prop controls the color of the text. On ' +
'Android, the color adjusts the background color of the button.',
render() {
return (
<Button
accessibilityLabel="Learn more about purple"
color="#841584"
onPress={onButtonPress}
title="Press Purple"
/>
<View>
<Button color="#17BF63" onPress={onButtonPress} title="Press me" />
<View style={styles.verticalDivider} />
<Button color="#F45D22" onPress={onButtonPress} title="Press me" />
<View style={styles.verticalDivider} />
<Button color="#794BC4" onPress={onButtonPress} title="Press me" />
<View style={styles.verticalDivider} />
<Button color="#E0245E" onPress={onButtonPress} title="Press me" />
</View>
);
}
},
{
title: 'Disabled',
description: 'All interactions for the component are disabled.',
render() {
return <Button disabled onPress={onButtonPress} title="Disabled button" />;
}
},
{
title: 'Fit to text layout',
description: 'This layout strategy lets the title define the width of the button',
render: function() {
render() {
return (
<View style={{ flexDirection: 'row', justifyContent: 'space-between' }}>
<View style={styles.horizontal}>
<Button
accessibilityLabel="This sounds great!"
onPress={onButtonPress}
title="This looks great!"
/>
<View style={styles.horizontalDivider} />
<Button
accessibilityLabel="Ok, Great!"
color="#841584"
@@ -56,23 +70,26 @@ const examples = [
</View>
);
}
},
{
title: 'Disabled Button',
description: 'All interactions for the component are disabled.',
render: function() {
return (
<Button
accessibilityLabel="See an informative alert"
disabled
onPress={onButtonPress}
title="I Am Disabled"
/>
);
}
}
];
examples.forEach(example => {
storiesOf('component: Button', module).add(example.title, () => example.render());
const styles = StyleSheet.create({
horizontalDivider: {
width: '0.6rem'
},
horizontal: {
flexDirection: 'row'
},
verticalDivider: {
height: '1.3125rem'
}
});
storiesOf('Components', module).add('Button', () =>
<UIExplorer
description="A basic button component. Supports a minimal level of customization. You can build your own custom button using &quot;TouchableOpacity&quot; or &quot;TouchableNativeFeedback&quot;"
examples={examples}
title="Button"
url="https://github.com/necolas/react-native-web/blob/master/docs/components/Button.md"
/>
);

View File

@@ -1,4 +1,4 @@
/* eslint-disable react/jsx-no-bind */
/* eslint-disable react/jsx-no-bind, react/prefer-es6-class, react/prop-types */
/**
* Copyright (c) 2013-present, Facebook, Inc.
@@ -23,32 +23,32 @@
* @flow
*/
import createReactClass from 'create-react-class';
import React from 'react';
import UIExplorer from '../../UIExplorer';
import { storiesOf } from '@kadira/storybook';
import { ActivityIndicator, Image, StyleSheet, Text, View } from 'react-native';
const base64Icon =
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAABLCAQAAACSR7JhAAADtUlEQVR4Ac3YA2Bj6QLH0XPT1Fzbtm29tW3btm3bfLZtv7e2ObZnms7d8Uw098tuetPzrxv8wiISrtVudrG2JXQZ4VOv+qUfmqCGGl1mqLhoA52oZlb0mrjsnhKpgeUNEs91Z0pd1kvihA3ULGVHiQO2narKSHKkEMulm9VgUyE60s1aWoMQUbpZOWE+kaqs4eLEjdIlZTcFZB0ndc1+lhB1lZrIuk5P2aib1NBpZaL+JaOGIt0ls47SKzLC7CqrlGF6RZ09HGoNy1lYl2aRSWL5GuzqWU1KafRdoRp0iOQEiDzgZPnG6DbldcomadViflnl/cL93tOoVbsOLVM2jylvdWjXolWX1hmfZbGR/wjypDjFLSZIRov09BgYmtUqPQPlQrPapecLgTIy0jMgPKtTeob2zWtrGH3xvjUkPCtNg/tm1rjwrMa+mdUkPd3hWbH0jArPGiU9ufCsNNWFZ40wpwn+62/66R2RUtoso1OB34tnLOcy7YB1fUdc9e0q3yru8PGM773vXsuZ5YIZX+5xmHwHGVvlrGPN6ZSiP1smOsMMde40wKv2VmwPPVXNut4sVpUreZiLBHi0qln/VQeI/LTMYXpsJtFiclUN+5HVZazim+Ky+7sAvxWnvjXrJFneVtLWLyPJu9K3cXLWeOlbMTlrIelbMDlrLenrjEQOtIF+fuI9xRp9ZBFp6+b6WT8RrxEpdK64BuvHgDk+vUy+b5hYk6zfyfs051gRoNO1usU12WWRWL73/MMEy9pMi9qIrR4ZpV16Rrvduxazmy1FSvuFXRkqTnE7m2kdb5U8xGjLw/spRr1uTov4uOgQE+0N/DvFrG/Jt7i/FzwxbA9kDanhf2w+t4V97G8lrT7wc08aA2QNUkuTfW/KimT01wdlfK4yEw030VfT0RtZbzjeMprNq8m8tnSTASrTLti64oBNdpmMQm0eEwvfPwRbUBywG5TzjPCsdwk3IeAXjQblLCoXnDVeoAz6SfJNk5TTzytCNZk/POtTSV40NwOFWzw86wNJRpubpXsn60NJFlHeqlYRbslqZm2jnEZ3qcSKgm0kTli3zZVS7y/iivZTweYXJ26Y+RTbV1zh3hYkgyFGSTKPfRVbRqWWVReaxYeSLarYv1Qqsmh1s95S7G+eEWK0f3jYKTbV6bOwepjfhtafsvUsqrQvrGC8YhmnO9cSCk3yuY984F1vesdHYhWJ5FvASlacshUsajFt2mUM9pqzvKGcyNJW0arTKN1GGGzQlH0tXwLDgQTurS8eIQAAAABJRU5ErkJggg==';
//var ImageCapInsetsExample = require('./ImageCapInsetsExample');
const IMAGE_PREFETCH_URL = 'http://origami.design/public/images/bird-logo.png?r=1&t=' + Date.now();
const prefetchTask = Image.prefetch(IMAGE_PREFETCH_URL);
const NetworkImageCallbackExample = createReactClass({
getInitialState: function() {
return {
class NetworkImageCallbackExample extends React.Component {
constructor(props, context) {
super(props, context);
this.state = {
events: [],
startLoadPrefetched: false,
mountTime: new Date()
};
},
}
componentWillMount() {
this.setState({ mountTime: new Date() });
},
}
render: function() {
render() {
const { mountTime } = this.state;
return (
@@ -90,24 +90,21 @@ const NetworkImageCallbackExample = createReactClass({
</Text>
</View>
);
},
_loadEventFired(event) {
this.setState(state => {
return (state.events = [...state.events, event]);
});
}
});
const NetworkImageExample = createReactClass({
getInitialState: function() {
return {
error: false,
loading: false,
progress: 0
};
},
render: function() {
_loadEventFired = event => {
this.setState(state => (state.events = [...state.events, event]));
};
}
class NetworkImageExample extends React.Component {
state = {
error: false,
loading: false,
progress: 0
};
render() {
const loader = this.state.loading
? <View style={styles.progress}>
<Text>{this.state.progress}%</Text>
@@ -130,21 +127,21 @@ const NetworkImageExample = createReactClass({
{loader}
</Image>;
}
});
}
const ImageSizeExample = createReactClass({
getInitialState: function() {
return {
width: 0,
height: 0
};
},
componentDidMount: function() {
class ImageSizeExample extends React.Component {
state = {
width: 0,
height: 0
};
componentDidMount() {
Image.getSize(this.props.source.uri, (width, height) => {
this.setState({ width, height });
});
},
render: function() {
}
render() {
return (
<View>
<Text>
@@ -163,7 +160,7 @@ const ImageSizeExample = createReactClass({
</View>
);
}
});
}
/*
var MultipleSourcesExample = createReactClass({
@@ -226,9 +223,10 @@ var MultipleSourcesExample = createReactClass({
const examples = [
{
title: 'Plain Network Image',
description: 'If the `source` prop `uri` property is prefixed with ' +
'"http", then it will be downloaded from the network.',
title: 'Plain network image',
description:
'If the `source` prop `uri` property is prefixed with ' +
'"http", then it will be downloaded from the network.',
render: function() {
return (
<Image
@@ -243,9 +241,10 @@ const examples = [
}
},
{
title: 'Plain Static Image',
description: 'Static assets should be placed in the source code tree, and ' +
'required in the same way as JavaScript modules.',
title: 'Plain static image',
description:
'Static assets should be placed in the source code tree, and ' +
'required in the same way as JavaScript modules.',
render: function() {
return (
<View style={styles.horizontal}>
@@ -258,8 +257,8 @@ const examples = [
}
},
{
title: 'Image Loading Events',
render: function() {
title: 'Image loading events',
render() {
return (
<NetworkImageCallbackExample
prefetchedSource={{ uri: IMAGE_PREFETCH_URL }}
@@ -269,31 +268,19 @@ const examples = [
}
},
{
title: 'Error Handler',
render: function() {
title: 'Error handler',
render() {
return (
<NetworkImageExample
source={{ uri: 'http://TYPO_ERROR_facebook.github.io/react/img/logo_og.png' }}
/>
);
},
platform: 'ios'
},
{
title: 'Image Download Progress',
render: function() {
return (
<NetworkImageExample
source={{ uri: 'http://origami.design/public/images/bird-logo.png?r=1' }}
/>
);
},
platform: 'ios'
}
},
{
title: 'defaultSource',
description: 'Show a placeholder image when a network image is loading',
render: function() {
render() {
return (
<Image
defaultSource={require('./bunny.png')}
@@ -301,38 +288,51 @@ const examples = [
style={styles.base}
/>
);
},
platform: 'ios'
}
},
{
title: 'Border Color',
render: function() {
title: 'Border color',
render() {
return (
<View style={styles.horizontal}>
<Image
source={smallImage}
style={[styles.base, styles.background, { borderWidth: 3, borderColor: '#f099f0' }]}
style={[
styles.base,
styles.background,
{
borderColor: '#f099f0',
borderWidth: 3
}
]}
/>
</View>
);
}
},
{
title: 'Border Width',
render: function() {
title: 'Border width',
render() {
return (
<View style={styles.horizontal}>
<Image
source={smallImage}
style={[styles.base, styles.background, { borderWidth: 5, borderColor: '#f099f0' }]}
style={[
styles.base,
styles.background,
{
borderColor: '#f099f0',
borderWidth: 5
}
]}
/>
</View>
);
}
},
{
title: 'Border Radius',
render: function() {
title: 'Border radius',
render() {
return (
<View style={styles.horizontal}>
<Image source={fullImage} style={[styles.base, { borderRadius: 5 }]} />
@@ -345,8 +345,8 @@ const examples = [
}
},
{
title: 'Background Color',
render: function() {
title: 'Background color',
render() {
return (
<View style={styles.horizontal}>
<Image source={smallImage} style={styles.base} />
@@ -368,7 +368,7 @@ const examples = [
},
{
title: 'Opacity',
render: function() {
render() {
return (
<View style={styles.horizontal}>
<Image source={fullImage} style={[styles.base, { opacity: 1 }]} />
@@ -383,7 +383,7 @@ const examples = [
},
{
title: 'Nesting',
render: function() {
render() {
return (
<Image source={fullImage} style={{ width: 60, height: 60, backgroundColor: 'transparent' }}>
<Text style={styles.nestedText}>
@@ -393,63 +393,10 @@ const examples = [
);
}
},
/*
{
title: 'Tint Color',
description: 'The `tintColor` style prop changes all the non-alpha ' +
'pixels to the tint color.',
render: function() {
return (
<View>
<View style={styles.horizontal}>
<Image
source={require('./uie_thumb_normal@2x.png')}
style={[styles.icon, {borderRadius: 5, tintColor: '#5ac8fa' }]}
/>
<Image
source={require('./uie_thumb_normal@2x.png')}
style={[styles.icon, styles.leftMargin, {borderRadius: 5, tintColor: '#4cd964' }]}
/>
<Image
source={require('./uie_thumb_normal@2x.png')}
style={[styles.icon, styles.leftMargin, {borderRadius: 5, tintColor: '#ff2d55' }]}
/>
<Image
source={require('./uie_thumb_normal@2x.png')}
style={[styles.icon, styles.leftMargin, {borderRadius: 5, tintColor: '#8e8e93' }]}
/>
</View>
<Text style={styles.sectionText}>
It also works with downloaded images:
</Text>
<View style={styles.horizontal}>
<Image
source={smallImage}
style={[styles.base, {borderRadius: 5, tintColor: '#5ac8fa' }]}
/>
<Image
source={smallImage}
style={[styles.base, styles.leftMargin, {borderRadius: 5, tintColor: '#4cd964' }]}
/>
<Image
source={smallImage}
style={[styles.base, styles.leftMargin, {borderRadius: 5, tintColor: '#ff2d55' }]}
/>
<Image
source={smallImage}
style={[styles.base, styles.leftMargin, {borderRadius: 5, tintColor: '#8e8e93' }]}
/>
</View>
</View>
);
},
},
*/
{
title: 'Resize Mode',
description: 'The `resizeMode` style prop controls how the image is ' +
'rendered within the frame.',
render: function() {
title: 'Resize mode',
description: 'The `resizeMode` style prop controls how the image is rendered within the frame.',
render() {
return (
<View>
{[smallImage, fullImage].map((image, index) => {
@@ -510,42 +457,29 @@ const examples = [
},
{
title: 'Animated GIF',
render: function() {
render() {
return (
<Image
source={{
uri: 'http://38.media.tumblr.com/9e9bd08c6e2d10561dd1fb4197df4c4e/tumblr_mfqekpMktw1rn90umo1_500.gif'
uri:
'http://38.media.tumblr.com/9e9bd08c6e2d10561dd1fb4197df4c4e/tumblr_mfqekpMktw1rn90umo1_500.gif'
}}
style={styles.gif}
/>
);
},
platform: 'ios'
}
},
{
title: 'Base64 image',
render: function() {
render() {
return <Image source={{ uri: base64Icon, scale: 3 }} style={styles.base64} />;
},
platform: 'ios'
}
},
/*
{
title: 'Cap Insets',
title: 'Image dimensions',
description:
'When the image is resized, the corners of the size specified ' +
'by capInsets will stay a fixed size, but the center content and ' +
'borders of the image will be stretched. This is useful for creating ' +
'resizable rounded buttons, shadows, and other resizable assets.',
render: function() {
return <ImageCapInsetsExample />;
},
platform: 'ios',
},
*/
{
title: 'Image Size',
render: function() {
'`Image.getSize` provides the dimensions of an image as soon as they are available (i.e., before loading is complete)',
render() {
return (
<ImageSizeExample
source={{
@@ -555,18 +489,6 @@ const examples = [
);
}
}
/*
{
title: 'MultipleSourcesExample',
description:
'The `source` prop allows passing in an array of uris, so that native to choose which image ' +
'to diplay based on the size of the of the target image',
render: function() {
return <MultipleSourcesExample />;
},
platform: 'android',
},
*/
];
const fullImage = { uri: 'http://facebook.github.io/react/img/logo_og.png' };
@@ -574,12 +496,12 @@ const smallImage = { uri: 'http://facebook.github.io/react/img/logo_small_2x.png
const styles = StyleSheet.create({
base: {
width: 38,
height: 38
height: 38,
width: 38
},
progress: {
flex: 1,
alignItems: 'center',
flex: 1,
flexDirection: 'row',
width: 100
},
@@ -593,24 +515,24 @@ const styles = StyleSheet.create({
marginVertical: 6
},
nestedText: {
marginLeft: 12,
marginTop: 20,
backgroundColor: 'transparent',
color: 'white'
color: 'white',
marginLeft: 12,
marginTop: 20
},
resizeMode: {
width: 90,
height: 60,
borderColor: 'black',
borderWidth: 0.5,
borderColor: 'black'
height: 60,
width: 90
},
resizeModeText: {
fontSize: 11,
marginBottom: 3
},
icon: {
width: 15,
height: 15
height: 15,
width: 15
},
horizontal: {
flexDirection: 'row'
@@ -625,13 +547,16 @@ const styles = StyleSheet.create({
resizeMode: 'contain'
},
touchableText: {
fontWeight: '500',
color: 'blue'
color: 'blue',
fontWeight: '500'
}
});
examples.forEach(example => {
storiesOf('component: Image', module)
.addDecorator(renderStory => <View style={{ width: '100%' }}>{renderStory()}</View>)
.add(example.title, () => example.render());
});
storiesOf('Components', module).add('Image', () =>
<UIExplorer
description="An accessibile image component with support for image resizing, default image, and child content."
examples={examples}
title="Image"
url="https://github.com/necolas/react-native-web/blob/master/docs/components/Image.md"
/>
);

View File

@@ -1,80 +0,0 @@
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import { ListView, StyleSheet, Text, View } from 'react-native';
const generateData = length => Array.from({ length }).map((item, i) => i);
const dataSource = new ListView.DataSource({ rowHasChanged: (r1, r2) => r1 !== r2 });
storiesOf('component: ListView', module)
.add('vertical', () => (
<View style={styles.scrollViewContainer}>
<ListView
contentContainerStyle={styles.scrollViewContentContainerStyle}
dataSource={dataSource.cloneWithRows(generateData(100))}
initialListSize={100}
// eslint-disable-next-line react/jsx-no-bind
onScroll={e => {
console.log('ScrollView.onScroll', e);
}}
// eslint-disable-next-line react/jsx-no-bind
renderRow={row => <View><Text>{row}</Text></View>}
scrollEventThrottle={1000} // 1 event per second
style={styles.scrollViewStyle}
/>
</View>
))
.add('incremental rendering - large pageSize', () => (
<View style={styles.scrollViewContainer}>
<ListView
contentContainerStyle={styles.scrollViewContentContainerStyle}
dataSource={dataSource.cloneWithRows(generateData(5000))}
initialListSize={100}
// eslint-disable-next-line react/jsx-no-bind
onScroll={e => {
console.log('ScrollView.onScroll', e);
}}
pageSize={50}
// eslint-disable-next-line react/jsx-no-bind
renderRow={row => <View><Text>{row}</Text></View>}
scrollEventThrottle={1000} // 1 event per second
style={styles.scrollViewStyle}
/>
</View>
))
.add('incremental rendering - small pageSize', () => (
<View style={styles.scrollViewContainer}>
<ListView
contentContainerStyle={styles.scrollViewContentContainerStyle}
dataSource={dataSource.cloneWithRows(generateData(5000))}
initialListSize={5}
// eslint-disable-next-line react/jsx-no-bind
onScroll={e => {
console.log('ScrollView.onScroll', e);
}}
pageSize={1}
// eslint-disable-next-line react/jsx-no-bind
renderRow={row => <View><Text>{row}</Text></View>}
scrollEventThrottle={1000} // 1 event per second
style={styles.scrollViewStyle}
/>
</View>
));
const styles = StyleSheet.create({
box: {
flexGrow: 1,
justifyContent: 'center',
borderWidth: 1
},
scrollViewContainer: {
height: '200px',
width: 300
},
scrollViewStyle: {
borderWidth: '1px'
},
scrollViewContentContainerStyle: {
backgroundColor: '#eee',
padding: '10px'
}
});

View File

@@ -1,8 +1,4 @@
import createReactClass from 'create-react-class';
import { ProgressBar, StyleSheet, View } from 'react-native';
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import TimerMixin from 'react-timer-mixin';
/* eslint-disable react/prefer-es6-class */
/**
* Copyright (c) 2013-present, Facebook, Inc.
@@ -27,6 +23,13 @@ import TimerMixin from 'react-timer-mixin';
* @flow
*/
import createReactClass from 'create-react-class';
import { ProgressBar, StyleSheet, View } from 'react-native';
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import TimerMixin from 'react-timer-mixin';
import UIExplorer from '../../UIExplorer';
const ProgressBarExample = createReactClass({
mixins: [TimerMixin],
@@ -54,10 +57,7 @@ const ProgressBarExample = createReactClass({
render() {
return (
<View style={styles.container}>
<ProgressBar color="purple" progress={this.getProgress(0.2)} style={styles.progressView} />
<ProgressBar color="red" progress={this.getProgress(0.4)} style={styles.progressView} />
<ProgressBar color="orange" progress={this.getProgress(0.6)} style={styles.progressView} />
<ProgressBar color="yellow" progress={this.getProgress(0.8)} style={styles.progressView} />
<ProgressBar color="#794BC4" progress={this.getProgress(0.2)} style={styles.progressView} />
</View>
);
}
@@ -65,16 +65,76 @@ const ProgressBarExample = createReactClass({
const examples = [
{
title: 'progress',
title: 'Default',
render() {
return <ProgressBar progress={0.5} />;
}
},
{
title: 'Controlled',
render() {
return <ProgressBarExample />;
}
},
{
title: 'indeterminate',
title: 'Indeterminate',
render() {
return <ProgressBar indeterminate style={styles.progressView} trackColor="#D1E3F6" />;
}
},
{
title: 'Custom colors',
render() {
return (
<View>
<ProgressBar color="#1DA1F2" progress={1} />
<View style={styles.verticalDivider} />
<ProgressBar color="#17BF63" progress={0.8} />
<View style={styles.verticalDivider} />
<ProgressBar color="#F45D22" progress={0.6} />
<View style={styles.verticalDivider} />
<ProgressBar color="#794BC4" progress={0.4} />
<View style={styles.verticalDivider} />
<ProgressBar color="#E0245E" progress={0.2} />
</View>
);
}
},
{
title: 'Custom track colors',
render() {
return (
<View>
<ProgressBar color="#1DA1F2" progress={0.1} trackColor="#D1E3F6" />
<View style={styles.verticalDivider} />
<ProgressBar color="#1DA1F2" progress={0.2} trackColor="rgba(121, 74, 196, 0.34)" />
<View style={styles.verticalDivider} />
<ProgressBar color="#1DA1F2" progress={0.3} trackColor="rgba(224, 36, 94, 0.35)" />
</View>
);
}
},
{
title: 'Custom sizes',
render() {
return (
<View>
<ProgressBar
color="#1DA1F2"
progress={0.33}
style={{ height: 10 }}
trackColor="#D1E3F6"
/>
<View style={styles.verticalDivider} />
<ProgressBar
color="#1DA1F2"
progress={0.33}
style={{ height: 15 }}
trackColor="#D1E3F6"
/>
</View>
);
}
}
];
@@ -87,9 +147,17 @@ const styles = StyleSheet.create({
progressView: {
marginTop: 20,
minWidth: 200
},
verticalDivider: {
height: '1.3125rem'
}
});
examples.forEach(example => {
storiesOf('component: ProgressBar', module).add(example.title, () => example.render());
});
storiesOf('Components', module).add('ProgressBar', () =>
<UIExplorer
description="Display an activity progress bar"
examples={examples}
title="ProgressBar"
url="https://github.com/necolas/react-native-web/blob/master/docs/components/ProgressBar.md"
/>
);

View File

@@ -1,45 +1,51 @@
/* eslint-disable react/jsx-no-bind */
import React from 'react';
import UIExplorer from '../../UIExplorer';
import { action, storiesOf } from '@kadira/storybook';
import { ScrollView, StyleSheet, Text, TouchableHighlight, View } from 'react-native';
const onScroll = action('ScrollView.onScroll');
storiesOf('component: ScrollView', module)
.add('vertical', () => (
<View style={styles.scrollViewContainer}>
<ScrollView
contentContainerStyle={styles.scrollViewContentContainerStyle}
onScroll={onScroll}
scrollEventThrottle={1000} // 1 event per second
style={styles.scrollViewStyle}
>
{Array.from({ length: 50 }).map((item, i) => (
<View key={i} style={styles.box}>
<TouchableHighlight onPress={() => {}}><Text>{i}</Text></TouchableHighlight>
</View>
))}
</ScrollView>
</View>
))
.add('horizontal', () => (
<View style={styles.scrollViewContainer}>
<ScrollView
contentContainerStyle={styles.scrollViewContentContainerStyle}
horizontal
onScroll={onScroll}
scrollEventThrottle={16} // ~60 events per second
style={styles.scrollViewStyle}
>
{Array.from({ length: 50 }).map((item, i) => (
<View key={i} style={[styles.box, styles.horizontalBox]}>
<Text>{i}</Text>
</View>
))}
</ScrollView>
</View>
));
const examples = [
{
title: 'vertical',
render: () =>
<View style={styles.scrollViewContainer}>
<ScrollView
contentContainerStyle={styles.scrollViewContentContainerStyle}
onScroll={onScroll}
scrollEventThrottle={1000} // 1 event per second
style={styles.scrollViewStyle}
>
{Array.from({ length: 50 }).map((item, i) =>
<View key={i} style={styles.box}>
<TouchableHighlight onPress={() => {}}><Text>{i}</Text></TouchableHighlight>
</View>
)}
</ScrollView>
</View>
},
{
title: 'horizontal',
render: () =>
<View style={styles.scrollViewContainer}>
<ScrollView
contentContainerStyle={styles.scrollViewContentContainerStyle}
horizontal
onScroll={onScroll}
scrollEventThrottle={16} // ~60 events per second
style={styles.scrollViewStyle}
>
{Array.from({ length: 50 }).map((item, i) =>
<View key={i} style={[styles.box, styles.horizontalBox]}>
<Text>{i}</Text>
</View>
)}
</ScrollView>
</View>
}
];
const styles = StyleSheet.create({
box: {
@@ -48,7 +54,7 @@ const styles = StyleSheet.create({
borderWidth: 1
},
scrollViewContainer: {
height: '200px',
height: 200,
width: 300
},
scrollViewStyle: {
@@ -59,3 +65,11 @@ const styles = StyleSheet.create({
padding: 10
}
});
storiesOf('Components', module).add('ScrollView', () =>
<UIExplorer
examples={examples}
title="ScrollView"
url="https://github.com/necolas/react-native-web/blob/master/docs/components/ScrollView.md"
/>
);

View File

@@ -1,4 +1,4 @@
/* eslint-disable react/jsx-no-bind */
/* eslint-disable react/jsx-no-bind, react/prefer-es6-class */
/**
* Copyright (c) 2013-present, Facebook, Inc.
@@ -27,6 +27,7 @@ import createReactClass from 'create-react-class';
import { Switch, Text, View } from 'react-native';
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import UIExplorer from '../../UIExplorer';
const BasicSwitchExample = createReactClass({
getInitialState() {
@@ -198,6 +199,10 @@ const examples = [
}
];
examples.forEach(example => {
storiesOf('component: Switch', module).add(example.title, () => example.render());
});
storiesOf('Components', module).add('Switch', () =>
<UIExplorer
examples={examples}
title="Switch"
url="https://github.com/necolas/react-native-web/blob/master/docs/components/Switch.md"
/>
);

View File

@@ -1,4 +1,4 @@
/* eslint-disable react/jsx-no-bind */
/* eslint-disable react/jsx-no-bind, react/prefer-es6-class, react/prop-types */
/**
* Copyright (c) 2013-present, Facebook, Inc.
@@ -26,6 +26,7 @@
import createReactClass from 'create-react-class';
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import UIExplorer from '../../UIExplorer';
import { Image, Text, View } from 'react-native';
const Entity = createReactClass({
@@ -268,9 +269,10 @@ const examples = [
},
{
title: 'Nested',
description: 'Nested text components will inherit the styles of their ' +
'parents (only backgroundColor is inherited from non-Text parents). ' +
'<Text> only supports other <Text> and raw text (strings) as children.',
description:
'Nested text components will inherit the styles of their ' +
'parents (only backgroundColor is inherited from non-Text parents). ' +
'<Text> only supports other <Text> and raw text (strings) as children.',
render: function() {
return (
<View>
@@ -362,7 +364,7 @@ const examples = [
render: function() {
return (
<Text>
A {'generated'} {' '} {'string'} and some &nbsp;&nbsp;&nbsp; spaces
A {'generated'} {' '} {'string'} and some &nbsp;&nbsp;&nbsp; spaces
</Text>
);
}
@@ -453,7 +455,8 @@ const examples = [
style={{ backgroundColor: 'white', textDecorationLine: 'underline', color: 'blue' }}
suppressHighlighting={false}
>
consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua. Ut enim ad minim veniam, quis nostrud
</Text>
{' '}
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
@@ -469,7 +472,8 @@ const examples = [
<View>
<Text>
By default, text will respect Text Size accessibility setting on iOS.
It means that all font sizes will be increased or descreased depending on the value of Text Size setting in
It means that all font sizes will be increased or descreased depending on the value of
Text Size setting in
{' '}
<Text style={{ fontWeight: 'bold' }}>
Settings.app - Display & Brightness - Text Size
@@ -558,8 +562,10 @@ const examples = [
}
];
examples.forEach(example => {
storiesOf('component: Text', module)
.addDecorator(renderStory => <View style={{ width: 320 }}>{renderStory()}</View>)
.add(example.title, () => example.render());
});
storiesOf('Components', module).add('Text', () =>
<UIExplorer
examples={examples}
title="Text"
url="https://github.com/necolas/react-native-web/blob/master/docs/components/Text.md"
/>
);

View File

@@ -25,6 +25,7 @@
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import UIExplorer from '../../UIExplorer';
import { any, bool, object, string } from 'prop-types';
import { StyleSheet, Text, TextInput, View } from 'react-native';
@@ -107,7 +108,8 @@ class AutoExpandingTextInput extends React.Component {
constructor(props) {
super(props);
this.state = {
text: 'React Native enables you to build world-class application experiences on native platforms using a consistent developer experience based on JavaScript and React. The focus of React Native is on developer efficiency across all the platforms you care about — learn once, write anywhere. Facebook uses React Native in multiple production apps and will continue investing in React Native.',
text:
'React Native enables you to build world-class application experiences on native platforms using a consistent developer experience based on JavaScript and React. The focus of React Native is on developer efficiency across all the platforms you care about — learn once, write anywhere. Facebook uses React Native in multiple production apps and will continue investing in React Native.',
height: 0
};
}
@@ -463,7 +465,7 @@ const styles = StyleSheet.create({
const examples = [
{
title: 'Auto-focus',
render: function() {
render() {
return (
<View>
<TextInput
@@ -477,19 +479,19 @@ const examples = [
},
{
title: "Live Re-Write (<sp> -> '_') + maxLength",
render: function() {
render() {
return <RewriteExample />;
}
},
{
title: 'Live Re-Write (no spaces allowed)',
render: function() {
render() {
return <RewriteExampleInvalidCharacters />;
}
},
{
title: 'Auto-capitalize',
render: function() {
render() {
return (
<View>
<WithLabel label="none">
@@ -510,7 +512,7 @@ const examples = [
},
{
title: 'Auto-correct',
render: function() {
render() {
return (
<View>
<WithLabel label="true">
@@ -525,7 +527,7 @@ const examples = [
},
{
title: 'Keyboard types',
render: function() {
render() {
const keyboardTypes = [
'default',
//'ascii-capable',
@@ -552,7 +554,7 @@ const examples = [
},
{
title: 'Keyboard appearance',
render: function() {
render() {
const keyboardAppearance = ['default', 'light', 'dark'];
const examples = keyboardAppearance.map(type => {
return (
@@ -566,7 +568,7 @@ const examples = [
},
{
title: 'Return key types',
render: function() {
render() {
const returnKeyTypes = [
'default',
'go',
@@ -592,7 +594,7 @@ const examples = [
},
{
title: 'Enable return key automatically',
render: function() {
render() {
return (
<View>
<WithLabel label="true">
@@ -604,7 +606,7 @@ const examples = [
},
{
title: 'Secure text entry',
render: function() {
render() {
return (
<View>
<WithLabel label="true">
@@ -616,13 +618,13 @@ const examples = [
},
{
title: 'Event handling',
render: function(): React.Element<any> {
render(): React.Element<any> {
return <TextEventsExample />;
}
},
{
title: 'Colored input text',
render: function() {
render() {
return (
<View>
<TextInput defaultValue="Blue" style={[styles.default, { color: 'blue' }]} />
@@ -633,7 +635,7 @@ const examples = [
},
{
title: 'Colored highlight/cursor for text input',
render: function() {
render() {
return (
<View>
<TextInput defaultValue="Highlight me" selectionColor={'green'} style={styles.default} />
@@ -648,7 +650,7 @@ const examples = [
},
{
title: 'Clear button mode',
render: function() {
render() {
return (
<View>
<WithLabel label="never">
@@ -669,7 +671,7 @@ const examples = [
},
{
title: 'Clear and select',
render: function() {
render() {
return (
<View>
<WithLabel label="clearTextOnFocus">
@@ -694,13 +696,13 @@ const examples = [
},
{
title: 'Blur on submit',
render: function(): React.Element<any> {
render(): React.Element<any> {
return <BlurOnSubmitExample />;
}
},
{
title: 'Multiline blur on submit',
render: function() {
render() {
return (
<View>
<TextInput
@@ -719,7 +721,7 @@ const examples = [
},
{
title: 'Multiline',
render: function() {
render() {
return (
<View>
<TextInput multiline={true} placeholder="multiline text input" style={styles.multiline} />
@@ -758,7 +760,7 @@ const examples = [
},
{
title: 'Number of lines',
render: function() {
render() {
return (
<View>
<TextInput
@@ -772,7 +774,7 @@ const examples = [
},
{
title: 'Auto-expanding',
render: function() {
render() {
return (
<View>
<AutoExpandingTextInput
@@ -786,13 +788,13 @@ const examples = [
},
{
title: 'Attributed text',
render: function() {
render() {
return <TokenizedTextExample />;
}
},
{
title: 'Text selection & cursor placement',
render: function() {
render() {
return (
<View>
<SelectionExample style={styles.default} value="text selection can be changed" />
@@ -807,7 +809,7 @@ const examples = [
},
{
title: 'TextInput maxLength',
render: function() {
render() {
return (
<View>
<WithLabel label="maxLength: 5">
@@ -828,6 +830,10 @@ const examples = [
}
];
examples.forEach(example => {
storiesOf('component: TextInput', module).add(example.title, () => example.render());
});
storiesOf('Components', module).add('TextInput', () =>
<UIExplorer
examples={examples}
title="TextInput"
url="https://github.com/necolas/react-native-web/blob/master/docs/components/TextInput.md"
/>
);

View File

@@ -24,7 +24,8 @@
*/
import React from 'react';
import { storiesOf, action } from '@kadira/storybook';
import UIExplorer from '../../UIExplorer';
import { action, storiesOf } from '@kadira/storybook';
import {
Image,
StyleSheet,
@@ -36,90 +37,6 @@ import {
View
} from 'react-native';
const examples = [
{
title: '<TouchableHighlight>',
description: 'TouchableHighlight works by adding an extra view with a ' +
'black background under the single child view. This works best when the ' +
'child view is fully opaque, although it can be made to work as a simple ' +
'background color change as well with the activeOpacity and ' +
'underlayColor props.',
render: function() {
return (
<View>
<View style={styles.row}>
<TouchableHighlight
onPress={() => console.log('stock THW image - highlight')}
style={styles.wrapper}
>
<Image source={heartImage} style={styles.image} />
</TouchableHighlight>
<TouchableHighlight
activeOpacity={1}
onPress={() => console.log('custom THW text - highlight')}
style={styles.wrapper}
underlayColor="rgb(210, 230, 255)"
>
<View style={styles.wrapperCustom}>
<Text style={styles.text}>
Tap Here For Custom Highlight!
</Text>
</View>
</TouchableHighlight>
</View>
</View>
);
}
},
{
title: '<Text onPress={fn}> with highlight',
render: function() {
return <TextOnPressBox />;
}
},
{
title: 'Touchable feedback events',
description: '<Touchable*> components accept onPress, onPressIn, ' +
'onPressOut, and onLongPress as props.',
render: function() {
return <TouchableFeedbackEvents />;
}
},
{
title: 'Touchable delay for events',
description: '<Touchable*> components also accept delayPressIn, ' +
'delayPressOut, and delayLongPress as props. These props impact the ' +
'timing of feedback events.',
render: function() {
return <TouchableDelayEvents />;
}
},
{
title: '3D Touch / Force Touch',
description: 'iPhone 6s and 6s plus support 3D touch, which adds a force property to touches',
render: function() {
return <ForceTouchExample />;
},
platform: 'ios'
},
{
title: 'Touchable Hit Slop',
description: '<Touchable*> components accept hitSlop prop which extends the touch area ' +
'without changing the view bounds.',
render: function() {
return <TouchableHitSlop />;
}
},
{
title: 'Disabled Touchable*',
description: '<Touchable*> components accept disabled prop which prevents ' +
'any interaction with component',
render: function() {
return <TouchableDisabled />;
}
}
];
class TextOnPressBox extends React.Component {
constructor(props) {
super(props);
@@ -393,6 +310,66 @@ class TouchableDisabled extends React.Component {
}
}
class TouchableStyling extends React.Component {
constructor(props, context) {
super(props, context);
this.buttons = ['a', 'b', 'c'];
this.state = {};
this.select = this.select.bind(this);
}
select(selectedButton) {
const newState = {};
this.buttons.forEach(button => {
newState[button] = selectedButton === button;
});
this.setState(newState);
}
render() {
return (
<View style={touchableStylingStyles.container}>
{this.buttons.map(button => {
const tstyle = [
touchableStylingStyles.textInput,
this.state[button] && touchableStylingStyles.blue
];
return (
<TouchableHighlight
key={button}
onPress={this.select.bind(this, button)}
style={tstyle}
>
<Text style={[this.state[button] && touchableStylingStyles.white]}>
Button {button} {this.state[button] ? 'On' : 'Off'}
</Text>
</TouchableHighlight>
);
})}
</View>
);
}
}
const touchableStylingStyles = StyleSheet.create({
blue: {
backgroundColor: 'rgb(100, 100, 200)',
borderColor: 'white'
},
white: {
color: 'white'
},
container: {
backgroundColor: '#f6f6f6'
},
textInput: {
borderWidth: 3,
borderColor: 'black',
padding: 20,
width: 200
}
});
const heartImage = { uri: 'https://pbs.twimg.com/media/BlXBfT3CQAA6cVZ.png:small' };
const styles = StyleSheet.create({
@@ -468,6 +445,105 @@ const styles = StyleSheet.create({
}
});
examples.forEach(example => {
storiesOf('component: Touchable*', module).add(example.title, () => example.render());
});
const examples = [
{
title: '<TouchableHighlight>',
description:
'TouchableHighlight works by adding an extra view with a ' +
'black background under the single child view. This works best when the ' +
'child view is fully opaque, although it can be made to work as a simple ' +
'background color change as well with the activeOpacity and ' +
'underlayColor props.',
render() {
return (
<View>
<View style={styles.row}>
<TouchableHighlight
onPress={() => console.log('stock THW image - highlight')}
style={styles.wrapper}
>
<Image source={heartImage} style={styles.image} />
</TouchableHighlight>
<TouchableHighlight
activeOpacity={1}
onPress={() => console.log('custom THW text - highlight')}
style={styles.wrapper}
underlayColor="rgb(210, 230, 255)"
>
<View style={styles.wrapperCustom}>
<Text style={styles.text}>
Tap Here For Custom Highlight!
</Text>
</View>
</TouchableHighlight>
</View>
</View>
);
}
},
{
title: '<Text onPress={fn}> with highlight',
render() {
return <TextOnPressBox />;
}
},
{
title: 'Touchable feedback events',
description:
'<Touchable*> components accept onPress, onPressIn, ' +
'onPressOut, and onLongPress as props.',
render() {
return <TouchableFeedbackEvents />;
}
},
{
title: 'Touchable delay for events',
description:
'<Touchable*> components also accept delayPressIn, ' +
'delayPressOut, and delayLongPress as props. These props impact the ' +
'timing of feedback events.',
render() {
return <TouchableDelayEvents />;
}
},
{
title: 'Touchable styling',
render() {
return <TouchableStyling />;
}
},
{
title: '3D Touch / Force Touch',
description: 'iPhone 6s and 6s plus support 3D touch, which adds a force property to touches',
render() {
return <ForceTouchExample />;
},
platform: 'ios'
},
{
title: 'Touchable Hit Slop',
description:
'<Touchable*> components accept hitSlop prop which extends the touch area ' +
'without changing the view bounds.',
render() {
return <TouchableHitSlop />;
}
},
{
title: 'Disabled Touchable*',
description:
'<Touchable*> components accept disabled prop which prevents ' +
'any interaction with component',
render() {
return <TouchableDisabled />;
}
}
];
storiesOf('Components', module).add('Touchables', () =>
<UIExplorer
examples={examples}
title="Touchables"
url="https://github.com/necolas/react-native-web/blob/master/docs/components/TouchableWithoutFeedback.md"
/>
);

View File

@@ -1,7 +1,4 @@
import createReactClass from 'create-react-class';
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import { StyleSheet, Text, TouchableWithoutFeedback, View } from 'react-native';
/* eslint-disable react/prefer-es6-class */
/**
* Copyright (c) 2013-present, Facebook, Inc.
@@ -26,6 +23,13 @@ import { StyleSheet, Text, TouchableWithoutFeedback, View } from 'react-native';
* @flow
*/
import createReactClass from 'create-react-class';
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import UIExplorer from '../../UIExplorer';
import ViewTransformsExample from './ViewTransformsExample';
import { StyleSheet, Text, TouchableWithoutFeedback, View } from 'react-native';
const styles = StyleSheet.create({
box: {
backgroundColor: '#527FE4',
@@ -286,8 +290,12 @@ const examples = [
return <View style={[styles.shadowBox, styles.shadow, { borderRadius: 50 }]} />;
}
}
];
].concat(ViewTransformsExample);
examples.forEach(example => {
storiesOf('component: View', module).add(example.title, () => example.render());
});
storiesOf('Components', module).add('View', () =>
<UIExplorer
examples={examples}
title="View"
url="https://github.com/necolas/react-native-web/blob/master/docs/components/View.md"
/>
);

View File

@@ -1,7 +1,4 @@
import createReactClass from 'create-react-class';
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import { Animated, StyleSheet, Text, View } from 'react-native';
/* eslint-disable react/prefer-es6-class */
/**
* Copyright (c) 2013-present, Facebook, Inc.
@@ -25,16 +22,20 @@ import { Animated, StyleSheet, Text, View } from 'react-native';
* @flow
*/
const Flip = createReactClass({
getInitialState() {
return {
import React from 'react';
import { Animated, StyleSheet, Text, View } from 'react-native';
class Flip extends React.Component {
constructor(props, context) {
super(props, context);
this.state = {
theta: new Animated.Value(45)
};
},
}
componentDidMount() {
this._animate();
},
}
_animate() {
this.state.theta.setValue(0);
@@ -42,7 +43,7 @@ const Flip = createReactClass({
toValue: 360,
duration: 5000
}).start(this._animate);
},
}
render() {
return (
@@ -93,7 +94,7 @@ const Flip = createReactClass({
</View>
);
}
});
}
const styles = StyleSheet.create({
box1: {
@@ -254,6 +255,4 @@ const examples = [
}
];
examples.forEach(example => {
storiesOf('component: View (transforms)', module).add(example.title, () => example.render());
});
module.exports = examples;

View File

@@ -0,0 +1,441 @@
/* eslint-disable react/jsx-no-bind, react/prop-types */
// React Native version of https://codepen.io/mjijackson/pen/xOzyGX
import React from 'react';
import { StyleSheet, Text, TouchableHighlight, View } from 'react-native';
/**
* KeyboardInput
*/
class KeyboardInput extends React.Component {
componentDidMount() {
document.addEventListener('keydown', this.handleKeyDown);
}
componentWillUnmount() {
document.removeEventListener('keydown', this.handleKeyDown);
}
render() {
return null;
}
handleKeyDown = event => {
if (this.props.onKeyDown) {
this.props.onKeyDown(event);
}
};
}
/**
* CalculatorDisplay
*/
class CalculatorDisplay extends React.Component {
constructor(props, context) {
super(props, context);
this.state = {
scale: 1
};
}
handleTextLayout = e => {
const { width, x } = e.nativeEvent.layout;
const maxWidth = width + x;
const newScale = maxWidth / width;
if (x < 0) {
this.setState({ scale: newScale });
} else if (x > width) {
this.setState({ scale: 1 });
}
};
render() {
const { value } = this.props;
const { scale } = this.state;
const language = navigator.language || 'en-US';
let formattedValue = parseFloat(value).toLocaleString(language, {
useGrouping: true,
maximumFractionDigits: 6
});
const trailingZeros = value.match(/\.0*$/);
if (trailingZeros) {
formattedValue += trailingZeros;
}
return (
<View style={calculatorDisplayStyles.root}>
<Text
children={formattedValue}
onLayout={this.handleTextLayout}
style={[calculatorDisplayStyles.text, { transform: [{ scale }] }]}
/>
</View>
);
}
}
const calculatorDisplayStyles = StyleSheet.create({
root: {
backgroundColor: '#1c191c',
flex: 1,
justifyContent: 'center'
},
text: {
alignSelf: 'flex-end',
color: 'white',
//lineHeight: 130,
fontSize: '5.25em',
fontWeight: '100',
fontFamily: 'Roboto, sans-serif',
paddingHorizontal: 30,
//position: 'absolute',
right: 0,
transformOrigin: 'right'
}
});
/**
* CalculatorKey
*/
class CalculatorKey extends React.Component {
render() {
const { children, onPress, style, textStyle } = this.props;
return (
<TouchableHighlight
accessibilityRole="button"
onPress={onPress}
style={[calculatorKeyStyles.root, style]}
underlayColor="rgba(0,0,0,0.25)"
>
<Text children={children} style={[calculatorKeyStyles.text, textStyle]} />
</TouchableHighlight>
);
}
}
const calculatorKeyStyles = StyleSheet.create({
root: {
width: 80,
height: 80,
borderTopWidth: 1,
borderTopColor: '#777',
borderTopStyle: 'solid',
borderRightWidth: 1,
borderRightColor: '#666',
borderRightStyle: 'solid',
outline: 'none'
},
text: {
fontWeight: '100',
fontFamily: 'Roboto, sans-serif',
lineHeight: 80,
textAlign: 'center'
}
});
const CalculatorOperations = {
'/': (prevValue, nextValue) => prevValue / nextValue,
'*': (prevValue, nextValue) => prevValue * nextValue,
'+': (prevValue, nextValue) => prevValue + nextValue,
'-': (prevValue, nextValue) => prevValue - nextValue,
'=': (prevValue, nextValue) => nextValue
};
/**
* Calculator
*/
class Calculator extends React.Component {
constructor(props, context) {
super(props, context);
this.state = {
value: null,
displayValue: '0',
operator: null,
waitingForOperand: false
};
}
clearAll() {
this.setState({
value: null,
displayValue: '0',
operator: null,
waitingForOperand: false
});
}
clearDisplay() {
this.setState({
displayValue: '0'
});
}
clearLastChar() {
const { displayValue } = this.state;
this.setState({
displayValue: displayValue.substring(0, displayValue.length - 1) || '0'
});
}
toggleSign() {
const { displayValue } = this.state;
const newValue = parseFloat(displayValue) * -1;
this.setState({
displayValue: String(newValue)
});
}
inputPercent() {
const { displayValue } = this.state;
const currentValue = parseFloat(displayValue);
if (currentValue === 0) return;
const fixedDigits = displayValue.replace(/^-?\d*\.?/, '');
const newValue = parseFloat(displayValue) / 100;
this.setState({
displayValue: String(newValue.toFixed(fixedDigits.length + 2))
});
}
inputDot() {
const { displayValue } = this.state;
if (!/\./.test(displayValue)) {
this.setState({
displayValue: displayValue + '.',
waitingForOperand: false
});
}
}
inputDigit(digit) {
const { displayValue, waitingForOperand } = this.state;
if (waitingForOperand) {
this.setState({
displayValue: String(digit),
waitingForOperand: false
});
} else {
this.setState({
displayValue: displayValue === '0' ? String(digit) : displayValue + digit
});
}
}
performOperation(nextOperator) {
const { value, displayValue, operator } = this.state;
const inputValue = parseFloat(displayValue);
if (value == null) {
this.setState({
value: inputValue
});
} else if (operator) {
const currentValue = value || 0;
const newValue = CalculatorOperations[operator](currentValue, inputValue);
this.setState({
value: newValue,
displayValue: String(newValue)
});
}
this.setState({
waitingForOperand: true,
operator: nextOperator
});
}
handleKeyDown(event) {
let { key } = event;
if (key === 'Enter') key = '=';
if (/\d/.test(key)) {
event.preventDefault();
this.inputDigit(parseInt(key, 10));
} else if (key in CalculatorOperations) {
event.preventDefault();
this.performOperation(key);
} else if (key === '.') {
event.preventDefault();
this.inputDot();
} else if (key === '%') {
event.preventDefault();
this.inputPercent();
} else if (key === 'Backspace') {
event.preventDefault();
this.clearLastChar();
} else if (key === 'Clear') {
event.preventDefault();
if (this.state.displayValue !== '0') {
this.clearDisplay();
} else {
this.clearAll();
}
}
}
render() {
const { displayValue } = this.state;
const clearDisplay = displayValue !== '0';
const clearText = clearDisplay ? 'C' : 'AC';
return (
<View style={calculatorStyles.root}>
<KeyboardInput onKeyDown={event => this.handleKeyDown(event)} />
<CalculatorDisplay value={displayValue} />
<View style={calculatorStyles.keypad}>
<View style={calculatorStyles.inputKeys}>
<View style={calculatorStyles.functionKeys}>
<FunctionKey onPress={() => (clearDisplay ? this.clearDisplay() : this.clearAll())}>
{clearText}
</FunctionKey>
<FunctionKey onPress={() => this.toggleSign()} style={calculatorStyles.keySign}>
±
</FunctionKey>
<FunctionKey onPress={() => this.inputPercent()} style={calculatorStyles.keyPercent}>
%
</FunctionKey>
</View>
<View style={calculatorStyles.digitKeys}>
<DigitKey
onPress={() => this.inputDigit(0)}
style={calculatorStyles.key0}
textStyle={{ textAlign: 'left' }}
>
0
</DigitKey>
<DigitKey
onPress={() => this.inputDot()}
style={calculatorStyles.keyDot}
textStyle={calculatorStyles.keyDotText}
>
.
</DigitKey>
<DigitKey onPress={() => this.inputDigit(1)}>1</DigitKey>
<DigitKey onPress={() => this.inputDigit(2)}>2</DigitKey>
<DigitKey onPress={() => this.inputDigit(3)}>3</DigitKey>
<DigitKey onPress={() => this.inputDigit(4)}>4</DigitKey>
<DigitKey onPress={() => this.inputDigit(5)}>5</DigitKey>
<DigitKey onPress={() => this.inputDigit(6)}>6</DigitKey>
<DigitKey onPress={() => this.inputDigit(7)}>7</DigitKey>
<DigitKey onPress={() => this.inputDigit(8)}>8</DigitKey>
<DigitKey onPress={() => this.inputDigit(9)}>9</DigitKey>
</View>
</View>
<View style={calculatorStyles.operatorKeys}>
<OperatorKey onPress={() => this.performOperation('/')}>÷</OperatorKey>
<OperatorKey onPress={() => this.performOperation('*')}>×</OperatorKey>
<OperatorKey onPress={() => this.performOperation('-')}></OperatorKey>
<OperatorKey onPress={() => this.performOperation('+')}>+</OperatorKey>
<OperatorKey onPress={() => this.performOperation('=')}>=</OperatorKey>
</View>
</View>
</View>
);
}
}
const DigitKey = props =>
<CalculatorKey
{...props}
style={[calculatorStyles.digitKey, props.style]}
textStyle={[calculatorStyles.digitKeyText, props.textStyle]}
/>;
const FunctionKey = props =>
<CalculatorKey
{...props}
style={[calculatorStyles.functionKey, props.style]}
textStyle={[calculatorStyles.functionKeyText, props.textStyle]}
/>;
const OperatorKey = props =>
<CalculatorKey
{...props}
style={[calculatorStyles.operatorKey, props.style]}
textStyle={[calculatorStyles.operatorKeyText, props.textStyle]}
/>;
const calculatorStyles = StyleSheet.create({
root: {
width: 320,
height: 520,
backgroundColor: 'black',
boxShadow: '0px 0px 20px 0px #aaa'
},
keypad: {
height: 400,
flexDirection: 'row'
},
inputKeys: {
width: 240
},
calculatorKeyText: {
fontFamily: 'Roboto, sans-serif',
fontSize: '1.75em',
fontWeight: '100'
},
functionKeys: {
backgroundImage: 'linear-gradient(to bottom, rgba(202,202,204,1) 0%, rgba(196,194,204,1) 100%)',
flexDirection: 'row'
},
functionKeyText: {
fontFamily: 'Roboto, sans-serif',
fontSize: '1.75em',
fontWeight: '100'
},
digitKeys: {
backgroundColor: '#e0e0e7',
flexDirection: 'row',
flexWrap: 'wrap-reverse'
},
digitKeyText: {
fontFamily: 'Roboto, sans-serif',
fontSize: '2em',
fontWeight: '100'
},
operatorKeys: {
backgroundImage: 'linear-gradient(to bottom, rgba(252,156,23,1) 0%, rgba(247,126,27,1) 100%)'
},
operatorKey: {
borderRightWidth: 0
},
operatorKeyText: {
color: 'white',
fontFamily: 'Roboto, sans-serif',
fontSize: '2.65em',
fontWeight: '100'
},
keyMultiplyText: {
lineHeight: 50
},
key0: {
paddingLeft: 32,
width: 160
},
keyDot: {
overflow: 'hidden'
},
keyDotText: {
fontFamily: 'Roboto, sans-serif',
fontSize: '4.375em',
fontWeight: '100',
marginTop: -10
}
});
module.exports = Calculator;

View File

@@ -0,0 +1,14 @@
import React from 'react';
import { storiesOf } from '@kadira/storybook';
import Calculator from './Calculator';
import { StyleSheet, View } from 'react-native';
const styles = StyleSheet.create({
container: { alignItems: 'center', justifyContent: 'center', flex: 1 }
});
storiesOf('Example apps', module).add('Calculator', () =>
<View style={styles.container}>
<Calculator />
</View>
);

View File

@@ -2,4 +2,4 @@ import React from 'react';
import { storiesOf } from '@kadira/storybook';
import Game2048 from './Game2048';
storiesOf('demo: Game2048', module).add('the game', () => <Game2048 />);
storiesOf('Example apps', module).add('Game2048', () => <Game2048 />);

View File

@@ -1,4 +1,4 @@
/* eslint-disable react/jsx-no-bind */
/* eslint-disable react/jsx-no-bind, react/prefer-es6-class, react/prop-types */
/**
* The examples provided by Facebook are for non-commercial testing and
@@ -211,17 +211,17 @@ const TicTacToeApp = createReactClass({
},
render() {
const rows = this.state.board.grid.map((cells, row) => (
const rows = this.state.board.grid.map((cells, row) =>
<View key={'row' + row} style={styles.row}>
{cells.map((player, col) => (
{cells.map((player, col) =>
<Cell
key={'cell' + col}
onPress={this.handleCellPress.bind(this, row, col)}
player={player}
/>
))}
)}
</View>
));
);
return (
<View style={styles.container}>

View File

@@ -2,4 +2,4 @@ import React from 'react';
import { storiesOf } from '@kadira/storybook';
import TicTacToe from './TicTacToe';
storiesOf('demo: TicTacToe', module).add('the game', () => <TicTacToe />);
storiesOf('Example apps', module).add('TicTacToe', () => <TicTacToe />);

View File

@@ -1,6 +1,6 @@
{
"name": "react-native-web",
"version": "0.0.98",
"version": "0.0.99",
"description": "React Native for Web",
"main": "dist/index.js",
"files": [
@@ -57,44 +57,44 @@
"animated": "^0.2.0",
"array-find-index": "^1.0.2",
"babel-runtime": "^6.23.0",
"create-react-class": "^15.5.2",
"create-react-class": "^15.5.3",
"debounce": "1.0.2",
"deep-assign": "^2.0.0",
"fbjs": "^0.8.12",
"hyphenate-style-name": "^1.0.2",
"inline-style-prefixer": "^3.0.3",
"inline-style-prefixer": "^3.0.5",
"normalize-css-color": "^1.0.2",
"prop-types": "^15.5.8",
"prop-types": "^15.5.10",
"react-timer-mixin": "^0.13.3"
},
"devDependencies": {
"@kadira/storybook": "^2.5.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.2",
"babel-preset-react-native": "^1.9.1",
"del-cli": "^0.2.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.5",
"babel-preset-react-native": "^1.9.2",
"del-cli": "^1.0.0",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-prettier": "^1.7.0",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"file-loader": "^0.11.1",
"eslint-plugin-react": "^7.0.1",
"file-loader": "^0.11.2",
"flow-bin": "^0.47.0",
"jest": "^19.0.2",
"lint-staged": "^3.4.2",
"jest": "^20.0.4",
"lint-staged": "^3.6.0",
"node-libs-browser": "^0.5.3",
"prettier": "^1.3.1",
"prettier": "^1.4.4",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"url-loader": "^0.5.8",
"webpack": "^2.5.0",
"webpack-bundle-analyzer": "^2.4.0"
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^2.8.2"
},
"peerDependencies": {
"react": "15.4.x || 15.5.x",

View File

@@ -2,6 +2,10 @@
* @flow
*/
import { canUseDOM } from 'fbjs/lib/ExecutionEnvironment';
const initialURL = canUseDOM ? window.location.href : '';
const Linking = {
addEventListener() {},
removeEventListener() {},
@@ -9,7 +13,7 @@ const Linking = {
return Promise.resolve(true);
},
getInitialURL() {
return Promise.resolve('');
return Promise.resolve(initialURL);
},
openURL(url: string) {
try {

View File

@@ -13,7 +13,10 @@
*/
function murmurhash2_32_gc(str, seed) {
var l = str.length, h = seed ^ l, i = 0, k;
var l = str.length,
h = seed ^ l,
i = 0,
k;
while (l >= 4) {
k =

View File

@@ -222,10 +222,12 @@ var TouchableHighlight = createReactClass({
},
_hasPressHandler: function() {
return !!(this.props.onPress ||
return !!(
this.props.onPress ||
this.props.onPressIn ||
this.props.onPressOut ||
this.props.onLongPress);
this.props.onLongPress
);
},
_onKeyEnter(e, callback) {

View File

@@ -31,8 +31,8 @@ var TouchHistoryMath = {
total += ofCurrent && isXAxis
? oneTouchData.currentPageX
: ofCurrent && !isXAxis
? oneTouchData.currentPageY
: !ofCurrent && isXAxis ? oneTouchData.previousPageX : oneTouchData.previousPageY;
? oneTouchData.currentPageY
: !ofCurrent && isXAxis ? oneTouchData.previousPageX : oneTouchData.previousPageY;
count = 1;
}
} else {

1004
yarn.lock

File diff suppressed because it is too large Load Diff