如何封装React-Native的Modal

React-Native中的Modal组件可以用来覆盖包含React Native根视图的原生视图,是RN经常需要用到的一个组件,其使用的方式却很难受。

  class Demo extends Component {
    static state = {
      visible: false,
    }

    render() {
      <View>
        <Model
          visible={this.state.visible}
          onRequestClose={() => {}}
        />
      </View>
    }
  }

如果使用RN初始的Modal组件,每次使用Modal都需要在View里面插入一个Modal,还得根据state来控制Modal的呈现,调用很繁琐。而一个页面可能有多个Modal组件,会使代码非常的乱。
而对于前端来说,调用一个这样的控件,我们最习惯的方式则是Dialog.show()。如果最方便的实现这种调用Modal的方式呢?这里我推荐使用Decorator修饰器来包装Component达到我们的需求。

在RN种引入Decorator

因为Decorator是ES7的一个提案,所以RN并没有默认支持这个功能,我们需要为他添加一些配置。首先将依赖的babel plugin包装进去

npm i --save-dev babel-plugin-transform-decorators-legacy

然后在.babelrc中添加相应的plugin。

{
"presets": ["react-native"],
"plugins": ["transform-decorators-legacy"]
}

这样我们就能在RN中使用Decorator了。

创建一个withModal的Decorator

通过Decorator来实现我们需要的功能,我的思路是将所需要调用Modal的Component父级包一层View,然后在Component同级render一个Modal。使用Modal的方式为this.props.showModal('modalName', params).then(data => {}),具体实现代码如下。

// withModal.js
import React, { Component } from 'react';
import {
  View,
  Modal,
} from 'react-native'
import InputModal from './InputModal'; // 封装的子Modal

const Modals = {
  'InputModal': InputModal,
};

export default function withModal(Component) {
  return class ModalComponent extends Component {
    constructor(props) {
      super(props);
      this.state = {
        visible: false, // Modal的visible
        renderedModal: null, // Modal所渲染
      };
      this.showModal = this.showModal.bind(this);
      this.hideModal = this.hideModal.bind(this);
    }
    
    // 隐藏Modal
    hideModal(value) {
      this.setState({
        visible: false,
      });
      this.resolve(value);
    }
    
    // 显示Model
    showModal(modalName, params) {
      this.setState({
        visible: true,
        RenderedModal: Modals[modalName],
        params,
      });
      // return一个promise对象
      return new Promise((resolve, reject) => {
        this.resolve = resolve;
      })
    }

    render() {
      const {
        visible,
        RenderedModal,
        params,
      } = this.state;
      return (
        <View>
          <Component
            {...this.props}
            showModal={this.showModal} // 将showModal方法传入组件的props
          />
          <Modal
            animationType="slide"
            visible={visible}
            onRequestClose={() => {}}            
          >
            {RenderedModal ? <RenderedModal
              {...params}
              hideModal={this.hideModal} // 将hideModal方法传入子控件
            /> : null}
          </Modal>
        </View>
      )
    }    
  }
}

这里我们还需要一个简单Input子控件

// InputModal.js
import React, { Component } from 'react';
import {
  View,
  TextInput,
  TouchableOpacity,
  Text,
} from 'react-native';

export default class InputModal extends Component {
  constructor(props) {
    super(props);
    this.onSubmit = this.onSubmit.bind(this);
  }

  onSubmit() {
    this.props.hideModal(this.value); // 关闭Modal并将值导出
  }

  render() {
    const {
      placeholder,
      defaultValue,
    } = this.props;
    return (
      <View>
        <TextInput
          onChangeText={value => {this.value = value}}
          placeholder={placeholder || ''}
          defaultValue={defaultValue || ''}
        />
        <TouchableOpacity onPress={this.onSubmit}>
          <Text>确定</Text>
        </TouchableOpacity>
      </View>
    )
  }
}

使用withModal修饰器

在withModal写好后,我们只需要在组件类上使用这个修饰器就可以在props。
需要注意的是,这种封装方式,会使原组件多一层父级View,很可能会影响到样式呈现,所以推荐只在page页的最顶层Component使用这个修饰器,然后通过prop将方法传给子组件,这样能对样式的影响降低。现在我们来对一个简单的Component使用withModal。

import React, { Component } from 'react';
import {
  Text,
  View,
  TouchableOpacity,
} from 'react-native';
import withModal from './withModal';

// 只要使用这个Decorator,就能在组件的props中得到一个showModal方法
@withModal
class HomePage extends Component {
  constructor(props) {
    super(props);
    this.showInputModal = this.showInputModal.bind(this);
    this.state = {
      text: '',
    }
  }

  showInputModal() {
    // 需要使用的Modal是InputModal,然后将需要给传给modla的props对象作为参数传下去,并且接收返回值
    this.props.showModal('InputModal', {
      placeholder: '请填写内容',
      defaultValue: this.state.text,
    }).then(value => {
      this.setState({
        text: value,
      })
    })
  }

  render() {
    return (
      <View>
        <TouchableOpacity onPress={this.showInputModal}>
          <Text>弹出model</Text>
          <Text>{this.state.text}</Text>
        </TouchableOpacity>
      </View>
    );
  }
}

简单的效果如下


效果图

在这个demo中我使用的是一个固定的InputModal,当然通过改造也能传入Jsx来达到想要的效果。
这是我在使用RN过程中觉得比较便利的方式方式,如果你有更好的想法,欢迎来讨论。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容