[new feature] List 考虑错误情况,增加 error-text 属性 #2567 (#2568)

This commit is contained in:
Rockergmail 2019-01-20 16:25:25 +08:00 committed by neverland
parent be03980fe5
commit c43edf987f
7 changed files with 120 additions and 20 deletions

View File

@ -1,7 +1,15 @@
<template> <template>
<demo-section> <demo-section>
<demo-block :title="$t('basicUsage')"> <demo-block :title="$t('basicUsage')">
<p class="page-desc">{{ $t('text') }}</p> <div class="page-desc">
<p class="page-desc--text">{{ $t('text') }}</p>
<van-checkbox
class="page-desc--option"
v-model="loadedError"
>
模拟加载失败
</van-checkbox>
</div>
<van-pull-refresh <van-pull-refresh
v-model="refreshing" v-model="refreshing"
@refresh="onRefresh" @refresh="onRefresh"
@ -9,7 +17,9 @@
<van-list <van-list
v-model="loading" v-model="loading"
:finished="finished" :finished="finished"
:error.sync="error"
:finished-text="$t('finishedText')" :finished-text="$t('finishedText')"
:error-text="$t('errorText')"
@load="onLoad" @load="onLoad"
> >
<van-cell <van-cell
@ -28,11 +38,13 @@ export default {
i18n: { i18n: {
'zh-CN': { 'zh-CN': {
text: '当即将滚动到元素底部时,会自动加载更多', text: '当即将滚动到元素底部时,会自动加载更多',
finishedText: '没有更多了' finishedText: '没有更多了',
errorText: '请求失败,点击重新加载...'
}, },
'en-US': { 'en-US': {
text: 'This list will load items will scroll to bottom.', text: 'This list will load items will scroll to bottom.',
finishedText: 'Finished' finishedText: 'Finished',
errorText: 'Request failed. Click to reload...'
} }
}, },
@ -41,23 +53,35 @@ export default {
list: [], list: [],
refreshing: false, refreshing: false,
loading: false, loading: false,
finished: false error: false,
finished: false,
loadedError: false
}; };
}, },
methods: { methods: {
onLoad() { onLoad() {
setTimeout(() => { if (this.loadedError) {
for (let i = 0; i < 10; i++) { setTimeout(() => {
const text = this.list.length + 1; fetch('http://www.baidu.com').then(res => {
this.list.push(text < 10 ? '0' + text : text); }).catch(err => {
} this.loading = false;
this.loading = false; this.error = true;
});
}, 500);
} else {
setTimeout(() => {
for (let i = 0; i < 10; i++) {
const text = this.list.length + 1;
this.list.push(text < 10 ? '0' + text : text);
}
this.loading = false;
if (this.list.length >= 40) { if (this.list.length >= 40) {
this.finished = true; this.finished = true;
} }
}, 500); }, 500);
}
}, },
onRefresh() { onRefresh() {
@ -82,10 +106,22 @@ export default {
.page-desc { .page-desc {
padding: 5px 0; padding: 5px 0;
line-height: 1.4; margin: 0;
font-size: 14px; font-size: 14px;
text-align: center; text-align: center;
color: @gray-darker; color: @gray-darker;
&--text {
margin: 0;
}
&--option {
margin: 12px;
}
}
.van-checkbox__label {
color: @gray-darker;
} }
} }
</style> </style>

View File

@ -16,7 +16,9 @@ Vue.use(List);
<van-list <van-list
v-model="loading" v-model="loading"
:finished="finished" :finished="finished"
:error.sync="error"
finished-text="Finished" finished-text="Finished"
error-text="Request failed. Click to reload..."
@load="onLoad" @load="onLoad"
> >
<van-cell <van-cell
@ -34,6 +36,7 @@ export default {
list: [], list: [],
loading: false, loading: false,
finished: false finished: false
error: false
}; };
}, },
@ -45,6 +48,9 @@ export default {
} }
this.loading = false; this.loading = false;
// when error loaded:
// this.error = true;
if (this.list.length >= 40) { if (this.list.length >= 40) {
this.finished = true; this.finished = true;
} }
@ -60,9 +66,11 @@ export default {
|------|------|------|------| |------|------|------|------|
| loading | Whether to show loading infothe `load` event will not be triggered when loading | `Boolean` | `false` | | loading | Whether to show loading infothe `load` event will not be triggered when loading | `Boolean` | `false` |
| finished | Whether loading is finishedthe `load` event will not be triggered when finished | `Boolean` | `false` | | finished | Whether loading is finishedthe `load` event will not be triggered when finished | `Boolean` | `false` |
| error | Whether loading is errorthe `load` event will be triggered only when error text clicked, the `sync` modifier is needed | `Boolean` | `false` |
| offset | The load event will be triggered when the distance between the scrollbar and the bottom is less than offset | `Number` | `300` | | offset | The load event will be triggered when the distance between the scrollbar and the bottom is less than offset | `Number` | `300` |
| loading-text | Loading text | `String` | `Loading...` | | loading-text | Loading text | `String` | `Loading...` |
| finished-text | Finished text | `String` | - | | finished-text | Finished text | `String` | - |
| error-text | Error loaded text | `String` | - |
| immediate-check | Whether to check loading position immediately after mounted | `Boolean` | `true` | | immediate-check | Whether to check loading position immediately after mounted | `Boolean` | `true` |
### Event ### Event

View File

@ -13,8 +13,10 @@ export default sfc({
props: { props: {
loading: Boolean, loading: Boolean,
finished: Boolean, finished: Boolean,
error: Boolean,
loadingText: String, loadingText: String,
finishedText: String, finishedText: String,
errorText: String,
immediateCheck: { immediateCheck: {
type: Boolean, type: Boolean,
default: true default: true
@ -58,7 +60,7 @@ export default sfc({
methods: { methods: {
check() { check() {
if (this.loading || this.finished) { if (this.loading || this.finished || this.error) {
return; return;
} }
@ -96,6 +98,11 @@ export default sfc({
} }
}, },
clickErrorText() {
this.$emit('update:error', false);
this.$nextTick(this.check);
},
handler(bind) { handler(bind) {
/* istanbul ignore else */ /* istanbul ignore else */
if (this.binded !== bind) { if (this.binded !== bind) {
@ -120,6 +127,9 @@ export default sfc({
{this.finished && this.finishedText && ( {this.finished && this.finishedText && (
<div class={bem('finished-text')}>{this.finishedText}</div> <div class={bem('finished-text')}>{this.finishedText}</div>
)} )}
{this.error && this.errorText && (
<div onClick={this.clickErrorText} class={bem('error-text')}>{this.errorText}</div>
)}
</div> </div>
); );
} }

View File

@ -2,7 +2,8 @@
.van-list { .van-list {
&__loading-text, &__loading-text,
&__finished-text { &__finished-text,
&__error-text {
color: @list-text-color; color: @list-text-color;
font-size: @list-text-font-size; font-size: @list-text-font-size;
line-height: @list-text-line-height; line-height: @list-text-line-height;

View File

@ -3,7 +3,15 @@
exports[`renders demo correctly 1`] = ` exports[`renders demo correctly 1`] = `
<div> <div>
<div> <div>
<p class="page-desc">当即将滚动到元素底部时,会自动加载更多</p> <div class="page-desc">
<p class="page-desc--text">当即将滚动到元素底部时,会自动加载更多</p>
<div class="page-desc--option van-checkbox">
<div class="van-checkbox__icon van-checkbox__icon--round"><i class="van-icon van-icon-success" style="color:undefined;font-size:undefined;">
<!----></i></div><span class="van-checkbox__label">
模拟加载失败
</span>
</div>
</div>
<div class="van-pull-refresh"> <div class="van-pull-refresh">
<div class="van-pull-refresh__track" style="transition:0ms;transform:translate3d(0,0px, 0);"> <div class="van-pull-refresh__track" style="transition:0ms;transform:translate3d(0,0px, 0);">
<div class="van-pull-refresh__head"> <div class="van-pull-refresh__head">

View File

@ -29,6 +29,35 @@ test('load event', async () => {
wrapper.destroy(); wrapper.destroy();
}); });
test('error loaded, click error-text and reload', async () => {
const wrapper = mount(List, {
propsData: {
errorText: 'Request failed. Click to reload...',
error: true
}
});
mockOffsetParent(wrapper.vm.$el);
await later();
expect(wrapper.emitted('load')).toBeFalsy();
expect(wrapper.emitted('input')).toBeFalsy();
// 模拟点击error-text的行为
wrapper.setProps({
error: false
});
wrapper.vm.$emit('input', true);
wrapper.vm.$emit('load');
expect(wrapper.vm.$props.error).toBeFalsy();
expect(wrapper.emitted('load')).toBeTruthy();
expect(wrapper.emitted('input')).toBeTruthy();
wrapper.destroy();
});
test('finished', async () => { test('finished', async () => {
const wrapper = mount(List, { const wrapper = mount(List, {
propsData: { propsData: {

View File

@ -12,13 +12,15 @@ Vue.use(List);
#### 基础用法 #### 基础用法
List 组件通过`loading``finished`个变量控制加载状态,当组件滚动到底部时,会触发`load`事件并将`loading`设置成`true`。此时可以发起异步操作并更新数据,数据更新完毕后,将`loading`设置成`false`即可。若数据已全部加载完毕,则直接将`finished`设置成`true`即可。 List 组件通过`loading``finished``error`个变量控制加载状态,当组件滚动到底部时,会触发`load`事件并将`loading`设置成`true`。此时可以发起异步操作并更新数据,数据更新完毕后,将`loading`设置成`false`即可。若数据已全部加载完毕,则直接将`finished`设置成`true`即可。若数据加载失败,将`error`设置成`true`,出现错误提示,用户点击错误提示,重新请求。
```html ```html
<van-list <van-list
v-model="loading" v-model="loading"
:finished="finished" :finished="finished"
:error.sync="error"
finished-text="没有更多了" finished-text="没有更多了"
error-text="请求失败,点击重新加载..."
@load="onLoad" @load="onLoad"
> >
<van-cell <van-cell
@ -35,7 +37,8 @@ export default {
return { return {
list: [], list: [],
loading: false, loading: false,
finished: false finished: false,
error: false
}; };
}, },
@ -49,6 +52,9 @@ export default {
// 加载状态结束 // 加载状态结束
this.loading = false; this.loading = false;
// 当请求错误时
// this.error = true;
// 数据全部加载完成 // 数据全部加载完成
if (this.list.length >= 40) { if (this.list.length >= 40) {
this.finished = true; this.finished = true;
@ -65,9 +71,11 @@ export default {
|------|------|------|------|------| |------|------|------|------|------|
| loading | 是否处于加载状态,加载过程中不触发`load`事件 | `Boolean` | `false` | - | | loading | 是否处于加载状态,加载过程中不触发`load`事件 | `Boolean` | `false` | - |
| finished | 是否已加载完成,加载完成后不再触发`load`事件 | `Boolean` | `false` | - | | finished | 是否已加载完成,加载完成后不再触发`load`事件 | `Boolean` | `false` | - |
| error | 是否加载失败,加载失败后只能通过点击错误提示重新加载`load`事件,必须使用`sync`修饰符 | `Boolean` | `false` | - |
| offset | 滚动条与底部距离小于 offset 时触发`load`事件 | `Number` | `300` | - | | offset | 滚动条与底部距离小于 offset 时触发`load`事件 | `Number` | `300` | - |
| loading-text | 加载过程中的提示文案 | `String` | `加载中...` | 1.1.1 | | loading-text | 加载过程中的提示文案 | `String` | `加载中...` | 1.1.1 |
| finished-text | 加载完成后的提示文案 | `String` | - | 1.4.7 | | finished-text | 加载完成后的提示文案 | `String` | - | 1.4.7 |
| error-text | 加载失败后的提示文案 | `String` | - | - |
| immediate-check | 是否在初始化时立即执行滚动位置检查 | `Boolean` | `true` | - | | immediate-check | 是否在初始化时立即执行滚动位置检查 | `Boolean` | `true` | - |
### Event ### Event