element-ui Tag、Dialog組件源碼分析整理筆記(五)

Tag 標籤組件

<script>
  export default {
    name: 'ElTag',
    props: {
      text: String,
      closable: Boolean, //是否可關閉
      type: String, //主題
      hit: Boolean, //是否有邊框描邊
      disableTransitions: Boolean, //是否禁用漸變更畫
      color: String, //背景色
      size: String  //尺寸
    },
    methods: {
      handleClose(event) {
        event.stopPropagation();
        this.$emit('close', event);
      }
    },
    computed: {
      tagSize() {
        return this.size || (this.$ELEMENT || {}).size;
      }
    },
    render(h) {
      const classes = [ 'el-tag', this.type ? `el-tag--${this.type}` : '',
        this.tagSize ? `el-tag--${this.tagSize}` : '',
        {'is-hit': this.hit}
      ];
      //最外層包裹的span
      const tagEl = (<span class={classes} style={{backgroundColor: this.color}}>
        { this.$slots.default }
        {
          // closable存在時,返回關閉圖標
          this.closable && <i class="el-tag__close el-icon-close" on-click={this.handleClose}></i>
        }
      </span>);
      // disableTransitions存在的話,用transition標籤包裹,產生漸變更畫
      return this.disableTransitions ? tagEl : <transition name="el-zoom-in-center">{ tagEl }</transition>;
    }
  };
</script>

Dialog 對話框組件

<template>
    <!--transition組件能夠給任何元素和組件添加進入/離開過渡-->
  <transition
    name="dialog-fade"
    @after-enter="afterEnter"
    @after-leave="afterLeave">
     <!--包裹dialog的div-->
    <div class="el-dialog__wrapper" v-show="visible" @click.self="handleWrapperClick">
      <div
        role="dialog"
        aria-modal="true"
        :aria-label="title || 'dialog'"
        class="el-dialog"
        :class="[{ 'is-fullscreen': fullscreen, 'el-dialog--center': center }, customClass]"
        ref="dialog"
        :style="style">
         <!--dialog_header包含:標題、關閉按鈕-->
        <div class="el-dialog__header">
          <!--標題-->
          <slot name="title">
            <span class="el-dialog__title">{{ title }}</span>
          </slot>
          <!--關閉按鈕-->
          <button
            type="button"
            class="el-dialog__headerbtn"
            aria-label="Close"
            v-if="showClose"
            @click="handleClose">
            <i class="el-dialog__close el-icon el-icon-close"></i>
          </button>
        </div>
        <!--中間的內容-->
        <div class="el-dialog__body" v-if="rendered"><slot></slot></div>
        <!--底部內容-->
        <div class="el-dialog__footer" v-if="$slots.footer">
          <slot name="footer"></slot>
        </div>
      </div>
    </div>
  </transition>
</template>

<script>
  import Popup from 'element-ui/src/utils/popup';
  //在控制檯輸出一些已經移除的屬性
  import Migrating from 'element-ui/src/mixins/migrating';
  //觸發子組件或者父組件的事件
  import emitter from 'element-ui/src/mixins/emitter';

  export default {
    name: 'ElDialog',

    mixins: [Popup, emitter, Migrating],

    props: {
      title: { //Dialog 的標題,也可經過具名 slot(title\footer)傳入
        type: String,
        default: ''
      },
      modal: { //是否須要遮罩層
        type: Boolean,
        default: true
      },
      modalAppendToBody: { //遮罩層是否插入至 body 元素上,若爲 false,則遮罩層會插入至 Dialog 的父元素上
        type: Boolean,
        default: true
      },
      appendToBody: { //Dialog 自身是否插入至 body 元素上。嵌套的 Dialog 必須指定該屬性並賦值爲 true
        type: Boolean,
        default: false
      },
      lockScroll: { //是否在 Dialog 出現時將 body 滾動鎖定
        type: Boolean,
        default: true
      },
      closeOnClickModal: { //是否能夠經過點擊 modal 關閉 Dialog
        type: Boolean,
        default: true
      },
      closeOnPressEscape: { //是否能夠經過按下 ESC 關閉 Dialog
        type: Boolean,
        default: true
      },
      showClose: { //是否顯示關閉按鈕
        type: Boolean,
        default: true
      },
      width: String, //Dialog 的寬度
      fullscreen: Boolean, //是否爲全屏 Dialog
      customClass: { //Dialog 的自定義類名
        type: String,
        default: ''
      },
      top: { //Dialog CSS 中的 margin-top 值
        type: String,
        default: '15vh'
      },
      beforeClose: Function, //關閉前的回調,會暫停 Dialog 的關閉
      center: { //是否對頭部和底部採用居中佈局
        type: Boolean,
        default: false
      }
    },

    data() {
      return {
        closed: false
      };
    },

    watch: {
      visible(val) {
        if (val) {
          this.closed = false;
          // Dialog 打開的回調
          this.$emit('open');
          //滾動時,更新彈出框的位置
          this.$el.addEventListener('scroll', this.updatePopper);
          this.$nextTick(() => {
            // 元素的滾動條的垂直位置爲0
            this.$refs.dialog.scrollTop = 0;
          });
          //appendToBody爲true時,將Dialog插入到body元素上
          if (this.appendToBody) {
            document.body.appendChild(this.$el);
          }
        } else {
          this.$el.removeEventListener('scroll', this.updatePopper);
          if (!this.closed) this.$emit('close');
        }
      }
    },

    computed: {
      style() {
        let style = {};
        //若是不是全屏顯示Dialog,Dialog的margin-top等於用戶設置的top
        if (!this.fullscreen) {
          style.marginTop = this.top;
          if (this.width) {
            style.width = this.width;
          }
        }
        return style;
      }
    },

    methods: {
      getMigratingConfig() {
        return {
          props: {
            'size': 'size is removed.'
          }
        };
      },
      handleWrapperClick() {
        //closeOnClickModal爲false,則不能經過點擊 modal 關閉 Dialog,直接返回
        if (!this.closeOnClickModal) return;
        this.handleClose();
      },
      handleClose() {
        // 關閉前的回調,會暫停 Dialog 的關閉
        if (typeof this.beforeClose === 'function') {
          this.beforeClose(this.hide);
        } else {
          this.hide();
        }
      },
      hide(cancel) {
        if (cancel !== false) {
          this.$emit('update:visible', false);
          this.$emit('close');
          this.closed = true;
        }
      },
      // 這裏不知道爲何這麼寫,沒太搞懂
      updatePopper() {
        this.broadcast('ElSelectDropdown', 'updatePopper');
        this.broadcast('ElDropdownMenu', 'updatePopper');
      },
      // Dialog 打開動畫結束時的回調
      afterEnter() {
        this.$emit('opened');
      },
      // Dialog 關閉動畫結束時的回調
      afterLeave() {
        this.$emit('closed');
      }
    },

    mounted() {
      if (this.visible) {
        // rendered這裏不是太懂,估計是處理彈出框位置相關的,等後面弄懂後再補充
        this.rendered = true;
        this.open();
        if (this.appendToBody) {
          document.body.appendChild(this.$el);
        }
      }
    },

    destroyed() {
      // if appendToBody is true, remove DOM node after destroy
      if (this.appendToBody && this.$el && this.$el.parentNode) {
        this.$el.parentNode.removeChild(this.$el);
      }
    }
  };
</script>
相關文章
相關標籤/搜索