PersonalInfoDialog.js 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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. this.props.updateParentState(this.state.input_text, this.state.updateType);
  78. this.setModalVisible(false);
  79. }
  80. componentWillMount() {
  81. this.keyboardDidShowListener = Keyboard.addListener(
  82. "keyboardDidShow",
  83. this._keyboardDidShow
  84. );
  85. this.keyboardDidHideListener = Keyboard.addListener(
  86. "keyboardDidHide",
  87. this._keyboardDidHide
  88. );
  89. }
  90. componentWillUnmount() {
  91. this.keyboardDidShowListener.remove();
  92. this.keyboardDidHideListener.remove();
  93. }
  94. _keyboardDidShow = e => {
  95. this.setState({
  96. keyBoardHeight: 0
  97. });
  98. };
  99. _keyboardDidHide = () => {
  100. this.setState({
  101. keyBoardHeight: 0
  102. });
  103. };
  104. render() {
  105. return (
  106. <Modal
  107. animationType="fade"
  108. transparent={true}
  109. visible={this.state.modalVisible}
  110. onRequestClose={() => {
  111. this.setState({ modalVisible: false });
  112. }}
  113. >
  114. <View
  115. style={{
  116. flex: 1,
  117. width: "100%",
  118. height: "100%",
  119. backgroundColor: "rgba(0, 0, 0, 0.3)",
  120. flexDirection: "column",
  121. justifyContent: "flex-end"
  122. }}
  123. >
  124. <View
  125. style={{
  126. width: "100%",
  127. height: 150,
  128. backgroundColor: "white",
  129. bottom: this.state.keyBoardHeight
  130. }}
  131. >
  132. <View
  133. style={{
  134. height: "100%",
  135. width: "100%",
  136. backgroundColor: "white"
  137. }}
  138. >
  139. <View
  140. style={{
  141. flex: 1,
  142. alignItems: "center",
  143. justifyContent: "center"
  144. }}
  145. >
  146. <Text
  147. style={{
  148. flex: 1,
  149. textAlignVertical: "center",
  150. fontSize: 16,
  151. color: "black"
  152. }}
  153. >
  154. {this.state.title}
  155. </Text>
  156. </View>
  157. <View
  158. style={{
  159. flex: 1,
  160. alignItems: "center",
  161. justifyContent: "center"
  162. }}
  163. >
  164. <TextInput
  165. placeholder={this.state.placeholder}
  166. editable={true} //是否可编辑
  167. autoFocus={true}
  168. style={{
  169. width: "90%",
  170. height: "90%",
  171. borderColor: "black",
  172. borderWidth: 0,
  173. marginLeft: 5,
  174. fontSize: 16
  175. }}
  176. onChangeText={text =>
  177. this.setState({
  178. input_text: text
  179. })
  180. }
  181. />
  182. </View>
  183. <View
  184. style={{
  185. flex: 0.8,
  186. flexDirection: "row",
  187. alignItems: "center"
  188. }}
  189. >
  190. <View
  191. style={{
  192. flex: 5
  193. }}
  194. />
  195. <View
  196. style={{
  197. flex: 2,
  198. height: "100%",
  199. borderRadius: 30,
  200. backgroundColor: this.state.touchcolor,
  201. alignItems: "center"
  202. }}
  203. >
  204. <TouchableOpacity
  205. activeOpacity={1}
  206. onPressIn={() => this.touchDown()}
  207. onPressOut={() => this.touchUp()}
  208. onPress={() => {
  209. this.setParentState();
  210. }}
  211. >
  212. <Text
  213. style={{
  214. height: "100%",
  215. width: "100%",
  216. textAlignVertical: "center",
  217. textAlign: "center",
  218. fontSize: 18,
  219. borderRadius: 30,
  220. color: this.state.touchtextcolor
  221. }}
  222. >
  223. 确定
  224. </Text>
  225. </TouchableOpacity>
  226. </View>
  227. <View style={{ flex: 0.5 }} />
  228. <View
  229. style={{
  230. flex: 2,
  231. height: "100%",
  232. backgroundColor: this.state.touch_cancel_color,
  233. alignItems: "center",
  234. borderRadius: 30
  235. }}
  236. >
  237. <TouchableOpacity
  238. activeOpacity={1}
  239. onPressIn={() => this.touchCancelDown()}
  240. onPressOut={() => this.touchCancelUp()}
  241. onPress={() => this.setModalVisible(false)}
  242. >
  243. <Text
  244. style={{
  245. textAlignVertical: "center",
  246. textAlign: "center",
  247. height: "100%",
  248. width: "100%",
  249. fontSize: 18,
  250. color: this.state.touch_cancel_textcolor
  251. }}
  252. >
  253. 取消
  254. </Text>
  255. </TouchableOpacity>
  256. </View>
  257. <View style={{ flex: 0.5 }} />
  258. </View>
  259. <View style={{ flex: 0.2 }} />
  260. </View>
  261. </View>
  262. </View>
  263. </Modal>
  264. );
  265. }
  266. }