PersonalInfoDialog.js 6.2 KB

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