GroupProductCell.js 5.89 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,
    ImageBackground,
} from 'react-native';



export default class GroupProductCell extends React.Component {

    constructor(props) {
        super(props);
    }

    render() {
        let { resource } = this.props;
        if (!resource) {
            return null;
        }
        let newSrc = getSlicedUrl(resource.get('defaultImages'), 200, 260, 2);
        let deleteLineText = '¥' +  resource.get('marketPrice');
        let productSkn = resource.get('productSkn');
        let activityId = resource.get('activityId');
        return (
          <View>
              <TouchableOpacity activeOpacity={0.8} onPress={() => {
                this.props.didTouchProduct && this.props.didTouchProduct(productSkn,activityId);
              }}>
                <View style={styles.cell}>
                  <View style={styles.left}>
                    <YH_Image style={styles.activityImage} url={newSrc}></YH_Image>
                  </View>
                  <View style={styles.right}>
                    <View style={styles.titleView}>
                      <Text style={styles.title} numberOfLines={2}>{resource.get('productName')}</Text>
                    </View>
                    <View style={styles.priceView}>
                      {1 ? null :
                        <View style={styles.iconTextView} >
                          <Text style={styles.iconText}>{resource.get('peopleNum')}人团</Text>
                        </View>
                      }//暂时注释
                      <Text style={styles.price1}>¥{resource.get('collagePrice')}</Text>
                      <DeleteLineText
                          style={styles.oldPriceContainer}
                          textStyle={styles.price2}
                          lineStyle={styles.deleteLine}
                          text={deleteLineText}
                      />
                    </View>
                    <View style={styles.buttonView}>
                      <ImageBackground
                        style={styles.buttonBackImage}
                        source={require('../images/PT_bt.png')}
                      >
                        <View style={styles.buttonS}>
                          <Text style={styles.button1}>{resource.get('peopleNum')}人成团</Text>
                        </View>
                        <View style={styles.buttonS}>
                          <Text style={styles.button2}>立即购买</Text>
                        </View>
                      </ImageBackground>
                    </View>
                  </View>
                </View>
                <View style={styles.line}/>

              </TouchableOpacity>
          </View>
        );
    }
}

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

let styles = StyleSheet.create({
    cell : {
      width,
      height: 151*DEVICE_WIDTH_RATIO,
      flex: 1,
      flexDirection: 'row',
      alignItems: 'center',
    },

    left :{
      width: 115*DEVICE_WIDTH_RATIO,
      height: 150*DEVICE_WIDTH_RATIO,
    },

    activityImage :{
      width: 100*DEVICE_WIDTH_RATIO,
      height: 130*DEVICE_WIDTH_RATIO,
      marginTop: 10*DEVICE_WIDTH_RATIO,
      marginLeft: 15*DEVICE_WIDTH_RATIO,
    },

    right :{
      width: 260*DEVICE_WIDTH_RATIO,
      height: 150*DEVICE_WIDTH_RATIO,
    },

    titleView: {
      width: 235*DEVICE_WIDTH_RATIO,
      height: 40*DEVICE_WIDTH_RATIO,
      marginTop: 12*DEVICE_WIDTH_RATIO,
      marginLeft: 10*DEVICE_WIDTH_RATIO,
    },

    title: {
      fontSize: 14,
      color: '#444444',
      lineHeight: 19,
    },

    priceView: {
      width: 235*DEVICE_WIDTH_RATIO,
      height: 25*DEVICE_WIDTH_RATIO,
      marginLeft: 10*DEVICE_WIDTH_RATIO,
      flex: 1,
      flexDirection: 'row',
      alignItems: 'center',
    },
    iconTextView: {
      width: 40,
      height: 14,
      justifyContent: 'center',
      alignItems: 'center',
      backgroundColor: '#D0021B',
    },
    iconText: {
      color: 'white',
      fontSize: 8*DEVICE_WIDTH_RATIO,
      textAlign: 'center',
    },

    price1: {
      fontSize: 18*DEVICE_WIDTH_RATIO,
      fontWeight: 'bold',
      color: '#D0021B',
    },

    oldPriceContainer: {
        flexDirection: 'row',
        height: 12*DEVICE_WIDTH_RATIO,
        marginLeft: 10*DEVICE_WIDTH_RATIO,
        marginTop : 1,
    },

    price2: {
      fontSize: 12*DEVICE_WIDTH_RATIO,
      lineHeight: 12*DEVICE_WIDTH_RATIO,
      color: '#B0B0B0',
      alignItems: 'center',
    },

    buttonView: {
      width: 235*DEVICE_WIDTH_RATIO,
      height: 30*DEVICE_WIDTH_RATIO,
      marginBottom: 10*DEVICE_WIDTH_RATIO,
      marginLeft: 10*DEVICE_WIDTH_RATIO,
      flex: 1,
      flexDirection: 'row',
      justifyContent: 'flex-end',
      alignItems: 'center',
    },

    buttonBackImage: {
      width: Math.floor(120*DEVICE_WIDTH_RATIO),
      height: Math.floor(30*DEVICE_WIDTH_RATIO),
      flexDirection: 'row',
      alignItems: 'center',
    },
    buttonS: {
      width: 60*DEVICE_WIDTH_RATIO,
      height: 30*DEVICE_WIDTH_RATIO,
      alignItems: 'center',
      justifyContent: 'center',
    },
    button1: {
      fontSize: 12*DEVICE_WIDTH_RATIO,
      color: '#D0021B',
    },
    button2: {
      fontSize: 12*DEVICE_WIDTH_RATIO,
      color: 'white',
    },

    deleteLine: {
        position: 'absolute',
        top: (12*DEVICE_WIDTH_RATIO / 2) - 0.8,
        left: 0,
        right: 0,
        height: 1,
        backgroundColor: '#b0b0b0',
    },
    line: {
      width,
      height: 1,
      marginLeft: 15*DEVICE_WIDTH_RATIO,
      backgroundColor: '#E0E0E0',
    },
});