PersonalInfoDialog.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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. touchDown() {
  51. this.setState({
  52. touchcolor: "#58A8FA",
  53. touchtextcolor: "white"
  54. });
  55. }
  56. touchUp() {
  57. this.setState({
  58. touchcolor: "white",
  59. touchtextcolor: "#58A8FA"
  60. });
  61. }
  62. touchCancelDown() {
  63. this.setState({
  64. touch_cancel_color: "#58A8FA",
  65. touch_cancel_textcolor: "white"
  66. });
  67. }
  68. touchCancelUp() {
  69. this.setState({
  70. touch_cancel_color: "white",
  71. touch_cancel_textcolor: "#58A8FA"
  72. });
  73. }
  74. setParentState() {
  75. let data;
  76. if (this.state.updateType == 1) {
  77. data = { nickName: this.state.input_text };
  78. } else if (this.state.updateType == 2) {
  79. data = { schoolName: this.state.input_text };
  80. }
  81. this.props.updateParentState(data);
  82. this.setModalVisible(false);
  83. }
  84. render() {
  85. return (
  86. <Modal
  87. animationType="fade"
  88. transparent={true}
  89. visible={this.state.modalVisible}
  90. onRequestClose={() => {
  91. this.setState({ modalVisible: false });
  92. }}
  93. >
  94. <View
  95. style={{
  96. flex: 1,
  97. width: "100%",
  98. height: "100%",
  99. backgroundColor: "rgba(0, 0, 0, 0.3)",
  100. flexDirection: "column",
  101. justifyContent: "flex-end"
  102. }}
  103. >
  104. <View
  105. style={{
  106. width: "100%",
  107. height: "20%",
  108. backgroundColor: "white"
  109. }}
  110. >
  111. <View
  112. style={{
  113. height: 150,
  114. width: "100%",
  115. backgroundColor: "white"
  116. }}
  117. >
  118. <View
  119. style={{
  120. flex: 1,
  121. alignItems: "center",
  122. justifyContent: "center"
  123. }}
  124. >
  125. <Text
  126. style={{
  127. flex: 1,
  128. textAlignVertical: "center",
  129. fontSize: 25,
  130. color: "black"
  131. }}
  132. >
  133. {this.state.title}
  134. </Text>
  135. </View>
  136. <View
  137. style={{
  138. flex: 1,
  139. alignItems: "center",
  140. justifyContent: "center"
  141. }}
  142. >
  143. <TextInput
  144. placeholder={this.state.placeholder}
  145. editable={true} //是否可编辑
  146. style={{
  147. width: "90%",
  148. height: "90%",
  149. borderColor: "black",
  150. borderWidth: 0,
  151. marginLeft: 5,
  152. fontSize: 20
  153. }}
  154. onChangeText={text => this.setState({ input_text: text })}
  155. />
  156. </View>
  157. <View
  158. style={{
  159. flex: 0.8,
  160. flexDirection: "row",
  161. alignItems: "center"
  162. }}
  163. >
  164. <View
  165. style={{
  166. flex: 4
  167. }}
  168. />
  169. <View
  170. style={{
  171. flex: 2,
  172. backgroundColor: this.state.touchcolor,
  173. height: "100%",
  174. borderRadius: 30
  175. }}
  176. >
  177. <TouchableOpacity
  178. activeOpacity={1}
  179. onPressIn={() => this.touchDown()}
  180. onPressOut={() => this.touchUp()}
  181. onPress={() => {
  182. this.setParentState();
  183. }}
  184. >
  185. <Text
  186. style={{
  187. textAlignVertical: "center",
  188. textAlign: "center",
  189. fontSize: 25,
  190. borderRadius: 30,
  191. color: this.state.touchtextcolor
  192. }}
  193. >
  194. 确定
  195. </Text>
  196. </TouchableOpacity>
  197. </View>
  198. <View style={{ flex: 0.5 }} />
  199. <View
  200. style={{
  201. flex: 2,
  202. backgroundColor: this.state.touch_cancel_color,
  203. height: "100%",
  204. borderRadius: 30
  205. }}
  206. >
  207. <TouchableOpacity
  208. activeOpacity={1}
  209. onPressIn={() => this.touchCancelDown()}
  210. onPressOut={() => this.touchCancelUp()}
  211. onPress={() => this.setModalVisible(false)}
  212. >
  213. <Text
  214. style={{
  215. textAlignVertical: "center",
  216. textAlign: "center",
  217. fontSize: 25,
  218. color: this.state.touch_cancel_textcolor
  219. }}
  220. >
  221. 取消
  222. </Text>
  223. </TouchableOpacity>
  224. </View>
  225. <View style={{ flex: 0.5 }} />
  226. </View>
  227. <View style={{ flex: 0.2 }} />
  228. </View>
  229. </View>
  230. </View>
  231. </Modal>
  232. );
  233. }
  234. }