mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[new feature] List: add direction prop (#3223)
This commit is contained in:
parent
23792ce16f
commit
41bb38b913
@ -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 direction,can be set to `up` | `String` | `down` |
|
||||||
|
|
||||||
### Event
|
### Event
|
||||||
|
|
||||||
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user