204 lines
7.6 KiB
JavaScript
204 lines
7.6 KiB
JavaScript
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
||
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||
|
};
|
||
|
import { SuperComponent, wxComponent } from '../common/src/index';
|
||
|
import config from '../common/config';
|
||
|
import props from './dropdown-item-props';
|
||
|
import menuProps from './props';
|
||
|
import { equal, clone } from '../common/utils';
|
||
|
const { prefix } = config;
|
||
|
const name = `${prefix}-dropdown-item`;
|
||
|
let DropdownMenuItem = class DropdownMenuItem extends SuperComponent {
|
||
|
constructor() {
|
||
|
super(...arguments);
|
||
|
this.properties = Object.assign({}, props);
|
||
|
this.data = {
|
||
|
prefix,
|
||
|
classPrefix: name,
|
||
|
show: false,
|
||
|
top: 0,
|
||
|
maskHeight: 0,
|
||
|
contentClasses: '',
|
||
|
leafLevel: 0,
|
||
|
treeOptions: [],
|
||
|
initValue: null,
|
||
|
hasChanged: false,
|
||
|
duration: menuProps.duration.value,
|
||
|
zIndex: menuProps.zIndex.value,
|
||
|
overlay: menuProps.showOverlay.value,
|
||
|
labelAlias: 'label',
|
||
|
valueAlias: 'value',
|
||
|
};
|
||
|
this.parent = null;
|
||
|
this.relations = {
|
||
|
'./dropdown-menu': {
|
||
|
type: 'parent',
|
||
|
linked(target) {
|
||
|
const { zIndex, duration, showOverlay } = target.properties;
|
||
|
this.parent = target;
|
||
|
this.setData({
|
||
|
zIndex,
|
||
|
duration,
|
||
|
showOverlay,
|
||
|
});
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
this.controlledProps = [
|
||
|
{
|
||
|
key: 'value',
|
||
|
event: 'change',
|
||
|
},
|
||
|
];
|
||
|
this.observers = {
|
||
|
value(v) {
|
||
|
if (this.data.multiple) {
|
||
|
if (!Array.isArray(v))
|
||
|
throw TypeError('应传入数组类型的 value');
|
||
|
}
|
||
|
if (this.data.optionsLayout === 'tree') {
|
||
|
this.buildTreeOptions();
|
||
|
}
|
||
|
},
|
||
|
'initValue, value'(v1, v2) {
|
||
|
this.setData({
|
||
|
hasChanged: !equal(v1, v2),
|
||
|
});
|
||
|
},
|
||
|
label() {
|
||
|
var _a;
|
||
|
(_a = this.parent) === null || _a === void 0 ? void 0 : _a.getAllItems();
|
||
|
},
|
||
|
keys(obj) {
|
||
|
this.setData({
|
||
|
labelAlias: obj.label || 'label',
|
||
|
valueAlias: obj.value || 'value',
|
||
|
});
|
||
|
},
|
||
|
show(visible) {
|
||
|
if (visible) {
|
||
|
this.getParentBottom(this.parent, () => {
|
||
|
this.setData({ wrapperVisible: true });
|
||
|
});
|
||
|
}
|
||
|
},
|
||
|
};
|
||
|
this.lifetimes = {
|
||
|
attached() {
|
||
|
const { multiple, optionsLayout, value, defaultValue } = this.data;
|
||
|
const isTree = optionsLayout === 'tree';
|
||
|
const contentClassesObj = {
|
||
|
[`${prefix}-is-tree`]: isTree,
|
||
|
[`${prefix}-is-single`]: !isTree && !multiple,
|
||
|
[`${prefix}-is-multi`]: !isTree && multiple,
|
||
|
};
|
||
|
const contentClasses = Object.keys(contentClassesObj)
|
||
|
.filter((e) => contentClassesObj[e] === true)
|
||
|
.join(' ');
|
||
|
this.setData({
|
||
|
contentClasses,
|
||
|
initValue: clone(value || defaultValue),
|
||
|
});
|
||
|
},
|
||
|
};
|
||
|
this.methods = {
|
||
|
buildTreeOptions() {
|
||
|
const { options, value, multiple } = this.data;
|
||
|
const treeOptions = [];
|
||
|
let level = -1;
|
||
|
let node = { options };
|
||
|
while (node && node.options) {
|
||
|
level += 1;
|
||
|
const list = node.options;
|
||
|
const thisValue = value === null || value === void 0 ? void 0 : value[level];
|
||
|
treeOptions.push([...list]);
|
||
|
if (thisValue == null) {
|
||
|
const [firstChild] = list;
|
||
|
node = firstChild;
|
||
|
}
|
||
|
else {
|
||
|
const child = list.find((child) => child.value === thisValue);
|
||
|
node = child !== null && child !== void 0 ? child : list[0];
|
||
|
}
|
||
|
}
|
||
|
const leafLevel = Math.max(0, level);
|
||
|
if (multiple) {
|
||
|
const finalValue = this.data.value || this.data.defaultValue;
|
||
|
if (!Array.isArray(finalValue[leafLevel])) {
|
||
|
throw TypeError('应传入数组类型的 value');
|
||
|
}
|
||
|
}
|
||
|
this.setData({
|
||
|
leafLevel,
|
||
|
treeOptions,
|
||
|
});
|
||
|
},
|
||
|
closeDropdown() {
|
||
|
var _a;
|
||
|
(_a = this.parent) === null || _a === void 0 ? void 0 : _a.setData({
|
||
|
activeIdx: -1,
|
||
|
});
|
||
|
this.setData({
|
||
|
show: false,
|
||
|
});
|
||
|
},
|
||
|
getParentBottom(parent, cb) {
|
||
|
const query = wx.createSelectorQuery().in(parent);
|
||
|
query
|
||
|
.select(`#${prefix}-bar`)
|
||
|
.boundingClientRect((res) => {
|
||
|
this.setData({
|
||
|
top: res.bottom,
|
||
|
maskHeight: res.top,
|
||
|
}, cb);
|
||
|
})
|
||
|
.exec();
|
||
|
},
|
||
|
handleTreeClick(e) {
|
||
|
const { level, value: itemValue } = e.currentTarget.dataset;
|
||
|
const { value } = this.data;
|
||
|
value[level] = itemValue;
|
||
|
this._trigger('change', { value });
|
||
|
},
|
||
|
handleRadioChange(e) {
|
||
|
let { value } = this.data;
|
||
|
const { value: itemValue } = e.detail;
|
||
|
const { level } = e.target.dataset;
|
||
|
if (this.data.optionsLayout === 'tree') {
|
||
|
value[level] = itemValue;
|
||
|
}
|
||
|
else {
|
||
|
value = itemValue;
|
||
|
}
|
||
|
this._trigger('change', { value });
|
||
|
if (!this.data.multiple && this.data.optionsLayout !== 'tree') {
|
||
|
this.closeDropdown();
|
||
|
}
|
||
|
},
|
||
|
handleMaskClick() {
|
||
|
var _a;
|
||
|
if ((_a = this.parent) === null || _a === void 0 ? void 0 : _a.properties.closeOnClickOverlay) {
|
||
|
this.closeDropdown();
|
||
|
}
|
||
|
},
|
||
|
handleReset() {
|
||
|
this._trigger('change', { value: clone(this.data.initValue) });
|
||
|
},
|
||
|
handleConfirm() {
|
||
|
this._trigger('confirm', { value: this.data.value });
|
||
|
this.closeDropdown();
|
||
|
},
|
||
|
onLeaved() {
|
||
|
this.setData({ wrapperVisible: false });
|
||
|
},
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
DropdownMenuItem = __decorate([
|
||
|
wxComponent()
|
||
|
], DropdownMenuItem);
|
||
|
export default DropdownMenuItem;
|