CouponViewModal.js
1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
'use strict';
import React from 'react';
import ReactNative from 'react-native';
const {AppRegistry, StyleSheet, Image, View, Dimensions, TouchableOpacity, Modal, Text, TouchableWithoutFeedback,
} = ReactNative;
import YH_Image from '../../common/components/YH_Image';
export default class CouponViewModal extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<Modal visible={this.props.show} animationType={'none'} transparent={true} onRequestClose={() => { }}>
<TouchableOpacity style={styles.modalContainer} activeOpacity={1} onPress={() => {
this.props.showCouponView && this.props.showCouponView(false);
}}>
<View style={styles.shareView}>
<TouchableOpacity activeOpacity={1} onPress={() => {
this.props.didTouchCouponBanner && this.props.didTouchCouponBanner();
}}>
<YH_Image resizeMode={'contain'} style={styles.imageView} url={this.props.data}></YH_Image>
</TouchableOpacity>
</View>
</TouchableOpacity>
</Modal>
);
}
};
let {width, height} = Dimensions.get('window');
const DEVICE_WIDTH_RATIO = width / 375;
let styles = StyleSheet.create({
modalContainer: {
flex: 1,
backgroundColor: 'rgba(0, 0, 0, 0.6)',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
},
shareView: {
flex: 1,
alignItems: 'center',
},
imageView : {
width: 280*DEVICE_WIDTH_RATIO,
height: 402*DEVICE_WIDTH_RATIO,
},
});