linwe
2024-08-08 3c738f4fe2762bba8087e5a22fc0dc06560eab0e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
// [z-paging]滚动到底部加载更多模块
import u from '.././z-paging-utils'
import Enum from '.././z-paging-enum'
 
export default {
    props: {
        //自定义底部加载更多样式
        loadingMoreCustomStyle: {
            type: Object,
            default: function() {
                return u.gc('loadingMoreCustomStyle', {});
            }
        },
        //自定义底部加载更多文字样式
        loadingMoreTitleCustomStyle: {
            type: Object,
            default: function() {
                return u.gc('loadingMoreTitleCustomStyle', {});
            }
        },
        //自定义底部加载更多加载中动画样式
        loadingMoreLoadingIconCustomStyle: {
            type: Object,
            default: function() {
                return u.gc('loadingMoreLoadingIconCustomStyle', {});
            }
        },
        //自定义底部加载更多加载中动画图标类型,可选flower或circle,默认为flower
        loadingMoreLoadingIconType: {
            type: String,
            default: u.gc('loadingMoreLoadingIconType', 'flower')
        },
        //自定义底部加载更多加载中动画图标图片
        loadingMoreLoadingIconCustomImage: {
            type: String,
            default: u.gc('loadingMoreLoadingIconCustomImage', '')
        },
        //底部加载更多加载中view是否展示旋转动画,默认为是
        loadingMoreLoadingAnimated: {
            type: Boolean,
            default: u.gc('loadingMoreLoadingAnimated', true)
        },
        //是否启用加载更多数据(含滑动到底部加载更多数据和点击加载更多数据),默认为是
        loadingMoreEnabled: {
            type: Boolean,
            default: u.gc('loadingMoreEnabled', true)
        },
        //是否启用滑动到底部加载更多数据,默认为是
        toBottomLoadingMoreEnabled: {
            type: Boolean,
            default: u.gc('toBottomLoadingMoreEnabled', true)
        },
        //滑动到底部状态为默认状态时,以加载中的状态展示,默认为否。若设置为是,可避免滚动到底部看到默认状态然后立刻变为加载中状态的问题,但分页数量未超过一屏时,不会显示【点击加载更多】
        loadingMoreDefaultAsLoading: {
            type: [Boolean],
            default: u.gc('loadingMoreDefaultAsLoading', false)
        },
        //滑动到底部"默认"文字,默认为【点击加载更多】
        loadingMoreDefaultText: {
            type: [String, Object],
            default: u.gc('loadingMoreDefaultText', null)
        },
        //滑动到底部"加载中"文字,默认为【正在加载...】
        loadingMoreLoadingText: {
            type: [String, Object],
            default: u.gc('loadingMoreLoadingText', null)
        },
        //滑动到底部"没有更多"文字,默认为【没有更多了】
        loadingMoreNoMoreText: {
            type: [String, Object],
            default: u.gc('loadingMoreNoMoreText', null)
        },
        //滑动到底部"加载失败"文字,默认为【加载失败,点击重新加载】
        loadingMoreFailText: {
            type: [String, Object],
            default: u.gc('loadingMoreFailText', null)
        },
        //当没有更多数据且分页内容未超出z-paging时是否隐藏没有更多数据的view,默认为否
        hideNoMoreInside: {
            type: Boolean,
            default: u.gc('hideNoMoreInside', false)
        },
        //当没有更多数据且分页数组长度少于这个值时,隐藏没有更多数据的view,默认为0,代表不限制。
        hideNoMoreByLimit: {
            type: Number,
            default: u.gc('hideNoMoreByLimit', 0)
        },
        //是否显示默认的加载更多text,默认为是
        showDefaultLoadingMoreText: {
            type: Boolean,
            default: u.gc('showDefaultLoadingMoreText', true)
        },
        //是否显示没有更多数据的view
        showLoadingMoreNoMoreView: {
            type: Boolean,
            default: u.gc('showLoadingMoreNoMoreView', true)
        },
        //是否显示没有更多数据的分割线,默认为是
        showLoadingMoreNoMoreLine: {
            type: Boolean,
            default: u.gc('showLoadingMoreNoMoreLine', true)
        },
        //自定义底部没有更多数据的分割线样式
        loadingMoreNoMoreLineCustomStyle: {
            type: Object,
            default: function() {
                return u.gc('loadingMoreNoMoreLineCustomStyle', {});
            },
        },
        //当分页未满一屏时,是否自动加载更多,默认为否(nvue无效)
        insideMore: {
            type: Boolean,
            default: u.gc('insideMore', false)
        },
        //距底部/右边多远时(单位px),触发 scrolltolower 事件,默认为100rpx
        lowerThreshold: {
            type: [Number, String],
            default: u.gc('lowerThreshold', '100rpx')
        },
    },
    data() {
        return {
            M: Enum.More,
            //底部加载更多状态
            loadingStatus: Enum.More.Default,
            loadingStatusAfterRender: Enum.More.Default,
            loadingMoreTimeStamp: 0,
            loadingMoreDefaultSlot: null,
            showLoadingMore: false,
            customNoMore: -1,
        }
    },
    computed: {
        zLoadMoreConfig() {
            return {
                status: this.loadingStatusAfterRender,
                defaultAsLoading: this.loadingMoreDefaultAsLoading,
                defaultThemeStyle: this.finalLoadingMoreThemeStyle,
                customStyle: this.loadingMoreCustomStyle,
                titleCustomStyle: this.loadingMoreTitleCustomStyle,
                iconCustomStyle: this.loadingMoreLoadingIconCustomStyle,
                loadingIconType: this.loadingMoreLoadingIconType,
                loadingIconCustomImage: this.loadingMoreLoadingIconCustomImage,
                loadingAnimated: this.loadingMoreLoadingAnimated,
                showNoMoreLine: this.showLoadingMoreNoMoreLine,
                noMoreLineCustomStyle: this.loadingMoreNoMoreLineCustomStyle,
                defaultText: this.finalLoadingMoreDefaultText,
                loadingText: this.finalLoadingMoreLoadingText,
                noMoreText: this.finalLoadingMoreNoMoreText,
                failText: this.finalLoadingMoreFailText,
                hideContent: !this.loadingMoreDefaultAsLoading && this.listRendering,
            };
        },
        finalLoadingMoreThemeStyle() {
            return this.loadingMoreThemeStyle.length ? this.loadingMoreThemeStyle : this.defaultThemeStyle;
        },
        showLoadingMoreDefault() {
            return this._showLoadingMore('Default');
        },
        showLoadingMoreLoading() {
            return this._showLoadingMore('Loading');
        },
        showLoadingMoreNoMore() {
            return this._showLoadingMore('NoMore');
        },
        showLoadingMoreFail() {
            return this._showLoadingMore('Fail');
        },
        showLoadingMoreCustom() {
            return this._showLoadingMore('Custom');
        }
    },
    methods: {
        //页面滚动到底部时通知z-paging进行进一步处理
        pageReachBottom() {
            !this.useChatRecordMode && this._onLoadingMore('toBottom');
        },
        //手动触发上拉加载更多(非必须,可依据具体需求使用)
        doLoadMore(type) {
            this._onLoadingMore(type);
        },
        //通过@scroll事件检测是否滚动到了底部
        _checkScrolledToBottom(scrollDiff, checked = false) {
            if (this.cacheScrollNodeHeight === -1) {
                this._getNodeClientRect('.zp-scroll-view').then((res) => {
                    if (res) {
                        const pageScrollNodeHeight = res[0].height;
                        this.cacheScrollNodeHeight = pageScrollNodeHeight;
                        if (scrollDiff - pageScrollNodeHeight <= this.finalLowerThreshold) {
                            this._onLoadingMore('toBottom');
                        }
                    }
                });
            } else {
                if (scrollDiff - this.cacheScrollNodeHeight <= this.finalLowerThreshold) {
                    this._onLoadingMore('toBottom');
                } else if (scrollDiff - this.cacheScrollNodeHeight <= 500 && !checked) {
                    u.delay(() => {
                        this._getNodeClientRect('.zp-scroll-view', true, true).then((res) => {
                            this.oldScrollTop = res[0].scrollTop;
                            const newScrollDiff = res[0].scrollHeight - this.oldScrollTop;
                            this._checkScrolledToBottom(newScrollDiff, true);
                        })
                    }, 150, 'checkScrolledToBottomDelay')
                }
            }
        },
        //触发加载更多时调用,from:toBottom-滑动到底部触发;1、click-点击加载更多触发
        _onLoadingMore(from = 'click') {
            if (this.isIos && from === 'toBottom' && !this.scrollToBottomBounceEnabled && this.scrollEnable) {
                this.scrollEnable = false;
                this.$nextTick(() => {
                    this.scrollEnable = true;
                })
            }
            this.$emit('scrolltolower', from);
            if (from === 'toBottom' && (!this.toBottomLoadingMoreEnabled || this.useChatRecordMode)) return;
            if (this.refresherOnly || !this.loadingMoreEnabled || !(this.loadingStatus === Enum.More.Default || this.loadingStatus === Enum.More.Fail) || this.loading || this.showEmpty) return;
            // #ifdef MP-WEIXIN
            if (!this.isIos && !this.refresherOnly && !this.usePageScroll) {
                const currentTimestamp = u.getTime();
                if (this.loadingMoreTimeStamp > 0 && currentTimestamp - this.loadingMoreTimeStamp < 100) {
                    this.loadingMoreTimeStamp = 0;
                    return;
                }
            }
            // #endif
            this._doLoadingMore();
        },
        //处理开始加载更多
        _doLoadingMore() {
            if (this.pageNo >= this.defaultPageNo && this.loadingStatus !== Enum.More.NoMore) {
                this.pageNo ++;
                this._startLoading(false);
                if (this.isLocalPaging) {
                    this._localPagingQueryList(this.pageNo, this.defaultPageSize, this.localPagingLoadingTime, res => {
                        this.completeByTotal(res, this.totalLocalPagingList.length);
                    })
                } else {
                    this._emitQuery(this.pageNo, this.defaultPageSize, Enum.QueryFrom.LoadingMore);
                    this._callMyParentQuery();
                }
                this.loadingType = Enum.LoadingType.LoadingMore;
            }
        },
        //(预处理)判断当没有更多数据且分页内容未超出z-paging时是否显示没有更多数据的view
        _preCheckShowNoMoreInside(newVal, scrollViewNode, pagingContainerNode) {
            if (this.loadingStatus === Enum.More.NoMore && this.hideNoMoreByLimit > 0 && newVal.length) {
                this.showLoadingMore = newVal.length > this.hideNoMoreByLimit;
            } else if ((this.loadingStatus === Enum.More.NoMore && this.hideNoMoreInside && newVal.length) || (this.insideMore && this.insideOfPaging !== false && newVal.length)) {
                this.$nextTick(() => {
                    this._checkShowNoMoreInside(newVal, scrollViewNode, pagingContainerNode);
                })
                if (this.insideMore && this.insideOfPaging !== false && newVal.length) {
                    this.showLoadingMore = newVal.length;
                }
            } else {
                this.showLoadingMore = newVal.length;
            }
        },
        //判断当没有更多数据且分页内容未超出z-paging时是否显示没有更多数据的view
        async _checkShowNoMoreInside(totalData, oldScrollViewNode, oldPagingContainerNode) {
            try {
                const scrollViewNode = oldScrollViewNode || await this._getNodeClientRect('.zp-scroll-view');
                if (this.usePageScroll) {
                    if (scrollViewNode) {
                        const scrollViewTotalH = scrollViewNode[0].top + scrollViewNode[0].height;
                        this.insideOfPaging = scrollViewTotalH < this.windowHeight;
                        if (this.hideNoMoreInside) {
                            this.showLoadingMore = !this.insideOfPaging;
                        }
                        this._updateInsideOfPaging();
                    }
                } else {
                    const pagingContainerNode = oldPagingContainerNode || await this._getNodeClientRect('.zp-paging-container-content');
                    const pagingContainerH = pagingContainerNode ? pagingContainerNode[0].height : 0;
                    const scrollViewH = scrollViewNode ? scrollViewNode[0].height : 0;
                    this.insideOfPaging = pagingContainerH < scrollViewH;
                    if (this.hideNoMoreInside) {
                        this.showLoadingMore = !this.insideOfPaging;
                    }
                    this._updateInsideOfPaging();
                }
            } catch (e) {
                this.insideOfPaging = !totalData.length;
                if (this.hideNoMoreInside) {
                    this.showLoadingMore = !this.insideOfPaging;
                }
                this._updateInsideOfPaging();
            }
        },
        //是否要展示上拉加载更多view
        _showLoadingMore(type) {
            if (!this.showLoadingMoreWhenReload && (!(this.loadingStatus === Enum.More.Default ? this.nShowBottom : true) || !this.realTotalData.length)) return false;
            if (((!this.showLoadingMoreWhenReload || this.isUserPullDown || this.loadingStatus !== Enum.More.Loading) && !this.showLoadingMore) || 
            (!this.loadingMoreEnabled && (!this.showLoadingMoreWhenReload || this.isUserPullDown || this.loadingStatus !== Enum.More.Loading)) || this.refresherOnly) {
                return false;
            }
            if (this.useChatRecordMode && type !== 'Loading') return false;
            if (!this.zSlots) return false;
            if (type === 'Custom') {
                return this.showDefaultLoadingMoreText && !(this.loadingStatus === Enum.More.NoMore && !this.showLoadingMoreNoMoreView);
            }
            const res = this.loadingStatus === Enum.More[type] && this.zSlots[`loadingMore${type}`] && (type === 'NoMore' ? this.showLoadingMoreNoMoreView : true);
            if (res) {
                // #ifdef APP-NVUE
                if (!this.isIos) {
                    this.nLoadingMoreFixedHeight = false;
                }
                //  #endif
            }
            return res;
        },
    }
}