chore: add trailingComma

This commit is contained in:
陈嘉涵
2020-01-19 11:57:09 +08:00
parent e841175fe8
commit 389d68884d
269 changed files with 2706 additions and 2702 deletions
+8 -8
View File
@@ -51,13 +51,13 @@ export default {
'zh-CN': {
errorInfo: '错误提示',
finishedText: '没有更多了',
errorText: '请求失败,点击重新加载'
errorText: '请求失败,点击重新加载',
},
'en-US': {
errorInfo: 'Error Info',
finishedText: 'Finished',
errorText: 'Request failed. Click to reload'
}
errorText: 'Request failed. Click to reload',
},
},
data() {
@@ -67,14 +67,14 @@ export default {
refreshing: false,
loading: false,
error: false,
finished: false
finished: false,
}, {
items: [],
refreshing: false,
loading: false,
error: false,
finished: false
}]
finished: false,
}],
};
},
@@ -114,8 +114,8 @@ export default {
list.refreshing = false;
this.onLoad(index, true);
}, 1000);
}
}
},
},
};
</script>
+11 -11
View File
@@ -14,11 +14,11 @@ export default createComponent({
}
bind(this.scroller, 'scroll', this.check);
})
}),
],
model: {
prop: 'loading'
prop: 'loading',
},
props: {
@@ -30,22 +30,22 @@ export default createComponent({
finishedText: String,
immediateCheck: {
type: Boolean,
default: true
default: true,
},
offset: {
type: Number,
default: 300
default: 300,
},
direction: {
type: String,
default: 'down'
}
default: 'down',
},
},
data() {
return {
// use sync innerLoading state to avoid repeated loading in some edge cases
innerLoading: this.loading
innerLoading: this.loading,
};
},
@@ -61,7 +61,7 @@ export default createComponent({
watch: {
loading: 'check',
finished: 'check'
finished: 'check',
},
methods: {
@@ -80,7 +80,7 @@ export default createComponent({
} else {
scrollerRect = {
top: 0,
bottom: scroller.innerHeight
bottom: scroller.innerHeight,
};
}
@@ -147,7 +147,7 @@ export default createComponent({
);
}
}
}
},
},
render() {
@@ -162,5 +162,5 @@ export default createComponent({
{this.direction === 'up' ? this.slots() : Placeholder}
</div>
);
}
},
});
+19 -19
View File
@@ -24,7 +24,7 @@ test('error loaded, click error-text and reload', async () => {
propsData: {
errorText: 'Request failed. Click to reload...',
error: true,
}
},
});
await later();
@@ -35,7 +35,7 @@ test('error loaded, click error-text and reload', async () => {
// simulate the behavior of clicking error-text
wrapper.vm.$on('update:error', val => {
wrapper.setProps({
error: val
error: val,
});
});
@@ -54,8 +54,8 @@ test('finished', async () => {
const wrapper = mount(List, {
propsData: {
finished: true,
finishedText: 'Finished'
}
finishedText: 'Finished',
},
});
await later();
@@ -73,11 +73,11 @@ test('finished', async () => {
test('finished slot', async () => {
const wrapper = mount(List, {
propsData: {
finished: true
finished: true,
},
scopedSlots: {
finished: () => 'Custom Finished'
}
finished: () => 'Custom Finished',
},
});
expect(wrapper).toMatchSnapshot();
@@ -86,11 +86,11 @@ test('finished slot', async () => {
test('error slot', async () => {
const wrapper = mount(List, {
propsData: {
error: true
error: true,
},
scopedSlots: {
error: () => 'Custom Error'
}
error: () => 'Custom Error',
},
});
expect(wrapper).toMatchSnapshot();
@@ -99,8 +99,8 @@ test('error slot', async () => {
test('immediate check false', async () => {
const wrapper = mount(List, {
propsData: {
immediateCheck: false
}
immediateCheck: false,
},
});
await later();
@@ -111,7 +111,7 @@ test('immediate check false', async () => {
test('check the case that scroller is not window', async () => {
const restoreMock = mockGetBoundingClientRect({
top: 0,
bottom: 200
bottom: 200,
});
const wrapper = mount({
@@ -120,11 +120,11 @@ test('check the case that scroller is not window', async () => {
<list ref="list"/>
</div>
`,
components: { List }
components: { List },
});
const listRef = wrapper.find({
ref: 'list'
ref: 'list',
});
await later();
@@ -137,11 +137,11 @@ test('check the case that scroller is not window', async () => {
test('check the direction props', () => {
const wrapper = mount(List, {
slots: {
default: '<div class="list-item">list item</div>'
default: '<div class="list-item">list item</div>',
},
propsData: {
direction: 'up'
}
direction: 'up',
},
});
let children = wrapper.findAll('.van-list > div');
@@ -150,7 +150,7 @@ test('check the direction props', () => {
// change the direction's value
wrapper.setProps({
direction: 'down'
direction: 'down',
});
children = wrapper.findAll('.van-list > div');