RegionModal.js 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  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.05,
  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. showsVerticalScrollIndicator={false}
  168. >
  169. {this.scroll_item()}
  170. </ScrollView>
  171. </View>
  172. <View
  173. style={{
  174. flex: 1
  175. }}
  176. >
  177. <ScrollView
  178. ref={view => (this.city_scroll = view)}
  179. onLayout={() => this.city_onlayout()}
  180. style={{
  181. flex: 1
  182. }}
  183. showsVerticalScrollIndicator={false}
  184. >
  185. {this.scroll_city_item(this.state.city_data)}
  186. </ScrollView>
  187. </View>
  188. </View>
  189. </View>
  190. </View>
  191. </Modal>
  192. );
  193. }
  194. componentWillMount() {
  195. for (var i = 0; i < this.state.cityjson.length; i++) {
  196. if (this.props.provinceName === CitysData.provinces[i].provinceName) {
  197. this.state.provinces_views_index = i;
  198. this.state.click_provinces_name = this.props.provinceName;
  199. this.state.city_data = CitysData.provinces[i].citys;
  200. for (var j = 0; j < this.state.city_data.length; j++) {
  201. if (this.props.citys === this.state.city_data[j].citysName) {
  202. this.state.city_views_index = j;
  203. this.state.click_city_name = this.props.citys;
  204. }
  205. }
  206. }
  207. }
  208. }
  209. provinces_onlayout() {
  210. if (this.state.provinces_views_index != -1) {
  211. this.provinces_scroll.scrollTo({
  212. x: 0,
  213. y: (this.state.text_height + 20) * this.state.provinces_views_index,
  214. duration: 500
  215. });
  216. }
  217. }
  218. city_onlayout() {
  219. if (this.state.city_views_index != -1) {
  220. this.city_scroll.scrollTo({
  221. x: 0,
  222. y: (this.state.text_height + 20) * this.state.city_views_index,
  223. duration: 500
  224. });
  225. }
  226. }
  227. commit() {
  228. if (
  229. this.state.provinces_views_index == -1 ||
  230. this.state.city_views_index == -1
  231. ) {
  232. alert("请选择完整地区");
  233. } else {
  234. this.props.cityscommit(
  235. this.state.click_provinces_name,
  236. this.state.click_city_name
  237. );
  238. this.setModalVisible(false);
  239. }
  240. }
  241. cancel() {
  242. this.setModalVisible(false);
  243. }
  244. setModalVisible(visible) {
  245. this.setState({
  246. modalVisible: visible
  247. });
  248. }
  249. scroll_item() {
  250. // console.log(this.state.cityjson);
  251. for (var i = 0; i < this.state.cityjson.length; i++) {
  252. let index = i;
  253. let textstyle = null;
  254. if (this.state.provinces_views_index == i) {
  255. textstyle = styles.item_text_click;
  256. } else {
  257. textstyle = styles.item_text;
  258. }
  259. this.state.provinces_views[i] = (
  260. <Text
  261. style={textstyle}
  262. key={i}
  263. onPress={() => this.get_city(index)}
  264. onLayout={event => this.onLayout(event)}
  265. >
  266. {CitysData.provinces[i].provinceName}
  267. </Text>
  268. );
  269. }
  270. return this.state.provinces_views;
  271. }
  272. onLayout = event => {
  273. if (this.state.text_height == -1) {
  274. this.setState({
  275. text_height: event.nativeEvent.layout.height
  276. });
  277. } else {
  278. }
  279. };
  280. get_city(index) {
  281. this.setState({
  282. city_data: CitysData.provinces[index].citys,
  283. text_color: "blue",
  284. provinces_views_index: index,
  285. city_views_index: -1,
  286. click_provinces_name: CitysData.provinces[index].provinceName,
  287. click_city_name: ""
  288. });
  289. this.city_scroll.scrollTo({
  290. x: 0,
  291. y: 0,
  292. duration: 100
  293. });
  294. // this.forceUpdate();
  295. }
  296. scroll_city_item(citys) {
  297. this.state.city_views = [];
  298. for (var i = 0; i < citys.length; i++) {
  299. let index = i;
  300. console.log("this.state.city_views_index:" + this.state.city_views_index);
  301. if (this.state.city_views_index == i) {
  302. textstyle = styles.item_text_click;
  303. } else {
  304. textstyle = styles.item_text;
  305. }
  306. this.state.city_views[i] = (
  307. <Text style={textstyle} key={i} onPress={() => this.click_citys(index)}>
  308. {citys[i].citysName}
  309. </Text>
  310. );
  311. }
  312. return this.state.city_views;
  313. }
  314. click_citys(index) {
  315. this.setState({
  316. city_views_index: index,
  317. click_city_name: this.state.city_data[index].citysName
  318. });
  319. }
  320. }
  321. const styles = StyleSheet.create({
  322. item_text: {
  323. color: "rgba(77, 77, 77, 1)",
  324. fontSize: 20,
  325. justifyContent: "center",
  326. alignItems: "center",
  327. marginTop: 20,
  328. width: "100%",
  329. textAlignVertical: "center",
  330. textAlign: "center"
  331. },
  332. item_text_click: {
  333. color: "rgba(59, 149, 243, 1)",
  334. fontSize: 20,
  335. justifyContent: "center",
  336. alignItems: "center",
  337. marginTop: 20,
  338. width: "100%",
  339. textAlignVertical: "center",
  340. textAlign: "center"
  341. }
  342. });