[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` | - | | finished-text | Finished text | `String` | - |
| error-text | Error loaded 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` |
| direction | Scroll directioncan be set to `up` | `String` | `down` |
### Event ### Event

View File

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

View File

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