vant-weapp/dist/common/component.js
2018-09-21 10:32:25 +08:00

49 lines
1.3 KiB
JavaScript

import { basic } from '../mixins/basic';
import { observe } from '../mixins/observer/index';
function VantComponent(sfc) {
const options = {};
// map props to properties
if (sfc.props) {
options.properties = sfc.props;
}
// map mixins to behaviors
if (sfc.mixins) {
options.behaviors = sfc.mixins;
}
// copy methods
if (sfc.methods) {
options.methods = sfc.methods;
}
if (sfc.beforeCreate) {
options.created = sfc.beforeCreate;
}
if (sfc.created) {
options.attached = sfc.created;
}
if (sfc.mounted) {
options.ready = sfc.mounted;
}
if (sfc.destroyed) {
options.detached = sfc.destroyed;
}
// map classes to externalClasses
options.externalClasses = sfc.classes || [];
// add default externalClasses
options.externalClasses.push('custom-class');
// add default behaviors
options.behaviors = sfc.mixins || [];
options.behaviors.push(basic);
// add default options
options.options = {
multipleSlots: true,
addGlobalClass: true
};
// map field to form-field behavior
if (sfc.field) {
options.behaviors.push('wx://form-field');
}
observe(sfc, options);
Component(options);
}
export { VantComponent };