react-native-linear-gradient/index.android.js

53 lines
1.9 KiB
JavaScript
Raw Normal View History

2016-05-05 13:12:40 +03:00
import React, { PropTypes } from 'react';
import { processColor, requireNativeComponent, StyleSheet, View } from 'react-native';
2015-09-30 13:06:36 -04:00
var LinearGradient = React.createClass({
propTypes: {
2016-01-27 15:38:15 +02:00
start: PropTypes.arrayOf(PropTypes.number),
end: PropTypes.arrayOf(PropTypes.number),
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
locations: PropTypes.arrayOf(PropTypes.number),
...View.propTypes,
2015-09-30 13:06:36 -04:00
},
render: function() {
2016-01-27 15:38:15 +02:00
var { style, children, colors, locations, start, end, ...otherProps } = this.props;
2016-01-19 19:31:20 +02:00
// inherit container borderRadius until this issue is resolved:
// https://github.com/facebook/react-native/issues/3198
2016-05-05 13:12:40 +03:00
var flatStyle = style && StyleSheet.flatten(style);
var borderRadius = flatStyle.borderRadius || 0;
// this is the format taken by:
// http://developer.android.com/reference/android/graphics/Path.html#addRoundRect(android.graphics.RectF, float[], android.graphics.Path.Direction)
var borderRadiiPerCorner = [
flatStyle.borderTopLeftRadius || borderRadius,
flatStyle.borderTopLeftRadius || borderRadius,
flatStyle.borderTopRightRadius || borderRadius,
flatStyle.borderTopRightRadius || borderRadius,
flatStyle.borderBottomRightRadius || borderRadius,
flatStyle.borderBottomRightRadius || borderRadius,
flatStyle.borderBottomLeftRadius || borderRadius,
flatStyle.borderBottomLeftRadius || borderRadius
];
2016-01-19 19:31:20 +02:00
2015-09-30 13:06:36 -04:00
return (
2016-01-27 15:38:15 +02:00
<View {...otherProps} style={style}>
2015-09-30 13:06:36 -04:00
<NativeLinearGradient
style={{position: 'absolute', top: 0, left: 0, bottom: 0, right: 0}}
colors={colors.map(processColor)}
start={start}
end={end}
2016-01-19 19:31:20 +02:00
locations={locations}
borderRadii={borderRadiiPerCorner}
2016-01-19 19:31:20 +02:00
/>
2015-09-30 13:06:36 -04:00
{ children }
</View>
);
}
})
2016-01-27 15:38:15 +02:00
var NativeLinearGradient = requireNativeComponent('BVLinearGradient', null);
2015-09-30 13:06:36 -04:00
module.exports = LinearGradient;