Setting.js
5.15 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
'use strict';
import React from 'react';
import ReactNative from 'react-native';
import LoadingIndicator from '../../../common/components/LoadingIndicator';
const {
View,
Text,
Image,
Alert,
TextInput,
TouchableOpacity,
StyleSheet,
Platform,
Dimensions,
} = ReactNative;
export default class Setting extends React.Component {
static propTypes = {
}
constructor(props) {
super(props);
this.nameLength = 0;
this.signLength = 0;
this.showTip = false;
}
_renderSeparator() {
return (
<View style={styles.separator}/>
);
}
_showAlert(currentLength, maxLength) {
if (currentLength >= maxLength && !this.showTip) {
this.showTip = true;
Alert.alert('抱歉', `超出${maxLength}字符最长限制`, [
{text: '好', onPress: () => this.showTip = false}
]);
}
}
render() {
let {nickName, signature, isFetching} = this.props.setting;
return (
<View style={styles.container}>
<Text style={styles.tag}>昵称</Text>
<View style={styles.nameContainer}>
<TextInput
style={styles.name}
placeholder={'昵称'}
value={nickName}
autoFocus={true}
autoCapitalize={'none'}
autoCorrect={false}
maxLength={20}
onChangeText={(text) => {
this.nameLength = text.length;
if (this.nameLength > 20) {
text = text.substring(0, 21);
this._showAlert(this.nameLength, 20);
}
this.props.nickNameEdited(text);
}}
onKeyPress={(event) => {
this._showAlert(this.nameLength, 20);
}}
selectionColor={'black'}
/>
<TouchableOpacity
onPress={() => {
this.props.nickNameEdited('');
}}
style={{
width: 41,
height: 44,
justifyContent: 'center',
alignItems: 'center',
}}
>
{nickName.length ? <Image
source={require('../../images/user/delete.png')}
/> : null}
</TouchableOpacity>
</View>
{this._renderSeparator()}
<Text style={styles.tag}>签名</Text>
<TextInput
ref={(c) => this.signText = c}
style={styles.sign}
placeholder={'请输入个性签名'}
multiline={true}
value={signature}
autoCapitalize={'none'}
autoCorrect={false}
maxLength={40}
onChangeText={(text) => {
this.signLength = text.length;
if (this.signLength > 40) {
text = text.substring(0, 41);
this._showAlert(this.signLength, 40);
}
this.props.signEdited(text);
}}
onKeyPress={(event) => {
this._showAlert(this.signLength, 40);
}}
selectionColor={'black'}
/>
{this._renderSeparator()}
<Text style={[styles.tips, {marginTop: 25,}]}>TIPS:</Text>
<Text style={styles.tips}>1.社区专属昵称,仅在社区显示</Text>
<Text style={styles.tips}>2.个性签名最多40字,请控制字数</Text>
<LoadingIndicator
isVisible={isFetching}
/>
</View>
);
}
}
let {width, height} = Dimensions.get('window');
let navbarHeight = (Platform.OS === 'android') ? 50 : 64;
let styles = StyleSheet.create({
container: {
backgroundColor: 'white',
},
nameContainer: {
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
},
name: {
fontFamily: 'Helvetica Light',
fontSize: 15,
marginLeft: 15,
width: width - 55,
height: 44,
},
sign: {
fontFamily: 'Helvetica Light',
fontSize: 15,
height: 150,
padding: 15,
},
separator: {
height: 0.5,
backgroundColor: '#e0e0e0',
},
tag: {
fontFamily: 'Helvetica Light',
fontSize: 15,
margin: 15,
marginBottom: 0,
},
tips: {
fontFamily: 'Helvetica Light',
fontSize: 13,
margin: 6,
marginLeft: 15,
color: '#b0b0b0',
}
});