refactor: refactor relation (#2760)

This commit is contained in:
Waiter 2020-02-14 16:56:37 +08:00 committed by GitHub
parent 6ea006006f
commit 9d6ef0e955
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
24 changed files with 89 additions and 121 deletions

View File

@ -8,16 +8,10 @@ VantComponent({
relation: {
name: 'checkbox',
type: 'descendant',
current: 'checkbox-group',
linked(target) {
this.children = this.children || [];
this.children.push(target);
this.updateChild(target);
},
unlinked(target) {
this.children = this.children.filter(
(child: TrivialInstance) => child !== target
);
}
},
props: {

View File

@ -11,12 +11,7 @@ VantComponent({
relation: {
name: 'checkbox-group',
type: 'ancestor',
linked(target) {
this.parent = target;
},
unlinked() {
this.parent = null;
}
current: 'checkbox',
},
classes: ['icon-class', 'label-class'],

View File

@ -3,7 +3,8 @@ import { VantComponent } from '../common/component';
VantComponent({
relation: {
name: 'row',
type: 'ancestor'
type: 'ancestor',
current: 'col',
},
props: {

View File

@ -8,9 +8,7 @@ VantComponent({
relation: {
name: 'collapse',
type: 'ancestor',
linked(parent) {
this.parent = parent;
}
current: 'collapse-item',
},
props: {

View File

@ -6,14 +6,7 @@ VantComponent({
relation: {
name: 'collapse-item',
type: 'descendant',
linked(child) {
this.children.push(child);
},
unlinked(child) {
this.children = this.children.filter(
(item: TrivialInstance) => item !== child
);
}
current: 'collapse',
},
props: {
@ -31,10 +24,6 @@ VantComponent({
}
},
beforeCreate() {
this.children = [];
},
methods: {
updateExpanded() {
this.children.forEach((child: TrivialInstance) => {

View File

@ -1,6 +1,26 @@
import { basic } from '../mixins/basic';
import { VantComponentOptions, CombinedComponentInstance } from 'definitions/index';
const relationFunctions = {
ancestor: {
linked(parent) {
this.parent = parent;
},
unlinked() {
this.parent = null;
},
},
descendant: {
linked(child) {
this.children = this.children || [];
this.children.push(child);
},
unlinked(child) {
this.children = (this.children || []).filter(it => it !== child);
},
},
};
function mapKeys(source: object, target: object, map: object) {
Object.keys(map).forEach(key => {
if (source[key]) {
@ -9,6 +29,37 @@ function mapKeys(source: object, target: object, map: object) {
});
}
function makeRelation(options, vantOptions, relation) {
const { type, name, linked, unlinked, linkChanged } = relation;
const { beforeCreate, destroyed } = vantOptions;
if (type === 'descendant') {
options.created = function () {
beforeCreate && beforeCreate.bind(this)();
this.children = this.children || [];
};
options.detached = function () {
this.children = [];
destroyed && destroyed.bind(this)();
};
}
options.relations = Object.assign(options.relations || {}, {
[`../${name}/index`]: {
type,
linked(node) {
relationFunctions[type].linked.bind(this)(node);
linked && linked.bind(this)(node);
},
linkChanged(node) {
linkChanged && linkChanged.bind(this)(node);
},
unlinked(node) {
relationFunctions[type].unlinked.bind(this)(node);
unlinked && unlinked.bind(this)(node);
},
}
});
}
function VantComponent<Data, Props, Methods>(
vantOptions: VantComponentOptions<
Data,
@ -34,9 +85,7 @@ function VantComponent<Data, Props, Methods>(
const { relation } = vantOptions;
if (relation) {
options.relations = Object.assign(options.relations || {}, {
[`../${relation.name}/index`]: relation
});
makeRelation(options, vantOptions, relation);
}
// add default externalClasses

View File

@ -19,7 +19,11 @@ export interface VantComponentOptions<Data, Props, Methods, Instance> {
classes?: string[];
mixins?: string[];
props?: Props & Weapp.PropertyOption;
relation?: Weapp.RelationOption<Instance> & { name: string };
relation?: Weapp.RelationOption<Instance> & {
type: 'ancestor' | 'descendant';
name: string;
current: string;
};
relations?: {
[componentName: string]: Weapp.RelationOption<Instance>;
};

View File

@ -7,13 +7,10 @@ VantComponent({
relation: {
name: 'dropdown-menu',
type: 'ancestor',
linked(target) {
this.parent = target;
current: 'dropdown-item',
linked() {
this.updateDataFromParent();
},
unlinked() {
this.parent = null;
}
},
props: {

View File

@ -11,14 +11,11 @@ VantComponent({
relation: {
name: 'dropdown-item',
type: 'descendant',
linked(target) {
this.children.push(target);
current: 'dropdown-menu',
linked() {
this.updateItemListData();
},
unlinked(target) {
this.children = this.children.filter(
(child: TrivialInstance) => child !== target
);
unlinked() {
this.updateItemListData();
}
},
@ -65,7 +62,6 @@ VantComponent({
beforeCreate() {
const { windowHeight } = wx.getSystemInfoSync();
this.windowHeight = windowHeight;
this.children = [];
ARRAY.push(this);
},

View File

@ -9,9 +9,7 @@ VantComponent({
relation: {
type: 'ancestor',
name: 'goods-action',
linked(parent) {
this.parent = parent;
}
current: 'goods-action-button',
},
props: {
text: String,

View File

@ -4,15 +4,7 @@ VantComponent({
relation: {
type: 'descendant',
name: 'goods-action-button',
linked(child) {
this.children.push(child);
},
unlinked(child) {
this.children = this.children.filter((item) => item !== child);
}
},
beforeCreate() {
this.children = [];
current: 'goods-action',
},
props: {
safeAreaInsetBottom: {

View File

@ -6,9 +6,7 @@ VantComponent({
relation: {
name: 'grid',
type: 'ancestor',
linked(parent) {
this.parent = parent;
}
current: 'grid-item',
},
mixins: [link],

View File

@ -5,14 +5,7 @@ VantComponent({
relation: {
name: 'grid-item',
type: 'descendant',
linked(child) {
this.children.push(child);
},
unlinked(child) {
this.children = this.children.filter(
(item: WechatMiniprogram.Component.TrivialInstance) => item !== child
);
}
current: 'grid',
},
props: {

View File

@ -4,12 +4,7 @@ VantComponent({
relation: {
name: 'index-bar',
type: 'ancestor',
linked(target) {
this.parent = target;
},
unlinked() {
this.parent = null;
}
current: 'index-anchor',
},
props: {

View File

@ -16,6 +16,7 @@ VantComponent({
relation: {
name: 'index-anchor',
type: 'descendant',
current: 'index-bar',
linked() {
this.updateData();
},

View File

@ -6,16 +6,10 @@ VantComponent({
relation: {
name: 'radio',
type: 'descendant',
current: 'radio-group',
linked(target) {
this.children = this.children || [];
this.children.push(target);
this.updateChild(target);
},
unlinked(target) {
this.children = this.children.filter(
(child: WechatMiniprogram.Component.TrivialInstance) => child !== target
);
}
},
props: {

View File

@ -6,12 +6,7 @@ VantComponent({
relation: {
name: 'radio-group',
type: 'ancestor',
linked(target) {
this.parent = target;
},
unlinked() {
this.parent = null;
}
current: 'radio',
},
classes: ['icon-class', 'label-class'],

View File

@ -4,6 +4,7 @@ VantComponent({
relation: {
name: 'col',
type: 'descendant',
current: 'row',
linked(target) {
if (this.data.gutter) {
target.setGutter(this.data.gutter);

View File

@ -9,9 +9,7 @@ VantComponent({
relation: {
type: 'ancestor',
name: 'sidebar',
linked(target) {
this.parent = target;
}
current: 'sidebar-item',
},
props: {

View File

@ -4,14 +4,11 @@ VantComponent({
relation: {
name: 'sidebar-item',
type: 'descendant',
linked(target) {
this.children.push(target);
current: 'sidebar',
linked() {
this.setActive(this.data.activeKey);
},
unlinked(target) {
this.children = this.children.filter(
(item: WechatMiniprogram.Component.TrivialInstance) => item !== target
);
unlinked() {
this.setActive(this.data.activeKey);
}
},
@ -25,7 +22,6 @@ VantComponent({
},
beforeCreate() {
this.children = [];
this.currentActive = -1;
},

View File

@ -4,12 +4,7 @@ VantComponent({
relation: {
name: 'tabs',
type: 'ancestor',
linked(target) {
this.parent = target;
},
unlinked() {
this.parent = null;
}
current: 'tab',
},
props: {

View File

@ -10,7 +10,8 @@ VantComponent({
relation: {
name: 'tabbar',
type: 'ancestor'
type: 'ancestor',
current: 'tabbar-item',
},
data: {

View File

@ -6,15 +6,12 @@ VantComponent({
relation: {
name: 'tabbar-item',
type: 'descendant',
current: 'tabbar',
linked(target) {
this.children.push(target);
target.parent = this;
target.updateFromParent();
},
unlinked(target) {
this.children = this.children.filter(
(item: TrivialInstance) => item !== target
);
unlinked() {
this.updateChildren();
}
},
@ -50,10 +47,6 @@ VantComponent({
}
},
beforeCreate() {
this.children = [];
},
methods: {
updateChildren() {
const { children } = this;

View File

@ -13,14 +13,13 @@ VantComponent({
relation: {
name: 'tab',
type: 'descendant',
current: 'tabs',
linked(target) {
target.index = this.children.length;
this.children.push(target);
target.index = this.children.length - 1;
this.updateTabs();
},
unlinked(target) {
unlinked() {
this.children = this.children
.filter((child: TrivialInstance) => child !== target)
.map((child: TrivialInstance, index: number) => {
child.index = index;
return child;
@ -114,10 +113,6 @@ VantComponent({
container: null
},
beforeCreate() {
this.children = [];
},
mounted() {
this.setData({
container: () => this.createSelectorQuery().select('.van-tabs')