/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
* @format
*/
'use strict';
const React = require('react');
const ReactNative = require('react-native');
const {
Alert,
Animated,
I18nManager,
Image,
PixelRatio,
StyleSheet,
Text,
TouchableWithoutFeedback,
Switch,
View,
Button,
} = ReactNative;
const Platform = require('Platform');
type State = {
toggleStatus: any,
pan: Object,
linear: Object,
isRTL: boolean,
};
type RTLToggleState = {
isRTL: boolean,
};
type AnimationState = {
toggleStatus: any,
linear: Object,
windowWidth: number,
};
const SCALE = PixelRatio.get();
const IMAGE_DIMENSION = 100 * SCALE;
const IMAGE_SIZE = [IMAGE_DIMENSION, IMAGE_DIMENSION];
const IS_RTL = I18nManager.isRTL;
function ListItem(props) {
return (
Text Text Text
Button
);
}
const TextAlignmentExample = withRTLState(({isRTL, setRTL, ...props}) => {
return (
Left-to-Right language without text alignment.
{'\u0645\u0646 \u0627\u0644\u064A\u0645\u064A\u0646 ' +
'\u0625\u0644\u0649 \u0627\u0644\u064A\u0633\u0627\u0631 ' +
'\u0627\u0644\u0644\u063A\u0629 \u062F\u0648\u0646 ' +
'\u0645\u062D\u0627\u0630\u0627\u0629 \u0627\u0644\u0646\u0635'}
{'\u05DE\u05D9\u05DE\u05D9\u05DF \u05DC\u05E9\u05DE\u05D0\u05DC ' +
'\u05D4\u05E9\u05E4\u05D4 \u05D1\u05DC\u05D9 ' +
'\u05D9\u05D9\u05E9\u05D5\u05E8 \u05D8\u05E7\u05E1\u05D8'}
);
});
const IconsExample = withRTLState(({isRTL, setRTL}) => {
return (
Without directional meaning
With directional meaning
);
});
function AnimationBlock(props) {
return (
);
}
type RTLSwitcherComponentState = {|
isRTL: boolean,
|};
function withRTLState(Component) {
return class extends React.Component<*, RTLSwitcherComponentState> {
constructor(...args) {
super(...args);
this.state = {
isRTL: IS_RTL,
};
}
render() {
const setRTL = isRTL => this.setState({isRTL: isRTL});
return (
);
}
};
}
const RTLToggler = ({isRTL, setRTL}) => {
if (Platform.OS === 'android') {
return {isRTL ? 'RTL' : 'LTR'};
}
const toggleRTL = () => setRTL(!isRTL);
return (
);
};
class RTLToggleExample extends React.Component {
constructor(props: Object) {
super(props);
this.state = {
isRTL: IS_RTL,
};
}
render() {
return (
{this.state.isRTL ? 'Right-to-Left' : 'Left-to-Right'}
forceRTL
);
}
_onDirectionChange = () => {
I18nManager.forceRTL(!this.state.isRTL);
this.setState({isRTL: !this.state.isRTL});
Alert.alert(
'Reload this page',
'Please reload this page to change the UI direction! ' +
'All examples in this app will be affected. ' +
'Check them out to see what they look like in RTL layout.',
);
};
}
const SimpleListItemExample = withRTLState(({isRTL, setRTL}) => {
return (
);
});
const AnimationContainer = withRTLState(({isRTL, setRTL}) => {
return ;
});
class AnimationExample extends React.Component {
constructor(props: Object) {
super(props);
this.state = {
toggleStatus: {},
linear: new Animated.Value(0),
windowWidth: 0,
};
}
render() {
return (
);
}
_onLayout = (e: Object) => {
this.setState({
windowWidth: e.nativeEvent.layout.width,
});
};
_linearTap = (e: Object) => {
this.setState({
toggleStatus: {
...this.state.toggleStatus,
[e]: !this.state.toggleStatus[e],
},
});
const offset = IMAGE_SIZE[0] / SCALE / 2 + 10;
const toMaxDistance =
(this.props.isRTL ? -1 : 1) * (this.state.windowWidth / 2 - offset);
Animated.timing(this.state.linear, {
toValue: this.state.toggleStatus[e] ? toMaxDistance : 0,
duration: 2000,
useNativeDriver: true,
}).start();
};
}
const PaddingExample = withRTLState(({isRTL, setRTL}) => {
const color = 'teal';
return (
Styles
paddingStart: 50,
paddingEnd: 10
Demo:
The {color} is padding.
);
});
const MarginExample = withRTLState(({isRTL, setRTL}) => {
return (
Styles
marginStart: 50,
marginEnd: 10
Demo:
The green is margin.
);
});
const PositionExample = withRTLState(({isRTL, setRTL}) => {
return (
Styles
start: 50
Demo:
The orange is position.
Styles
end: 50
Demo:
The orange is position.
);
});
const BorderWidthExample = withRTLState(({isRTL, setRTL}) => {
return (
Styles
borderStartWidth: 10,
borderEndWidth: 50
Demo:
);
});
const BorderColorExample = withRTLState(({isRTL, setRTL}) => {
return (
Styles
borderStartColor: 'red',
borderEndColor: 'green',
Demo:
);
});
const BorderRadiiExample = withRTLState(({isRTL, setRTL}) => {
return (
Styles
borderTopStartRadius: 10,
borderTopEndRadius: 20,
borderBottomStartRadius: 30,
borderBottomEndRadius: 40
Demo:
);
});
const BorderExample = withRTLState(({isRTL, setRTL}) => {
return (
Styles
borderStartColor: 'red',
borderEndColor: 'green',
borderStartWidth: 10,
borderEndWidth: 50,
borderTopStartRadius: 10,
borderTopEndRadius: 20,
borderBottomStartRadius: 30,
borderBottomEndRadius: 40
Demo:
);
});
const directionStyle = isRTL =>
Platform.OS === 'ios' ? {direction: isRTL ? 'rtl' : 'ltr'} : null;
const styles = StyleSheet.create({
container: {
backgroundColor: '#e9eaed',
paddingTop: 15,
},
directionBox: {
flex: 1,
backgroundColor: '#f8f8f8',
borderWidth: 0.5,
borderColor: 'black',
marginBottom: 15,
},
directionText: {
padding: 10,
fontSize: 16,
textAlign: 'center',
fontWeight: 'bold',
},
switchRowTextView: {
flex: 1,
marginBottom: 5,
marginTop: 5,
textAlign: 'center',
},
switchRowSwitchView: {
flex: 3,
},
rightAlignStyle: {
right: 10,
position: 'absolute',
},
list: {
height: 120,
marginBottom: 5,
borderTopWidth: 0.5,
borderLeftWidth: 0.5,
borderRightWidth: 0.5,
borderColor: '#e5e5e5',
},
row: {
height: 60,
flexDirection: 'row',
borderBottomWidth: 0.5,
borderColor: '#e5e5e5',
},
column1: {
width: 60,
},
column2: {
flex: 2.5,
padding: 6,
},
column3: {
flex: 1.5,
},
icon: {
width: 48,
height: 48,
margin: 6,
borderWidth: 0.5,
borderColor: '#e5e5e5',
},
withRTLStyle: {
transform: [{scaleX: IS_RTL ? -1 : 1}],
},
image: {
left: 30,
width: 48,
height: 48,
},
img: {
width: IMAGE_SIZE[0] / SCALE,
height: IMAGE_SIZE[1] / SCALE,
},
view: {
flex: 1,
},
block: {
padding: 10,
alignItems: 'center',
},
smallButton: {
top: 18,
borderRadius: 5,
height: 24,
width: 64,
backgroundColor: '#e5e5e5',
justifyContent: 'center',
alignItems: 'center',
},
fontSizeSmall: {
fontSize: 10,
},
fontSizeExtraSmall: {
fontSize: 8,
},
textAlignLeft: {
textAlign: 'left',
},
textAlignRight: {
textAlign: 'right',
},
textBox: {
width: 28,
},
flexDirectionRow: {
flexDirection: 'row',
},
bold: {
fontWeight: 'bold',
},
rtlToggler: {
color: 'gray',
padding: 8,
textAlign: 'center',
fontWeight: '500',
},
});
exports.title = 'RTLExample';
exports.description = 'Examples to show how to apply components to RTL layout.';
exports.examples = [
{
title: 'Current Layout Direction',
render: function(): React.Element {
return ;
},
},
{
title: 'A Simple List Item Layout',
render: function(): React.Element {
return ;
},
},
{
title: 'Default Text Alignment',
description:
'In iOS, it depends on active language. ' +
'In Android, it depends on the text content.',
render: function(): React.Element {
return ;
},
},
{
title: "Using textAlign: 'left'",
description:
'In iOS/Android, text alignment flips regardless of ' +
'languages or text content.',
render: function(): React.Element {
return (
);
},
},
{
title: "Using textAlign: 'right'",
description:
'In iOS/Android, text alignment flips regardless of ' +
'languages or text content.',
render: function(): React.Element {
return (
);
},
},
{
title: 'Working With Icons',
render: function(): React.Element {
return ;
},
},
{
title: 'Controlling Animation',
description: 'Animation direction according to layout',
render: function(): React.Element {
return ;
},
},
{
title: 'Padding Start/End',
render: function(): React.Element {
return ;
},
},
{
title: 'Margin Start/End',
render: function(): React.Element {
return ;
},
},
{
title: 'Position Start/End',
render: function(): React.Element {
return ;
},
},
{
title: 'Border Width Start/End',
render: function(): React.Element {
return ;
},
},
{
title: 'Border Color Start/End',
render: function(): React.Element {
return ;
},
},
{
title: 'Border Radii Start/End',
render: function(): React.Element {
return ;
},
},
{
title: 'Border',
render: function(): React.Element {
return ;
},
},
];