PersonalInfoDialog.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. * @flow
  7. */
  8. import React, { Component } from "react";
  9. import {
  10. Platform,
  11. StyleSheet,
  12. Text,
  13. View,
  14. Image,
  15. TouchableOpacity,
  16. ImageBackground,
  17. TextInput,
  18. Button,
  19. StatusBar,
  20. Modal,
  21. TouchableHighlight,
  22. DeviceEventEmitter
  23. } from "react-native";
  24. type Props = {};
  25. export default class PersonalInfoDialog extends Component<Props> {
  26. state = {
  27. modalVisible: false,
  28. title: "title",
  29. placeholder: "",
  30. touchcolor: "white",
  31. touchtextcolor: "#58A8FA",
  32. touch_cancel_color: "white",
  33. touch_cancel_textcolor: "#58A8FA",
  34. input_text: "",
  35. updateType: 0 //1修改昵称,2修改学校名称
  36. };
  37. setModalVisible(visible, type) {
  38. this.setState({
  39. modalVisible: visible,
  40. updateType: type,
  41. input_text: ""
  42. });
  43. }
  44. setInfo(mytitle, holder) {
  45. this.setState({
  46. title: mytitle,
  47. placeholder: holder
  48. });
  49. }
  50. cancel() {
  51. let data = { updateNS_show: false };
  52. this.props.updateParentState(data);
  53. }
  54. touchDown() {
  55. this.setState({
  56. touchcolor: "#58A8FA",
  57. touchtextcolor: "white"
  58. });
  59. }
  60. touchUp() {
  61. this.setState({
  62. touchcolor: "white",
  63. touchtextcolor: "#58A8FA"
  64. });
  65. }
  66. touchCancelDown() {
  67. this.setState({
  68. touch_cancel_color: "#58A8FA",
  69. touch_cancel_textcolor: "white"
  70. });
  71. }
  72. touchCancelUp() {
  73. this.setState({
  74. touch_cancel_color: "white",
  75. touch_cancel_textcolor: "#58A8FA"
  76. });
  77. }
  78. setParentState(bool) {
  79. let data;
  80. if (this.state.updateType == 1) {
  81. data = { nickName: this.state.input_text, updateNS_show: bool };
  82. } else if (this.state.updateType == 2) {
  83. data = { schoolName: this.state.input_text, updateNS_show: bool };
  84. }
  85. this.props.updateParentState(data);
  86. }
  87. render() {
  88. if (this.props.updateNS_show) {
  89. return (
  90. <View
  91. style={{
  92. flex: 1,
  93. width: "100%",
  94. height: "100%",
  95. alignItems: "center",
  96. justifyContent: "center",
  97. backgroundColor: "rgba(0, 0, 0, 0.3)",
  98. flexDirection: "row",
  99. position: "absolute"
  100. }}
  101. >
  102. <View
  103. style={{
  104. flex: 111,
  105. alignItems: "center",
  106. justifyContent: "center",
  107. backgroundColor: "white"
  108. }}
  109. >
  110. <View
  111. style={{
  112. height: 150,
  113. width: "100%",
  114. backgroundColor: "white"
  115. }}
  116. >
  117. <View
  118. style={{
  119. flex: 1,
  120. alignItems: "center",
  121. justifyContent: "center"
  122. }}
  123. >
  124. <Text
  125. style={{
  126. flex: 1,
  127. textAlignVertical: "center",
  128. fontSize: 25,
  129. color: "black"
  130. }}
  131. >
  132. {this.state.title}
  133. </Text>
  134. </View>
  135. <View
  136. style={{
  137. flex: 1,
  138. alignItems: "center",
  139. justifyContent: "center"
  140. }}
  141. >
  142. <TextInput
  143. placeholder={this.state.placeholder}
  144. editable={true} //是否可编辑
  145. style={{
  146. width: "90%",
  147. height: "90%",
  148. borderColor: "black",
  149. borderWidth: 0,
  150. marginLeft: 5,
  151. fontSize: 20
  152. }}
  153. onChangeText={text => this.setState({ input_text: text })}
  154. />
  155. </View>
  156. <View
  157. style={{
  158. flex: 0.8,
  159. flexDirection: "row",
  160. alignItems: "center"
  161. }}
  162. >
  163. <View
  164. style={{
  165. flex: 4
  166. }}
  167. />
  168. <View
  169. style={{
  170. flex: 2,
  171. backgroundColor: this.state.touchcolor,
  172. height: "100%",
  173. borderRadius: 30
  174. }}
  175. >
  176. <TouchableOpacity
  177. activeOpacity={1}
  178. onPressIn={() => this.touchDown()}
  179. onPressOut={() => this.touchUp()}
  180. onPress={() => {
  181. this.setParentState(false);
  182. }}
  183. >
  184. <Text
  185. style={{
  186. textAlignVertical: "center",
  187. textAlign: "center",
  188. fontSize: 25,
  189. borderRadius: 30,
  190. color: this.state.touchtextcolor
  191. }}
  192. >
  193. 确定
  194. </Text>
  195. </TouchableOpacity>
  196. </View>
  197. <View style={{ flex: 0.5 }} />
  198. <View
  199. style={{
  200. flex: 2,
  201. backgroundColor: this.state.touch_cancel_color,
  202. height: "100%",
  203. borderRadius: 30
  204. }}
  205. >
  206. <TouchableOpacity
  207. activeOpacity={1}
  208. onPressIn={() => this.touchCancelDown()}
  209. onPressOut={() => this.touchCancelUp()}
  210. onPress={() => this.cancel()}
  211. >
  212. <Text
  213. style={{
  214. textAlignVertical: "center",
  215. textAlign: "center",
  216. fontSize: 25,
  217. color: this.state.touch_cancel_textcolor
  218. }}
  219. >
  220. 取消
  221. </Text>
  222. </TouchableOpacity>
  223. </View>
  224. <View style={{ flex: 0.5 }} />
  225. </View>
  226. <View style={{ flex: 0.2 }} />
  227. </View>
  228. </View>
  229. </View>
  230. );
  231. } else {
  232. return null;
  233. }
  234. }
  235. }