小程序模态框封装

小程序模态框封装

写在前面

好久没更新啦~~最近确实有点懒了,上完班都不想写东西,小小检讨一下。最近在工作过程中涉及到了小程序的开发需求,在经过一段时间的“艰苦奋斗”后,尝试封装了模态框组件,详情如下:

基本使用

  1. 第一种方法:

    • 在json文件中对组件进行引用
    "f-dialog": "/components/modelDialog/modelDialog"
    
    • 在全局对象中方法导入:
    wx.fang.showDialog({
        type:"alert",     
        title:"标题",
        content:"这个是提示框" ,
        success: (res) => {
            if (res.confirm) {
                console.log('用户点击确定')
            } else if (res.cancel) {
                console.log('用户点击取消')
            }
        }
    })
    
    • 在使用的时候要在页面上使用这个组件
    <f-dialog></f-dialog>
    
  2. 第二种方法

    在json引入组件后直接写入组件

    <f-dialog 
        showModel="{{showModel}}"
        type="confirm"
        title="你好"
        title-color="yellow"
        show-title="{{true}}"
        content="456789"
        content-color="blue"
        confirm-text="yes"
        confirm-color="red"
        cancel-text="no"
        cancel-color="blue"
        locked="{{true}}"
        bind:fangconfirm="onClickConfirm"
        bind:fangcancel="onClickCancel"
    ></f-dialog>
    

基本功能

属性 功能 默认值
showModel 是否显示模态框 true
title 标题内容 标题
content 主体内容 Dialog
confirmText 确认文字 确定
confirmColor 确认文字颜色 #48A0DC
cancelText 取消文字 取消
cancelColor 取消文字颜色 #000
locked 锁定蒙版 true
titleColor 标题颜色 #000
showTitle 显示标题 true
type 模态框类型 confirm/alert
contentColor 主体内容字体颜色 rgba(89,108,142,1)

外部样式类

外部样式类名 说明
f-class 设置dialog的整体样式
f-mask 设置mask的样式
f-title 设置标题的样式
f-msg 设置文本的样式
f-cancel-class 设置取消按钮的样式
f-confirm-class 设置确认按钮的样式

模态框事件

事件名称 说明 返回值
bind:fangConfirm 当点击确定时触发的事件 confirm
bind:fangCancel 当点击取消时触发的事件 cancel
bind:fangMask 当点击模板的时候触发的事件 mask

设置子节点

我们在使用的组件的时候,可以根据使用场景,自由的在遮罩层组件内插入 imageviewtext 等子节点,当然,你也可以在其中插入 自定义组件 。 (默认会居中显示在文本模块)

例如:

<f-dialog>
    <image class="abc" src="../xxx/xxx.png"></image>    
</f-dialog>

源码:

本着对大家负责的态度,上源码交流学习

WXML

<!--components/modleDialog/modelDialog.wxml-->
<view class="dialog_container f-class " wx:if="{{isShow}}">
  <!-- 蒙版 -->
  <view 
    class="mask f-mask" 
    bindtap="clickMask" 
    data-status="{{locked}}"
    catchtouchmove="move"
  ></view>
  <view class="dialog_content" animation="{{animationData}}">
    <view 
      class="dialog_content_title f-title" 
      style="color:{{titleColor}}"
      wx:if="{{showTitle}}"  
    >{{title}}</view>
    <view class="dialog_content_msg f-msg" style="color: {{contentColor}}">
      <slot></slot>
      {{content}}
    </view>
    <view class="dialog_content_btn">
      <view 
        class="dialog_content_cancle f-cancel-class" 
        bindtap="onClickCancel"
        style="color: {{cancelColor}}"
        wx:if="{{judgeType}}"
      >{{cancelText}}</view>
      <view 
        class="dialog_content_confirm f-confirm-class" 
        bindtap="onClickConfirm"
        style="color: {{confirmColor}}"
      >{{confirmText}}</view>
    </view>
  </view>
</view>

JS

// components/modleDialog/modelDialog.js
Component({
  /**
   * 组件的属性列表
   */
  externalClasses: ['f-class', 'f-mask','f-title','f-msg','f-cancel-class','f-confirm-class'],
  properties: {
    showModel: {
      type: Boolean,
      value: true // 默认打开弹窗
    },
    title: {
      type: String,
      value: '标题'
    },
    content: {
      type: String,
      value: 'Dialog'
    },
    confirmText: {
      type: String,
      value: '确定'
    },
    confirmColor: {
      type: String,
      value: '#48A0DC'
    },
    cancelText: {
      type: String,
      value: '取消'
    },
    cancelColor: {
      type: String,
      value: '#000'
    },
    locked: {
      type: Boolean,
      value: true // 锁定蒙版,点击后无反应
    },
    titleColor: {
      type: String,
      value: '#000'
    },
    showTitle: {
      type: Boolean,
      value: true
    },
    type: {
      type: String,
      value: 'confirm'
    },
    contentColor: {
      type: String,
      value: 'rgba(89,108,142,1)'
    }
  },

  /**
   * 组件的初始数据
   */
  data: {
    judgeType: true,
    success: null,
    fail: null
  },
  observers: {
    'showModel': function(showModel) {
      if (showModel) {
        this._showOrCloseDialog("open")
      } else {
        this._showOrCloseDialog("close")
      }
    }
  },
  /**
   * 组件的生命周期
   */
  lifetimes:{
    attached: function() {
      if(this.properties.showModel) {
        this._showOrCloseDialog("open")
      }
      this.initDialog()
      // 在组件实例进入页面节点树时执行
      if (this.data.type == 'alert') {
        this.data.judgeType = false
        this.setData({
          judgeType: this.data.judgeType
        })
      } else if (this.data.type == 'confirm') {
        this.data.judgeType = true
        this.setData({
          judgeType: this.data.judgeType
        })
      } else {
        return
      }
    },
  },
  /**
   * 组件的方法列表
   */
  methods: {
    initDialog() {
      wx.fang = wx.fang || {}
      wx.fang.showDialog = (options) => {
        const {
          type = 'alert',
          title = '123',
          showTitle = true,
          titleColor= '#45526b',
          content = '',
          locked = true,
          confirmText = '确定',
          contentColor = 'rgba(89,108,142,1)',
          cancelColor = '#45526b',
          cancelText = '取消',
          confirmColor = '#3683d6',
          success = null,
          fail = null,
        } = options;
        this.setData({
          type,
          title,
          showTitle,
          content,
          titleColor,
          locked,
          confirmText,
          cancelColor,
          cancelText,
          confirmColor,
          contentColor,
          showModel: true,
          fail,
          success
        });
        return this;
      }
    },
    /**
     * 点击取消的事件
     */
    onClickCancel(e) {
      const {
        success
      } = this.data;
      success && success({
        confirm: false,
        cancel: true,
        errMsg: 'showDialog: success'
      });
      let detail = 'cancel'
      this.triggerEvent('fangCancel',detail)
    },
    /***
     * 点击确定的事件
     */
    onClickConfirm(e) {
      const {
        success
      } = this.data;
      let detail = 'confirm'
      success && success({
        confirm: true,
        cancel: false,
        errMsg: 'showDialog: success'
      });
      this.triggerEvent('fangConfirm',detail)
    },
    /**
     * 点击蒙版事件
     */
    clickMask(e) {
      let detail = 'mask'
      if(!this.data.locked) {
        this.data.showModel = false
        this.setData({
          showModel: this.data.showModel
        })
      }
      this.triggerEvent('fangMask',detail)
    },
    /**
     * 禁止背景滑动事件
     */
    move() {},
      /**
       * 动画函数
       */
    _showOrCloseDialog: function(currentStatu) {
      var that = this;
      /* 动画部分 */
      var animation = wx.createAnimation({
        duration: 200, //动画时长
        timingFunction: "linear", //线性
        delay: 0 //0则不延迟
      });
      this.animation = animation;
      // 执行第一组动画
      animation.opacity(0).rotateX(-100).step();
      // 导出动画对象赋给数据对象储存
      that.setData({
        animationData: animation.export()
      })
      // 设置定时器到指定时候后,执行第二组动画
      setTimeout(function() {
        // 执行第二组动画
        animation.opacity(1).rotateX(0).step();
        // 给数据对象储存的第一组动画,更替为执行完第二组动画的动画对象
        that.setData({
          animationData: animation
        })
        //关闭
        if (currentStatu == "close") {
          that.setData({
            isShow: false
          });
        }
      }.bind(this), 200)
      // 显示
      if (currentStatu == "open") {
        that.setData({
          isShow: true
        });
      }
    }
  }
})

WXSS

/* components/modleDialog/modelDialog.wxss */
.mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background:rgba(0,0,0,0.6);
  z-index: 1000;
}
.dialog_content {
  position: fixed;
  top: 35%;
  left: 50%;
  margin-left: -275rpx;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 550rpx;
  background-color: #fff;
  z-index: 1999;
  border-radius: 15rpx;
}
.dialog_content_title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50rpx;
  padding-top: 25rpx;
  font-size: 35rpx;
  font-weight: 700;
  font-family:PingFangSC-Regular;
}
.dialog_content_msg {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50rpx 10rpx 50rpx 10rpx;
  overflow: hidden;
  white-space: normal;
  word-break: break-all;
  font-family:PingFangSC-Regular;
}
.dialog_content_btn {
  width: 100%;
  height: 80rpx;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2rpx solid #ccc;
  font-family:PingFangSC-Regular;
}
.dialog_content_cancle {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-bottom-left-radius: 15rpx;
}
.dialog_content_confirm {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #48A0DC;
  border-left: 1rpx solid #e7e7e7;
  border-bottom-right-radius: 15rpx;
}

小结

本次分享一个小程序的模态框封装,具体可以参考vant组件库,封装过程有问题没有解决:蒙版无法遮挡tabbar的问题,这也是历史遗留问题了,我的方案是直接把tabbar隐藏掉,如果有更好的解决方案欢迎小伙伴提出。
Tip:本文写得不是特别详细,适合有小程序基础的小伙伴食用,有问题可在评论区提出哈~~~~
END

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

推荐阅读更多精彩内容