GroupDetailProduct.js 4.19 KB
'use strict';

import React from 'react';
import Immutable, {Map} from 'immutable';
import YH_Image from '../../common/components/YH_Image';
import {getSlicedUrl} from '../../classify/utils/Utils';
import DeleteLineText from '../../common/components/DeleteLineText';

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



export default class GroupDetailProduct extends React.Component {

    constructor(props) {
        super(props);
    }

    render() {
        let { resource ,perpleNum} = this.props;
        if(!resource) return null;
        let productIcon = resource.productIcon ? getSlicedUrl(resource.productIcon,109*DEVICE_WIDTH_RATIO, 141*DEVICE_WIDTH_RATIO, 2) : '';
        let productGroupPrice = resource.productGroupPrice;
        let productName = resource.productName;
        let productSalePrice = resource.productSalePrice;
        let productSkn = resource.productSkn;

        return (
          <View style={styles.container}>
            <YH_Image style={styles.image} url={productIcon}></YH_Image>
            <View style={styles.right}>
              <View style={styles.titleView}>
                <Text style={styles.title} numberOfLines={2}>{productName}</Text>
              </View>
              <View style={styles.priceView}>
                <Text style={styles.iconText}>{perpleNum}人团</Text>
                <Text style={styles.price1}>{productGroupPrice}</Text>
              </View>
              <View style={styles.subPriceView}>
                <Text style={styles.subPrice1}>单人购买:</Text>
                <DeleteLineText
                    style={styles.oldPriceContainer}
                    textStyle={styles.price2}
                    lineStyle={styles.deleteLine}
                    text={productSalePrice}
                />
              </View>
            </View>
          </View>
        );
    }
}

let {width, height} = Dimensions.get('window');
const DEVICE_WIDTH_RATIO = width / 375;

let styles = StyleSheet.create({
    container: {
        width: 300*DEVICE_WIDTH_RATIO,
        height: 141*DEVICE_WIDTH_RATIO,
        shadowColor: 'rgba(0,0,0,0.4)',
        shadowOffset: {width: 0, height: 5},
        shadowOpacity: 0.5,
        shadowRadius: 5,
        elevation: 4,
        flexDirection: 'row',
        backgroundColor: 'white',
    },
    image: {
      width: 109*DEVICE_WIDTH_RATIO,
      height: 141*DEVICE_WIDTH_RATIO,
    },
    right: {
      width: 191*DEVICE_WIDTH_RATIO,
      height: 141*DEVICE_WIDTH_RATIO,
      flexDirection: 'column',
    },
    titleView: {
      width: 174*DEVICE_WIDTH_RATIO,
      height: 32*DEVICE_WIDTH_RATIO,
      marginTop: 17*DEVICE_WIDTH_RATIO,
      marginLeft: 10*DEVICE_WIDTH_RATIO,
    },

    title: {
      fontSize: 12,
      color: '#444444',
      lineHeight: 19,
    },
    subPriceView: {
      width: 174*DEVICE_WIDTH_RATIO,
      height: 14*DEVICE_WIDTH_RATIO,
      marginLeft: 10*DEVICE_WIDTH_RATIO,
      marginTop: 5*DEVICE_WIDTH_RATIO,
      flexDirection: 'row',
      alignItems: 'center',
    },
    subPrice1: {
      fontSize: 10,
      color: '#B0B0B0',
      lineHeight: 10*DEVICE_WIDTH_RATIO,
    },
    priceView: {
      width: 174*DEVICE_WIDTH_RATIO,
      height: 21*DEVICE_WIDTH_RATIO,
      marginLeft: 10*DEVICE_WIDTH_RATIO,
      marginTop: 33*DEVICE_WIDTH_RATIO,
      flexDirection: 'row',
      alignItems: 'center',
    },

    iconText: {
      width: 40*DEVICE_WIDTH_RATIO,
      height: 14*DEVICE_WIDTH_RATIO,
      backgroundColor: '#D0021B',
      color: 'white',
      fontSize: 9,
      textAlign: 'center',
      lineHeight: 14*DEVICE_WIDTH_RATIO,
    },

    price1: {
      fontSize: 18,
      marginLeft: 10*DEVICE_WIDTH_RATIO,
      color: '#444444',
      lineHeight: 18*DEVICE_WIDTH_RATIO,
      fontWeight: 'bold',
    },

    oldPriceContainer: {
        flexDirection: 'row',
        height: 12,
        marginTop: 2,
    },

    price2: {
      fontSize: 12,
      lineHeight: 12,
      color: '#B0B0B0',
      alignItems: 'center',
    },
    deleteLine: {
        position: 'absolute',
        top: (16 / 2) - 3,
        left: 0,
        right: 0,
        height: 1,
        backgroundColor: '#b0b0b0',
    },
});