PersonalInfoDialog.js 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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. Keyboard,
  19. Button,
  20. StatusBar,
  21. Modal,
  22. TouchableHighlight,
  23. DeviceEventEmitter
  24. } from "react-native";
  25. type Props = {};
  26. export default class PersonalInfoDialog extends Component<Props> {
  27. state = {
  28. modalVisible: false,
  29. title: "title",
  30. placeholder: "",
  31. touchcolor: "white",
  32. touchtextcolor: "#58A8FA",
  33. touch_cancel_color: "white",
  34. touch_cancel_textcolor: "#58A8FA",
  35. input_text: "",
  36. updateType: 0, //1修改昵称,2修改学校名称,
  37. keyBoardHeight: 0
  38. };
  39. setModalVisible(visible, type) {
  40. this.setState({
  41. modalVisible: visible,
  42. updateType: type,
  43. input_text: ""
  44. });
  45. }
  46. setInfo(mytitle, holder) {
  47. this.setState({
  48. title: mytitle,
  49. placeholder: holder
  50. });
  51. }
  52. touchDown() {
  53. this.setState({
  54. touchcolor: "#58A8FA",
  55. touchtextcolor: "white"
  56. });
  57. }
  58. touchUp() {
  59. this.setState({
  60. touchcolor: "white",
  61. touchtextcolor: "#58A8FA"
  62. });
  63. }
  64. touchCancelDown() {
  65. this.setState({
  66. touch_cancel_color: "#58A8FA",
  67. touch_cancel_textcolor: "white"
  68. });
  69. }
  70. touchCancelUp() {
  71. this.setState({
  72. touch_cancel_color: "white",
  73. touch_cancel_textcolor: "#58A8FA"
  74. });
  75. }
  76. setParentState() {
  77. let data;
  78. if (this.state.updateType == 1) {
  79. data = { nickName: this.state.input_text };
  80. } else if (this.state.updateType == 2) {
  81. data = {
  82. schoolName: this.state.input_text
  83. };
  84. }
  85. this.props.updateParentState(data);
  86. this.setModalVisible(false);
  87. }
  88. componentWillMount() {
  89. this.keyboardDidShowListener = Keyboard.addListener(
  90. "keyboardDidShow",
  91. this._keyboardDidShow
  92. );
  93. this.keyboardDidHideListener = Keyboard.addListener(
  94. "keyboardDidHide",
  95. this._keyboardDidHide
  96. );
  97. }
  98. componentWillUnmount() {
  99. this.keyboardDidShowListener.remove();
  100. this.keyboardDidHideListener.remove();
  101. }
  102. _keyboardDidShow = e => {
  103. this.setState({
  104. keyBoardHeight: 0
  105. });
  106. };
  107. _keyboardDidHide = () => {
  108. this.setState({
  109. keyBoardHeight: 0
  110. });
  111. };
  112. render() {
  113. return (
  114. <Modal
  115. animationType="fade"
  116. transparent={true}
  117. visible={this.state.modalVisible}
  118. onRequestClose={() => {
  119. this.setState({ modalVisible: false });
  120. }}
  121. >
  122. <View
  123. style={{
  124. flex: 1,
  125. width: "100%",
  126. height: "100%",
  127. backgroundColor: "rgba(0, 0, 0, 0.3)",
  128. flexDirection: "column",
  129. justifyContent: "flex-end"
  130. }}
  131. >
  132. <View
  133. style={{
  134. width: "100%",
  135. height: 150,
  136. backgroundColor: "white",
  137. bottom: this.state.keyBoardHeight
  138. }}
  139. >
  140. <View
  141. style={{
  142. height: "100%",
  143. width: "100%",
  144. backgroundColor: "white"
  145. }}
  146. >
  147. <View
  148. style={{
  149. flex: 1,
  150. alignItems: "center",
  151. justifyContent: "center"
  152. }}
  153. >
  154. <Text
  155. style={{
  156. flex: 1,
  157. textAlignVertical: "center",
  158. fontSize: 16,
  159. color: "black"
  160. }}
  161. >
  162. {this.state.title}
  163. </Text>
  164. </View>
  165. <View
  166. style={{
  167. flex: 1,
  168. alignItems: "center",
  169. justifyContent: "center"
  170. }}
  171. >
  172. <TextInput
  173. placeholder={this.state.placeholder}
  174. editable={true} //是否可编辑
  175. style={{
  176. width: "90%",
  177. height: "90%",
  178. borderColor: "black",
  179. borderWidth: 0,
  180. marginLeft: 5,
  181. fontSize: 16
  182. }}
  183. onChangeText={text =>
  184. this.setState({
  185. input_text: text
  186. })
  187. }
  188. />
  189. </View>
  190. <View
  191. style={{
  192. flex: 0.8,
  193. flexDirection: "row",
  194. alignItems: "center"
  195. }}
  196. >
  197. <View
  198. style={{
  199. flex: 5
  200. }}
  201. />
  202. <View
  203. style={{
  204. flex: 2,
  205. height: "100%",
  206. borderRadius: 30,
  207. backgroundColor: this.state.touchcolor,
  208. alignItems: "center"
  209. }}
  210. >
  211. <TouchableOpacity
  212. activeOpacity={1}
  213. onPressIn={() => this.touchDown()}
  214. onPressOut={() => this.touchUp()}
  215. onPress={() => {
  216. this.setParentState();
  217. }}
  218. >
  219. <Text
  220. style={{
  221. height: "100%",
  222. width: "100%",
  223. textAlignVertical: "center",
  224. textAlign: "center",
  225. fontSize: 18,
  226. borderRadius: 30,
  227. color: this.state.touchtextcolor
  228. }}
  229. >
  230. 确定
  231. </Text>
  232. </TouchableOpacity>
  233. </View>
  234. <View style={{ flex: 0.5 }} />
  235. <View
  236. style={{
  237. flex: 2,
  238. height: "100%",
  239. backgroundColor: this.state.touch_cancel_color,
  240. alignItems: "center",
  241. borderRadius: 30
  242. }}
  243. >
  244. <TouchableOpacity
  245. activeOpacity={1}
  246. onPressIn={() => this.touchCancelDown()}
  247. onPressOut={() => this.touchCancelUp()}
  248. onPress={() => this.setModalVisible(false)}
  249. >
  250. <Text
  251. style={{
  252. textAlignVertical: "center",
  253. textAlign: "center",
  254. height: "100%",
  255. width: "100%",
  256. fontSize: 18,
  257. color: this.state.touch_cancel_textcolor
  258. }}
  259. >
  260. 取消
  261. </Text>
  262. </TouchableOpacity>
  263. </View>
  264. <View style={{ flex: 0.5 }} />
  265. </View>
  266. <View style={{ flex: 0.2 }} />
  267. </View>
  268. </View>
  269. </View>
  270. </Modal>
  271. );
  272. }
  273. }