mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
49 lines
1.3 KiB
JavaScript
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 };
|