diff --git a/packages/list/en-US.md b/packages/list/en-US.md index cdc818fe2..0880d2644 100644 --- a/packages/list/en-US.md +++ b/packages/list/en-US.md @@ -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 direction,can be set to `up` | `String` | `down` | ### Event diff --git a/packages/list/index.js b/packages/list/index.js index 80052759d..6a1f37acd 100644 --- a/packages/list/index.js +++ b/packages/list/index.js @@ -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 (
- {this.slots()} + {this.direction === 'down' && this.slots()} {this.loading && (
{this.slots('loading') || [ @@ -132,6 +148,7 @@ export default sfc({ {this.errorText}
)} + {this.direction === 'up' && this.slots()}
); } diff --git a/packages/list/zh-CN.md b/packages/list/zh-CN.md index 220d5e6ad..1bf9d2851 100644 --- a/packages/list/zh-CN.md +++ b/packages/list/zh-CN.md @@ -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