[new feature] List: add direction prop (#3223)

This commit is contained in:
neverland 2019-04-26 16:11:50 +08:00 committed by GitHub
parent 23792ce16f
commit 41bb38b913
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 13 deletions

View File

@ -103,6 +103,7 @@ export default {
| finished-text | Finished text | `String` | - |
| error-text | Error loaded text | `String` | - |
| immediate-check | Whether to check loading position immediately after mounted | `Boolean` | `true` |
| direction | Scroll directioncan be set to `up` | `String` | `down` |
### Event

View File

@ -29,6 +29,10 @@ export default sfc({
offset: {
type: Number,
default: 300
},
direction: {
type: String,
default: 'down'
}
},
@ -74,25 +78,37 @@ export default sfc({
const scrollerHeight = getVisibleHeight(scroller);
/* istanbul ignore next */
if (!scrollerHeight || window.getComputedStyle(el).display === 'none' || el.offsetParent === null) {
if (
!scrollerHeight ||
window.getComputedStyle(el).display === 'none' ||
el.offsetParent === null
) {
return;
}
const scrollTop = getScrollTop(scroller);
const targetBottom = scrollTop + scrollerHeight;
const { offset, direction } = this;
let reachBottom = false;
function isReachEdge() {
if (el === scroller) {
const scrollTop = getScrollTop(el);
/* istanbul ignore next */
if (el === scroller) {
reachBottom = scroller.scrollHeight - targetBottom < this.offset;
} else {
const elBottom = getElementTop(el) - getElementTop(scroller) + getVisibleHeight(el);
reachBottom = elBottom - scrollerHeight < this.offset;
if (direction === 'up') {
return scrollTop <= offset;
}
const targetBottom = scrollTop + scrollerHeight;
return scroller.scrollHeight - targetBottom <= offset;
}
if (direction === 'up') {
return getScrollTop(scroller) - getElementTop(el) <= offset;
}
const elBottom = getElementTop(el) + getVisibleHeight(el) - getElementTop(scroller);
return elBottom - scrollerHeight <= offset;
}
/* istanbul ignore else */
if (reachBottom) {
if (isReachEdge()) {
this.$emit('input', true);
this.$emit('load');
}
@ -115,7 +131,7 @@ export default sfc({
render(h) {
return (
<div class={bem()}>
{this.slots()}
{this.direction === 'down' && this.slots()}
{this.loading && (
<div class={bem('loading')} key="loading">
{this.slots('loading') || [
@ -132,6 +148,7 @@ export default sfc({
{this.errorText}
</div>
)}
{this.direction === 'up' && this.slots()}
</div>
);
}

View File

@ -110,6 +110,7 @@ export default {
| finished-text | 加载完成后的提示文案 | `String` | - | 1.4.7 |
| error-text | 加载失败后的提示文案 | `String` | - | 1.5.3 |
| immediate-check | 是否在初始化时立即执行滚动位置检查 | `Boolean` | `true` | - |
| direction | 滚动触发加载的方向,可选值为`up` | `String` | `down` | 1.6.16 |
### Event