InvoiceCell.js 2.4 KB
'use strict';

import React, {Component} from 'react';
import Immutable, {Map} from 'immutable';

import ReactNative, {
    View,
    Text,
    Image,
    ListView,
    StyleSheet,
    Dimensions,
    TouchableOpacity,
    InteractionManager,
    Platform
} from 'react-native';

export default class InvoiceCell extends Component {

    constructor(props) {
        super(props);
        this.renderCell = this.renderCell.bind(this);
    }

    renderCell(left, right, last = false) {
        let color = last
            ? '#d0021b'
            : 'black';
        return (
            <View style={styles.cellContainer}>
                <View style={styles.leftPart}>
                    <Text style={[styles.text, {fontFamily: 'STHeitiSC-Light'}]}>{left}</Text>
                </View>
                <View style={styles.rightPart}>
                    <Text style={[styles.text, {
                            color
                        }]}>{right}</Text>
                </View>
            </View>
        )
    }

    render() {
        let {type, title, contentValue, showInvoice, pdfUrl} = this.props.data.toJS();
        let invoiceType = type == '1' ? '纸质发票' : '电子发票' ;
        let showLast = showInvoice && type == '2' && pdfUrl && pdfUrl.length;
        return (
            <View style={styles.container}>
                {this.renderCell('发票信息', invoiceType, false)}
                {this.renderCell('发票抬头', title, false)}
                {this.renderCell('发票内容', contentValue, false)}
                {showLast ? this.renderCell('', '点击查看电子发票', true) : null}
            </View>
        );
    }
}

let {width, height} = Dimensions.get('window');

let styles = StyleSheet.create({
    container: {
        width: width,
        flexDirection: 'column',
        backgroundColor: 'white',
        alignItems: 'center',
        borderColor: '#f0f0f0',
        borderBottomWidth: 10,
        paddingTop: 9,
        paddingBottom: 9
    },

    cellContainer: {
        width: width - 30,
        height: 20,
        flexDirection: 'row'
    },

    leftPart: {
        flex: 1,
        justifyContent: 'flex-start',
        alignItems: 'center',
        flexDirection: 'row'
    },

    rightPart: {
        flex: 1,
        justifyContent: 'flex-end',
        alignItems: 'center',
        flexDirection: 'row'
    },

    text: {
        fontSize: 14,
        color: '#444444'
    }
});