mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
import { basic } from '../mixins/basic';
|
|
import { observe } from '../mixins/observer/index';
|
|
|
|
function mapKeys(source, target, map) {
|
|
Object.keys(map).forEach(function (key) {
|
|
if (source[key]) {
|
|
target[map[key]] = source[key];
|
|
}
|
|
});
|
|
}
|
|
|
|
function VantComponent(vantOptions) {
|
|
var options = {};
|
|
mapKeys(vantOptions, options, {
|
|
data: 'data',
|
|
props: 'properties',
|
|
mixins: 'behaviors',
|
|
methods: 'methods',
|
|
beforeCreate: 'created',
|
|
created: 'attached',
|
|
mounted: 'ready',
|
|
relations: 'relations',
|
|
destroyed: 'detached',
|
|
classes: 'externalClasses'
|
|
});
|
|
var relation = vantOptions.relation;
|
|
|
|
if (relation) {
|
|
options.relations = Object.assign(options.relations || {}, {
|
|
["../" + relation.name + "/index"]: relation
|
|
});
|
|
} // add default externalClasses
|
|
|
|
|
|
options.externalClasses = options.externalClasses || [];
|
|
options.externalClasses.push('custom-class'); // add default behaviors
|
|
|
|
options.behaviors = options.behaviors || [];
|
|
options.behaviors.push(basic); // map field to form-field behavior
|
|
|
|
if (vantOptions.field) {
|
|
options.behaviors.push('wx://form-field');
|
|
} // add default options
|
|
|
|
|
|
options.options = {
|
|
multipleSlots: true,
|
|
addGlobalClass: true
|
|
};
|
|
observe(vantOptions, options);
|
|
Component(options);
|
|
}
|
|
|
|
export { VantComponent }; |