2015-02-20 04:10:52 +00:00
|
|
|
/**
|
2015-03-23 20:35:08 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*
|
2015-02-20 04:10:52 +00:00
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('react-native');
|
|
|
|
var {
|
|
|
|
Image,
|
|
|
|
PixelRatio,
|
|
|
|
ScrollView,
|
|
|
|
StyleSheet,
|
|
|
|
Text,
|
|
|
|
View,
|
|
|
|
} = React;
|
|
|
|
|
|
|
|
var getImageSource = require('./getImageSource');
|
|
|
|
var getStyleFromScore = require('./getStyleFromScore');
|
|
|
|
var getTextFromScore = require('./getTextFromScore');
|
|
|
|
|
|
|
|
var MovieScreen = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<ScrollView contentContainerStyle={styles.contentContainer}>
|
|
|
|
<View style={styles.mainSection}>
|
|
|
|
<Image
|
|
|
|
source={getImageSource(this.props.movie, 'det')}
|
|
|
|
style={styles.detailsImage}
|
|
|
|
/>
|
|
|
|
<View style={styles.rightPane}>
|
|
|
|
<Text style={styles.movieTitle}>{this.props.movie.title}</Text>
|
|
|
|
<Text>{this.props.movie.year}</Text>
|
|
|
|
<View style={styles.mpaaWrapper}>
|
|
|
|
<Text style={styles.mpaaText}>
|
|
|
|
{this.props.movie.mpaa_rating}
|
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
<Ratings ratings={this.props.movie.ratings} />
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
<View style={styles.separator} />
|
2015-03-18 20:12:40 +00:00
|
|
|
<Text>
|
|
|
|
{this.props.movie.synopsis}
|
|
|
|
</Text>
|
2015-02-20 04:10:52 +00:00
|
|
|
<View style={styles.separator} />
|
|
|
|
<Cast actors={this.props.movie.abridged_cast} />
|
|
|
|
</ScrollView>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
var Ratings = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
var criticsScore = this.props.ratings.critics_score;
|
|
|
|
var audienceScore = this.props.ratings.audience_score;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<View>
|
|
|
|
<View style={styles.rating}>
|
|
|
|
<Text style={styles.ratingTitle}>Critics:</Text>
|
|
|
|
<Text style={[styles.ratingValue, getStyleFromScore(criticsScore)]}>
|
|
|
|
{getTextFromScore(criticsScore)}
|
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
<View style={styles.rating}>
|
|
|
|
<Text style={styles.ratingTitle}>Audience:</Text>
|
|
|
|
<Text style={[styles.ratingValue, getStyleFromScore(audienceScore)]}>
|
|
|
|
{getTextFromScore(audienceScore)}
|
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
var Cast = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
if (!this.props.actors) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<View>
|
|
|
|
<Text style={styles.castTitle}>Actors</Text>
|
|
|
|
{this.props.actors.map(actor =>
|
|
|
|
<Text key={actor.name} style={styles.castActor}>
|
|
|
|
• {actor.name}
|
|
|
|
</Text>
|
|
|
|
)}
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
contentContainer: {
|
|
|
|
padding: 10,
|
|
|
|
},
|
|
|
|
rightPane: {
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
flex: 1,
|
|
|
|
},
|
|
|
|
movieTitle: {
|
|
|
|
flex: 1,
|
|
|
|
fontSize: 16,
|
2015-03-25 23:22:59 +00:00
|
|
|
fontWeight: '500',
|
2015-02-20 04:10:52 +00:00
|
|
|
},
|
|
|
|
rating: {
|
|
|
|
marginTop: 10,
|
|
|
|
},
|
|
|
|
ratingTitle: {
|
|
|
|
fontSize: 14,
|
|
|
|
},
|
|
|
|
ratingValue: {
|
|
|
|
fontSize: 28,
|
2015-03-25 23:22:59 +00:00
|
|
|
fontWeight: '500',
|
2015-02-20 04:10:52 +00:00
|
|
|
},
|
|
|
|
mpaaWrapper: {
|
|
|
|
alignSelf: 'flex-start',
|
|
|
|
borderColor: 'black',
|
|
|
|
borderWidth: 1,
|
|
|
|
paddingHorizontal: 3,
|
|
|
|
marginVertical: 5,
|
|
|
|
},
|
|
|
|
mpaaText: {
|
|
|
|
fontFamily: 'Palatino',
|
|
|
|
fontSize: 13,
|
2015-03-25 23:22:59 +00:00
|
|
|
fontWeight: '500',
|
2015-02-20 04:10:52 +00:00
|
|
|
},
|
|
|
|
mainSection: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
},
|
|
|
|
detailsImage: {
|
|
|
|
width: 134,
|
|
|
|
height: 200,
|
|
|
|
backgroundColor: '#eaeaea',
|
|
|
|
marginRight: 10,
|
|
|
|
},
|
|
|
|
separator: {
|
|
|
|
backgroundColor: 'rgba(0, 0, 0, 0.1)',
|
|
|
|
height: 1 / PixelRatio.get(),
|
|
|
|
marginVertical: 10,
|
|
|
|
},
|
|
|
|
castTitle: {
|
2015-03-25 23:22:59 +00:00
|
|
|
fontWeight: '500',
|
2015-02-20 04:10:52 +00:00
|
|
|
marginBottom: 3,
|
|
|
|
},
|
|
|
|
castActor: {
|
|
|
|
marginLeft: 2,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = MovieScreen;
|