RegionModal.js 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  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. ScrollView,
  22. TouchableHighlight,
  23. DeviceEventEmitter,
  24. findNodeHandle,
  25. UIManager
  26. } from "react-native";
  27. import CitysData from "../../data/citys.json";
  28. type Props = {};
  29. export default class RegionModal extends Component<Props> {
  30. state = {
  31. modalVisible: false,
  32. cityjson: JSON.parse(JSON.stringify(CitysData.provinces)),
  33. provinces: CitysData.provinces[0].provinces,
  34. provinces_views: [],
  35. provinces_views_index: -1,
  36. city_data: CitysData.provinces[0].citys,
  37. city_views: [],
  38. city_views_index: -1,
  39. click_provinces_name: "",
  40. click_city_name: "",
  41. text_height: -1
  42. };
  43. render() {
  44. return (
  45. <Modal
  46. animationType="slide"
  47. transparent={true}
  48. visible={this.state.modalVisible}
  49. onRequestClose={() => {
  50. this.setState({ modalVisible: false });
  51. }}
  52. >
  53. <View
  54. style={{
  55. flex: 1,
  56. flexDirection: "column"
  57. }}
  58. >
  59. <TouchableOpacity
  60. style={{
  61. flex: 3.2,
  62. backgroundColor: "rgba(0, 0, 0, 0.5)",
  63. width: "100%"
  64. }}
  65. activeOpacity={1}
  66. onPress={() =>
  67. this.setState({
  68. modalVisible: false
  69. })
  70. }
  71. />
  72. <View
  73. style={{
  74. flex: 2,
  75. backgroundColor: "white",
  76. flexDirection: "column",
  77. justifyContent: "center",
  78. alignItems: "center",
  79. width: "100%"
  80. }}
  81. >
  82. <View
  83. style={{
  84. flex: 1,
  85. flexDirection: "row",
  86. alignItems: "center",
  87. justifyContent: "center"
  88. }}
  89. >
  90. <TouchableOpacity
  91. style={{
  92. flex: 1
  93. }}
  94. activeOpacity={1}
  95. onPress={() => this.cancel()}
  96. >
  97. <View
  98. style={{
  99. flex: 1,
  100. alignItems: "center",
  101. justifyContent: "center"
  102. }}
  103. >
  104. <Text
  105. style={{
  106. fontSize: 20,
  107. color: "rgba(59, 59, 59, 1)",
  108. textAlignVertical: "center"
  109. }}
  110. >
  111. 取消
  112. </Text>
  113. </View>
  114. </TouchableOpacity>
  115. <View style={{ flex: 3.5 }} />
  116. <TouchableOpacity
  117. style={{
  118. flex: 1
  119. }}
  120. activeOpacity={1}
  121. onPress={() => this.commit()}
  122. >
  123. <View
  124. style={{
  125. flex: 1,
  126. alignItems: "center",
  127. justifyContent: "center"
  128. }}
  129. >
  130. <Text
  131. style={{
  132. fontSize: 20,
  133. color: "rgba(59, 59, 59, 1)",
  134. textAlignVertical: "center"
  135. }}
  136. >
  137. 完成
  138. </Text>
  139. </View>
  140. </TouchableOpacity>
  141. </View>
  142. <View
  143. style={{
  144. flex: 0.01,
  145. width: "90%",
  146. // backgroundColor: "rgba(246, 247, 248, 1)"
  147. backgroundColor: "red"
  148. }}
  149. />
  150. <View
  151. style={{
  152. flex: 5,
  153. flexDirection: "row"
  154. }}
  155. >
  156. <View
  157. style={{
  158. flex: 1
  159. }}
  160. >
  161. <ScrollView
  162. style={{
  163. flex: 1
  164. }}
  165. ref={view => (this.provinces_scroll = view)}
  166. onLayout={() => this.provinces_onlayout()}
  167. >
  168. {this.scroll_item()}
  169. </ScrollView>
  170. </View>
  171. <View
  172. style={{
  173. flex: 1
  174. }}
  175. >
  176. <ScrollView
  177. ref={view => (this.city_scroll = view)}
  178. onLayout={() => this.city_onlayout()}
  179. style={{
  180. flex: 1
  181. }}
  182. >
  183. {this.scroll_city_item(this.state.city_data)}
  184. </ScrollView>
  185. </View>
  186. </View>
  187. </View>
  188. </View>
  189. </Modal>
  190. );
  191. }
  192. provinces_onlayout() {
  193. if (this.state.provinces_views_index != -1) {
  194. this.provinces_scroll.scrollTo({
  195. x: 0,
  196. y: (this.state.text_height + 20) * this.state.provinces_views_index,
  197. duration: 500
  198. });
  199. }
  200. }
  201. city_onlayout() {
  202. if (this.state.city_views_index != -1) {
  203. this.city_scroll.scrollTo({
  204. x: 0,
  205. y: (this.state.text_height + 20) * this.state.city_views_index,
  206. duration: 500
  207. });
  208. }
  209. }
  210. commit() {
  211. if (
  212. this.state.provinces_views_index == -1 ||
  213. this.state.city_views_index == -1
  214. ) {
  215. alert("请选择完整地区");
  216. } else {
  217. this.props.cityscommit(
  218. this.state.click_provinces_name,
  219. this.state.click_city_name
  220. );
  221. this.setModalVisible(false);
  222. }
  223. }
  224. cancel() {
  225. this.setModalVisible(false);
  226. }
  227. setModalVisible(visible) {
  228. this.setState({
  229. modalVisible: visible
  230. });
  231. }
  232. scroll_item() {
  233. // console.log(this.state.cityjson);
  234. for (var i = 0; i < this.state.cityjson.length; i++) {
  235. let index = i;
  236. let textstyle = null;
  237. if (this.state.provinces_views_index == i) {
  238. textstyle = styles.item_text_click;
  239. } else {
  240. textstyle = styles.item_text;
  241. }
  242. this.state.provinces_views[i] = (
  243. <Text
  244. style={textstyle}
  245. key={i}
  246. onPress={() => this.get_city(index)}
  247. onLayout={event => this.onLayout(event)}
  248. >
  249. {CitysData.provinces[i].provinceName}
  250. </Text>
  251. );
  252. }
  253. return this.state.provinces_views;
  254. }
  255. onLayout = event => {
  256. if (this.state.text_height == -1) {
  257. this.setState({
  258. text_height: event.nativeEvent.layout.height
  259. });
  260. } else {
  261. }
  262. };
  263. get_city(index) {
  264. console.log(index);
  265. this.setState({
  266. city_data: CitysData.provinces[index].citys,
  267. text_color: "blue",
  268. provinces_views_index: index,
  269. city_views_index: -1,
  270. click_provinces_name: CitysData.provinces[index].provinceName,
  271. click_city_name: ""
  272. });
  273. this.city_scroll.scrollTo({
  274. x: 0,
  275. y: 0,
  276. duration: 100
  277. });
  278. // this.forceUpdate();
  279. }
  280. scroll_city_item(citys) {
  281. this.state.city_views = [];
  282. for (var i = 0; i < citys.length; i++) {
  283. let index = i;
  284. if (this.state.city_views_index == i) {
  285. textstyle = styles.item_text_click;
  286. } else {
  287. textstyle = styles.item_text;
  288. }
  289. this.state.city_views[i] = (
  290. <Text style={textstyle} key={i} onPress={() => this.click_citys(index)}>
  291. {citys[i].citysName}
  292. </Text>
  293. );
  294. }
  295. return this.state.city_views;
  296. }
  297. click_citys(index) {
  298. this.setState({
  299. city_views_index: index,
  300. click_city_name: this.state.city_data[index].citysName
  301. });
  302. }
  303. }
  304. const styles = StyleSheet.create({
  305. item_text: {
  306. color: "rgba(77, 77, 77, 1)",
  307. fontSize: 20,
  308. justifyContent: "center",
  309. alignItems: "center",
  310. marginTop: 20,
  311. width: "100%",
  312. textAlignVertical: "center",
  313. textAlign: "center"
  314. },
  315. item_text_click: {
  316. color: "rgba(59, 149, 243, 1)",
  317. fontSize: 20,
  318. justifyContent: "center",
  319. alignItems: "center",
  320. marginTop: 20,
  321. width: "100%",
  322. textAlignVertical: "center",
  323. textAlign: "center"
  324. }
  325. });