index.js 2.84 KB
Newer Older
李嘉林 committed
1
import { VantComponent } from '../common/component';
程默 committed
2
import { addUnit, getRect, getSystemInfoSync } from '../common/utils';
李嘉林 committed
3 4
let ARRAY = [];
VantComponent({
程默 committed
5 6 7 8 9 10 11
  field: true,
  relation: {
    name: 'dropdown-item',
    type: 'descendant',
    current: 'dropdown-menu',
    linked() {
      this.updateItemListData();
李嘉林 committed
12
    },
程默 committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
    unlinked() {
      this.updateItemListData();
    },
  },
  props: {
    activeColor: {
      type: String,
      observer: 'updateChildrenData',
    },
    overlay: {
      type: Boolean,
      value: true,
      observer: 'updateChildrenData',
    },
    zIndex: {
      type: Number,
      value: 10,
    },
    duration: {
      type: Number,
      value: 200,
      observer: 'updateChildrenData',
    },
    direction: {
      type: String,
      value: 'down',
      observer: 'updateChildrenData',
李嘉林 committed
40
    },
程默 committed
41 42 43 44
    closeOnClickOverlay: {
      type: Boolean,
      value: true,
      observer: 'updateChildrenData',
李嘉林 committed
45
    },
程默 committed
46 47 48
    closeOnClickOutside: {
      type: Boolean,
      value: true,
李嘉林 committed
49
    },
程默 committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
  },
  data: {
    itemListData: [],
  },
  beforeCreate() {
    const { windowHeight } = getSystemInfoSync();
    this.windowHeight = windowHeight;
    ARRAY.push(this);
  },
  destroyed() {
    ARRAY = ARRAY.filter((item) => item !== this);
  },
  methods: {
    updateItemListData() {
      this.setData({
        itemListData: this.children.map((child) => child.data),
      });
李嘉林 committed
67
    },
程默 committed
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
    updateChildrenData() {
      this.children.forEach((child) => {
        child.updateDataFromParent();
      });
    },
    toggleItem(active) {
      this.children.forEach((item, index) => {
        const { showPopup } = item.data;
        if (index === active) {
          item.toggle();
        } else if (showPopup) {
          item.toggle(false, { immediate: true });
        }
      });
    },
    close() {
      this.children.forEach((child) => {
        child.toggle(false, { immediate: true });
      });
    },
    getChildWrapperStyle() {
      const { zIndex, direction } = this.data;
      return getRect(this, '.van-dropdown-menu').then((rect) => {
        const { top = 0, bottom = 0 } = rect;
        const offset = direction === 'down' ? bottom : this.windowHeight - top;
        let wrapperStyle = `z-index: ${zIndex};`;
        if (direction === 'down') {
          wrapperStyle += `top: ${addUnit(offset)};`;
        } else {
          wrapperStyle += `bottom: ${addUnit(offset)};`;
李嘉林 committed
98
        }
程默 committed
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
        return wrapperStyle;
      });
    },
    onTitleTap(event) {
      const { index } = event.currentTarget.dataset;
      const child = this.children[index];
      if (!child.data.disabled) {
        ARRAY.forEach((menuItem) => {
          if (
            menuItem &&
            menuItem.data.closeOnClickOutside &&
            menuItem !== this
          ) {
            menuItem.close();
          }
        });
        this.toggleItem(index);
      }
    },
  },
李嘉林 committed
119
});