EditorTalk.js
3.62 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
'use strict';
import ReactNative from 'react-native';
import React, { Component } from 'react'
import Immutable from 'immutable';
const {
TouchableOpacity,
Image,
Text,
Dimensions,
StyleSheet
} = ReactNative;
export default class EditorTalk extends Component {
constructor(props) {
super(props);
this._handleData = this._handleData.bind(this);
this._handleParamsJumpWithUrl = this._handleParamsJumpWithUrl.bind(this);
this._handleTextStyleError = this._handleTextStyleError.bind(this);
}
shouldComponentUpdate(nextProps) {
if (Immutable.is(nextProps.htmlcontent, this.props.htmlcontent)) {
return false;
} else {
return true;
}
}
_handleData() {
const htmlcontent = this.props.htmlcontent ? this.props.htmlcontent.toJS() : {};
let mainTitlelist = htmlcontent && htmlcontent.shareMainTitle && htmlcontent.shareMainTitle.textlist ? htmlcontent.shareMainTitle.textlist : [{'text':'"潮流口令"'}];
let subTitlelist = htmlcontent && htmlcontent.shareSubTitle && htmlcontent.shareSubTitle.textlist ? htmlcontent.shareSubTitle.textlist : [];
let contextlist = htmlcontent && htmlcontent.context && htmlcontent.context.textlist ? htmlcontent.context.textlist: [];
let url = htmlcontent && htmlcontent.url ? htmlcontent.url : '';
return {
mainTitlelist,
subTitlelist,
contextlist,
url
}
}
_handleParamsJumpWithUrl(id, name, url) {
// 为埋点提供参数组装
// 后期请将所有的点击事件由 resourceJumpWithUrl 修改为自己独有的事件
// 由于多数组件都使用的 resourceJumpWithUrl ,埋点传参无法正常进行
let params = {
F_ID: id,
F_NAME: name,
F_URL: url
};
this.props.resourceJumpWithUrl && this.props.resourceJumpWithUrl(url, 'talk', params);
}
_handleTextStyleError(item, index) {
let newItem = item;
if (item.text) {
newItem = Object.assign({}, item)
delete newItem['text'];
delete newItem['size'];
}
return <Text key={index} style={newItem}>{item.text}</Text>
}
render() {
let { mainTitlelist, subTitlelist, contextlist, url } = this._handleData();
let image = this.props.image;
let {resource} = this.props;
if (!resource || resource.size === 0) {
return null;
}
return (
<TouchableOpacity
activeOpacity={1}
style={{width: width, height: sliderHeight}}
onPress={() => {
this._handleParamsJumpWithUrl(resource.get('template_id'), resource.get('template_name'), url);
}}
>
<Image
source={image}
style={styles.backgroundImage}
/>
<Text style={styles.bannerMainTitle}>{mainTitlelist.map(this._handleTextStyleError)}</Text>
<Text style={styles.bannerSubTitle}>
{subTitlelist.map(this._handleTextStyleError)}
</Text>
<Text style={styles.bannerContext}>
{
contextlist.map(this._handleTextStyleError)
}
</Text>
</TouchableOpacity>
)
}
}
let { width } = Dimensions.get('window');
const DEVICE_WIDTH_RATIO = width / 375;
let sliderHeight = 90 * DEVICE_WIDTH_RATIO;
let styles = StyleSheet.create({
backgroundImage: {
width: width,
height: '100%',
position:'absolute',
marginTop: 0,
marginBottom:0
},
bannerMainTitle: {
fontSize: 16,
color: '#000000',
textAlign:'center',
marginTop:14,
},
bannerSubTitle: {
fontSize:12,
color: '#000000',
textAlign:'center',
marginTop:8,
},
bannerContext: {
fontSize:9,
color: '#000000',
textAlign:'center',
marginTop:6,
}
});