React Native地址挑选器功能实现方法

本文主要为大家详细介绍了react native仿地址挑选器功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能帮助到大家。

产品经理:“你明白吧,这里向右划可以出菜单,然后需要一个闪烁的动画,还有,我想这个tab可以拉下来,你懂吧?

设计师:“别废话,把你要抄的产品给我看下。”

接下来,我们仿一下别人家的地址挑选器

React Native地址挑选器功能实现方法

import React, { Component, PropTypes } from 'react';import { ViewPropTypes, StyleSheet, View, TouchableOpacity, TouchableNativeFeedback, Platform, Animated, Text} from 'react-native';export default class SelectCityTabBar extends Component { //属性声名 static propTypes = {  goToPage: PropTypes.func,  activeTab: PropTypes.number,  tabs: PropTypes.array,  backgroundColor: PropTypes.string,  activeTextColor: PropTypes.string,  inactiveTextColor: PropTypes.string,  textStyle: Text.propTypes.style,  tabStyle: ViewPropTypes.style,  renderTab: PropTypes.func,  underlineStyle: ViewPropTypes.style, }; //默认属性 static defaultProps = {  activeTextColor: '#FA3D4F',  inactiveTextColor: 'black',  backgroundColor: null, } renderTab(name, page, isTabActive, onPressHandler) {  const { activeTextColor, inactiveTextColor, textStyle, } = this.props;  const textColor = isTabActive ? activeTextColor : inactiveTextColor;  const fontWeight = isTabActive ? 'bold' : 'normal';  const viewStyle = isTabActive ? [styles.tab, { borderBottomWidth: Constant.sizepiderLarge, borderColor: Constant.colorPrimary }] : styles.tab;  if (Platform.OS !== 'ios') {   return  onPressHandler(page)}   >               {name}              }  return  onPressHandler(page)}  >            {name}         ; } render() {  return (       {this.props.tabs.map((name, page) => {     const isTabActive = this.props.activeTab === page;     const renderTab = this.props.renderTab || this.renderTab;     return this.renderTab(name, page, isTabActive, this.props.goToPage);    })}     ); }}const styles = StyleSheet.create({ tab: {  alignItems: 'center',  justifyContent: 'center',  paddingBottom: 10,  marginLeft: 10, }, tabs: {  height: 50,  flexDirection: 'row',  justifyContent: 'space-around',  borderWidth: 1,  borderTopWidth: 0,  borderLeftWidth: 0,  borderRightWidth: 0,  borderColor: '#ccc', },});

登录后复制

npm react-native-scrollable-tab-view 组件

import React, { Component } from 'react';import { StyleSheet, View, ScrollView, Dimensions, TouchableOpacity, InteractionManager, Platform, UIManager, Text} from 'react-native';import ScrollableTabView from 'react-native-scrollable-tab-view';import SelectCityTabBar from './SelectCityTabBar'import AREA_JSON from '../../util/area.json';const { height, width } = Dimensions.get('window');export default class AddressSelect extends Component { static defaultProps = {  commitFun: function (value) {   console.log(value);  },  dissmissFun: function () {  },  lastAddress: null, }; constructor(props) {  super(props);  if (Platform.OS === 'android') {   UIManager.setLayoutAnimationEnabledExperimental(true)  }  const { lastAddress } = props;  let selectAddress = this.initAddress(lastAddress);  this.state = {   selectAddress  } } initAddress(lastAddress) {  let selectAddress = [   {    value: null,    label: null,    children: AREA_JSON,   }, {    value: null,    label: null,    children: null,   }, {    value: null,    label: null,    children: null,   }];  let array = null;  function fun(array, value) {   for (let item of array) {    if (item.value + '' === value + '') {     return item;    }   }  }  try {   selectAddress = selectAddress.map((item, index) => {    let result = fun(array ? array : AREA_JSON, lastAddress[index].value);    if (result.children) {     array = result.children;    }    return result;   });  } catch (e) {   console.log('-----e-', e);  }  return selectAddress } /**  * 列表行  * @param item  * @param i  * @returns {XML}  */ renderListItem(item, i) {  let itemStyle = styles.itemStyle;  let textStyle = styles.itemText;  let { selectAddress } = this.state;  if (item.label === selectAddress[i].label) {   itemStyle = [itemStyle];   textStyle = [textStyle, { color: 'red' }]  }  return (    {     this.pressItem(item, i)    }}   >    {item.label}     ) } /**  * 点击列表事件  * @param item 选中数据  * @param i 选中行数  */ pressItem(item, i) {  let { selectAddress } = this.state;  const initObj = {   value: null,   label: null,   children: null,  }  let tempIndex = 0;  if (i === 0) {   selectAddress[0] = item;   selectAddress[1] = initObj;   selectAddress[2] = initObj;   tempIndex = 1  } else if (i === 1) {   selectAddress[1] = item;   selectAddress[2] = initObj;   tempIndex = 2  } else {   selectAddress[2].value = item.value;   selectAddress[2].label = item.label;   tempIndex = 2   let address = [    {     label: selectAddress[0].label,     value: selectAddress[0].value    },    {     label: selectAddress[1].label,     value: selectAddress[1].value    },    {     label: selectAddress[2].label,     value: selectAddress[2].value    }   ]   this.props.commitFun && this.props.commitFun(address);   this.props.dissmissFun && this.props.dissmissFun();   return null;  }  this.setState({ selectAddress });  InteractionManager.runAfterInteractions(() => {   this.tabView.goToPage(tempIndex)  }) } render() {  const { selectAddress } = this.state;  return (            所在地区         {      this.tabView = tabView;     }}     renderTabBar={() => }    >     {selectAddress.map((obj, i) => {      let array = (i === 0) ? AREA_JSON : selectAddress[i - 1].children;      if (array) {       return (                 {array && array.map((obj2, j) => {          return this.renderListItem(obj2, i)         })}               )      }     })}         ); }}const styles = StyleSheet.create({ container: {  height: height * 0.6,  backgroundColor: '#F5FCFF', }, scrollStyleList: {  width: width,  marginBottom: Constant.sizeMarginDefault,  marginTop: Constant.sizeMarginDefault, }, itemStyle: {  marginTop: 5,  width: width,  height: 35,  marginLeft: Constant.sizeMarginDefault,  justifyContent: 'center' }, itemText: {  fontSize: 15,  color: '#333333' },

登录后复制

使用方法:

import React, {Component} from 'react';import { StyleSheet, View, TouchableOpacity, Alert, ScrollView, ART, TouchableHighlight, ListView, Dimensions, Text} from 'react-native';import {ReactNavComponent, Widget} from 'rn-yunxi';import AddressSelect from '../../app-widget/address-select/index'export default class extends React.Component { render() {  return (    this.openAddressSelect()}>    地址选择     ); } openAddressSelect() {  Widget.Popup.show( // 这边使用自己封装的modal嵌套地址选择器    this.onSelectArea(area)}    dissmissFun={() => Widget.Popup.hide()}   />,   {    animationType: 'slide-up', backgroundColor: '#00000000', onMaskClose: () => {    Widget.Popup.hide()   }   }) } onSelectArea = (area) => {  Log(area) }};

登录后复制

数据类型格式

[ {  "value": "110000000000",  "children": [   {    "value": "110100000000",    "children": [     {      "value": "110101000000",      "label": "东城区"     },     {      "value": "110102000000",      "label": "西城区"     },     {      "value": "110105000000",      "label": "朝阳区"     },     {      "value": "110106000000",      "label": "丰台区"     },     {      "value": "110107000000",      "label": "石景山区"     },     {      "value": "110108000000",      "label": "海淀区"     },     {      "value": "110109000000",      "label": "门头沟区"     },     {      "value": "110111000000",      "label": "房山区"     },     {      "value": "110112000000",      "label": "通州区"     },     {      "value": "110113000000",      "label": "顺义区"     },     {      "value": "110114000000",      "label": "昌平区"     },     {      "value": "110115000000",      "label": "大兴区"     },     {      "value": "110116000000",      "label": "怀柔区"     },     {      "value": "110117000000",      "label": "平谷区"     },     {      "value": "110118000000",      "label": "密云区"     },     {      "value": "110119000000",      "label": "延庆区"     }    ],    "label": "北京市"   }  ],  "label": "北京市" }]

登录后复制

相关推荐:

React Native跨域资源加载出错如何解决

React Native 采用Fetch方式发送POST请求

实例详解React Native时间转换格式工具类

以上就是React Native地址挑选器功能实现方法的详细内容,更多请关注【创想鸟】其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2790147.html

(0)
上一篇 2025年3月8日 18:51:57
下一篇 2025年2月23日 13:00:39

AD推荐 黄金广告位招租... 更多推荐

相关推荐

  • React Native竖向轮播组件的封装详解

    本文主要介绍了react native 通告消息竖向轮播组件的封装,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能帮助到大家。 本文实例为大家分享了React Native通告消息竖向轮播组件的封装代码,供大家参考,具体内容如下 …

    2025年3月8日
    200
  • store优化React组件的方法详解

    本文主要介绍了使用store来优化react组件的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧,希望能帮助到大家。 在使用 React 编写组件的时候,我们常常会碰到两个不同的组件之间需要共享状态情况,…

    编程技术 2025年3月8日
    200
  • jQuery实现验证码功能实例分享

    很多编程语言都能实现验证码功能,本文主要介绍了jquery实现验证码功能的示例代码,具有很好的参考价值,下面跟着小编一起来看下吧,希望能帮助到大家。 效果图: 代码如下: nbsp;html>   Document  #code{ w…

    2025年3月8日
    200
  • jquery实现table排序功能实例分享

    本文主要介绍了jquery实现的table排序功能,涉及基于jquery的页面元素属性动态操作及鼠标事件响应相关技巧,需要的朋友可以参考下,希望能帮助到大家。 nbsp;html>Document   p { width: 1024p…

    2025年3月8日
    200
  • jquery实现颜色拾取功能

    我们知道ps有颜色逝去功能,本文主要介绍jquery仿ps颜色拾取功能的实例,具有很好的参考价值。下面跟着小编一起来看下吧,希望能帮助到大家。 1.效果展示 2.html代码:index.html nbsp;html>  Title …

    2025年3月8日
    200
  • 两种jQuery实现选项卡功能的方法

    实现选项卡有很多方法,但是万变不离其宗,思路很重要,本文主要介绍了jquery两种方法写选项卡的实例,具有很好的参考价值。下面跟着小编一起来看下吧,希望能帮助到大家。 效果图: 代码如下: nbsp;html>    JQuery 源…

    2025年3月8日
    200
  • 构建React组件最全方法

    我非常喜欢使用react,因为我觉得它最大优点就是足够简单。 在简单和容易之间还是存在区别 的,我的意思是react也很简单。当然你需要些时间来了解它,当你掌握其核心内容后,其他的事都是水到渠成的了。下文将介绍比较难的部分。 耦合&…

    编程技术 2025年3月8日
    200
  • React 和Webpack构建打包优化实例详解

    本文主要介绍了浅谈react + webpack 构建打包优化,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧,希望能帮助到大家。 使用 babel-react-optimize 对 React 代码进行优化 检…

    2025年3月8日
    200
  • laravel5.3 vue 实现收藏夹功能

    本文主和大家介绍laravel5.3 vue 实现收藏夹功能,本文通过实例代码给大家介绍的非常详细,需要的朋友可以参考下,希望能帮助到大家。 下面通过本文给大家介绍laravel5.3 vue 实现收藏夹功能,具体代码如下所述: { “pr…

    2025年3月8日 编程技术
    200
  • jQuery事件绑定功能基础讲解

    本文主要介绍了jquery实现的事件绑定功能,结合简单表单验证实例分析了jquery事件绑定的实现与使用方法,需要的朋友可以参考下,希望能帮助到大家。 HTML正文: 用户名:密 码: 登录后复制 Javascript操作代码: //获取焦…

    2025年3月8日
    200

发表回复

登录后才能评论