mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
69 lines
1.6 KiB
TypeScript
69 lines
1.6 KiB
TypeScript
import { basic } from '../mixins/basic';
|
|
import { observe } from '../mixins/observer/index';
|
|
import { VantComponentOptions, CombinedComponentInstance } from 'definitions/index';
|
|
import { Weapp } from 'packages/definitions/weapp';
|
|
|
|
function mapKeys(source: object, target: object, map: object) {
|
|
Object.keys(map).forEach(key => {
|
|
if (source[key]) {
|
|
target[map[key]] = source[key];
|
|
}
|
|
});
|
|
}
|
|
|
|
function VantComponent<Data, Props, Methods, Computed>(
|
|
vantOptions: VantComponentOptions<
|
|
Data,
|
|
Props,
|
|
Methods,
|
|
Computed,
|
|
CombinedComponentInstance<Data, Props, Methods, Computed>
|
|
> = {}
|
|
): void {
|
|
const options: any = {};
|
|
|
|
mapKeys(vantOptions, options, {
|
|
data: 'data',
|
|
props: 'properties',
|
|
mixins: 'behaviors',
|
|
methods: 'methods',
|
|
beforeCreate: 'created',
|
|
created: 'attached',
|
|
mounted: 'ready',
|
|
relations: 'relations',
|
|
destroyed: 'detached',
|
|
classes: 'externalClasses'
|
|
});
|
|
|
|
const { relation } = vantOptions;
|
|
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 };
|