Skip to content

Commit 2d06327

Browse files
committed
fix: Fix problems with finished props
1 parent 2421f01 commit 2d06327

File tree

7 files changed

+246
-250
lines changed

7 files changed

+246
-250
lines changed

README.en-US.md

+190
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
# vuejs-loadmore
2+
[![Npm Version](https://img.shields.io/npm/v/vuejs-loadmore)](https://www.npmjs.com/package/vuejs-loadmore) [![Build Status](https://img.shields.io/github/workflow/status/staticdeng/vuejs-loadmore/Node.js%20CI)](https://github.com/staticdeng/vuejs-loadmore/actions)
3+
4+
[![NPM](https://nodei.co/npm/vuejs-loadmore.png)](https://nodei.co/npm/vuejs-loadmore/)
5+
6+
A pull-down refresh and pull-up loadmore scroll component for Vue.js.
7+
8+
Easy to use by providing simple api. Unlike other component libraries, it uses the browser itself to scroll instead of js, so it has a smaller code size but does not lose the user experience.
9+
10+
**English** | [中文](./README.md)
11+
12+
## Preview
13+
[Online demo](https://staticdeng.github.io/vuejs-loadmore/)
14+
15+
You can also scan the following QR code to access the demo:
16+
17+
<img src="https://user-images.githubusercontent.com/20060839/145163261-02025f86-ac87-4016-859f-15677a6d3cf7.png" width="220" height="220" >
18+
19+
## Installation
20+
21+
#### Install the npm package
22+
23+
```bash
24+
# npm
25+
npm install vuejs-loadmore --save
26+
```
27+
28+
#### Import
29+
30+
```js
31+
import Vue from 'vue';
32+
import VueLoadmore from 'vuejs-loadmore';
33+
34+
Vue.use(VueLoadmore);
35+
```
36+
37+
## Internationalization support
38+
39+
Support Chinese zh-CN and English en-US, the default is zh-CN.
40+
41+
```js
42+
import VueLoadmore from 'vuejs-loadmore';
43+
44+
Vue.use(VueLoadmore, {
45+
lang: 'en-US'
46+
})
47+
```
48+
49+
You can also use `locale.use()` to specify the language.
50+
51+
```js
52+
import VueLoadmore, { locale } from 'vuejs-loadmore';
53+
54+
Vue.use(VueLoadmore);
55+
locale.use('en-US');
56+
```
57+
58+
## Usage
59+
60+
### Basic Usage
61+
62+
```html
63+
<vue-loadmore
64+
:on-refresh="onRefresh"
65+
:on-loadmore="onLoad"
66+
:finished="finished">
67+
<div v-for="(item, i) of list" :key="i"></div>
68+
</vue-loadmore>
69+
```
70+
The `on-refresh` and `on-loadmore` will be Emitted when pull refresh or scroll to the bottom, you should need to execute the callback function `done()` after processing the data request.
71+
72+
If you don't need refresh, only not to bind `on-refresh`.
73+
74+
When the data request is finished, the data of `finished` you can changed to true, then will show `finished-text`.
75+
76+
```js
77+
export default {
78+
data() {
79+
return {
80+
list: [],
81+
page: 1,
82+
pageSize: 10,
83+
finished: false
84+
};
85+
},
86+
mounted() {
87+
this.fetch();
88+
},
89+
methods: {
90+
onRefresh(done) {
91+
this.list = [];
92+
this.page = 1;
93+
this.finished = false;
94+
this.fetch();
95+
96+
done();
97+
},
98+
99+
onLoad(done) {
100+
if (this.page <= 10) {
101+
this.fetch();
102+
} else {
103+
// all data loaded
104+
this.finished = true;
105+
}
106+
done();
107+
},
108+
109+
fetch() {
110+
for (let i = 0; i < this.pageSize; i++) {
111+
this.list.push(this.list.length + 1);
112+
}
113+
this.page++;
114+
}
115+
},
116+
}
117+
```
118+
119+
### Load Error Info
120+
121+
```html
122+
<vue-loadmore
123+
:on-loadmore="onLoad"
124+
:finished="finished"
125+
:error.sync="error">
126+
<div v-for="(item, i) of list" :key="i"></div>
127+
</vue-loadmore>
128+
```
129+
130+
```js
131+
export default {
132+
data() {
133+
return {
134+
list: [],
135+
finished: false,
136+
error: false,
137+
};
138+
},
139+
methods: {
140+
onLoad() {
141+
fetchSomeThing().catch(() => {
142+
this.error = true;
143+
});
144+
},
145+
},
146+
};
147+
```
148+
149+
## API
150+
151+
### Props
152+
153+
| Attribute | Description | Type | Default |
154+
| --- | --- | --- | --- |
155+
| on-refresh | Will be Emitted when pull refresh | _function_ | - |
156+
| pulling-text | The Text when pulling in refresh | _string_ | `Pull down to refresh` |
157+
| loosing-text | The Text when loosing in refresh | _string_ | `Loosing to refresh` |
158+
| loading-text | The Text when loading in refresh | _string_ | `Refreshing` |
159+
| success-text | The Text when loading success in refresh | _string_ | `Refresh success` |
160+
| show-success-text | Whether to show `success-text` | _boolean_ | `true` |
161+
| pull-distance | The distance to trigger the refresh status | _number \| string_ | `50` |
162+
| head-height | The height of the area of the refresh shows | _number \| string_ | `50` |
163+
| animation-duration | Animation duration of the refresh | _number \| string_ | `200` |
164+
| on-loadmore | Will be Emitted when scroll to the bottom | _function_ | - |
165+
| immediate-check | Whether to check loadmore position immediately after mounted | _boolean_ | `true` |
166+
| load-offset | The `on-loadmore` will be Emitted when the distance from the scroll bar to the bottom is less than the `load-offset` | _number \| string_ | `50` |
167+
| finished | Whether the data is loaded | _boolean_ | `false` |
168+
| error | Whether the data is loaded error, the `on-loadmore` will be Emitted only when error text clicked, the `sync` modifier is needed | _boolean_ | `false` |
169+
| loading-text | The Text when loading in loaded | _string_ | `Loading` |
170+
| finished-text | The Text when the data is loaded | _string_ | `No more data` |
171+
| error-text | The Text when error loaded | _string_ | `Request failed, click to reload` |
172+
173+
### Methods
174+
175+
Use ref to get List instance and call instance methods.
176+
177+
| Name | Description | Attribute | Return value |
178+
| ----- | --------------------- | --------- | ------------ |
179+
| checkScroll | Check scroll position | - | - |
180+
181+
182+
## Example
183+
184+
You can see the demo for quickly understand how to use this package.
185+
186+
```bash
187+
git clone [email protected]:staticdeng/vuejs-loadmore.git
188+
yarn install
189+
yarn example:dev
190+
```

README.md

+48-48
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,29 @@
33

44
[![NPM](https://nodei.co/npm/vuejs-loadmore.png)](https://nodei.co/npm/vuejs-loadmore/)
55

6-
A pull-down refresh and pull-up loadmore scroll component for Vue.js.
6+
一个Vue.js 的下拉刷新和上拉加载组件。
77

8-
Easy to use by providing simple api. Unlike other component libraries, it uses the browser itself to scroll instead of js, so it has a smaller code size but does not lose the user experience.
8+
通过提供简单的api易于使用。与其他组件库不同,它使用浏览器本身而不是js来作滚动容器,因此它的代码量更小,但不损失用户体验。
99

10-
**English** | [中文](./README.zh-CN.md)
10+
**中文** | [English](./README.en-US.md)
1111

12-
## Preview
13-
[Online demo](https://staticdeng.github.io/vuejs-loadmore/)
12+
## 预览
13+
[在线demo](https://staticdeng.github.io/vuejs-loadmore/)
1414

15-
You can also scan the following QR code to access the demo
15+
也可以扫描以下二维码访问演示
1616

1717
<img src="https://user-images.githubusercontent.com/20060839/145163261-02025f86-ac87-4016-859f-15677a6d3cf7.png" width="220" height="220" >
1818

19-
## Installation
19+
## 安装 & 使用
2020

21-
#### Install the npm package
21+
#### 安装 npm
2222

2323
```bash
2424
# npm
2525
npm install vuejs-loadmore --save
2626
```
2727

28-
#### Import
28+
#### 全局导入
2929

3030
```js
3131
import Vue from 'vue';
@@ -34,9 +34,9 @@ import VueLoadmore from 'vuejs-loadmore';
3434
Vue.use(VueLoadmore);
3535
```
3636

37-
## Internationalization support
37+
## 国际化支持
3838

39-
Support Chinese zh-CN and English en-US, the default is zh-CN.
39+
支持中文 zh-CN 和英文 en-US, 默认为 zh-CN
4040

4141
```js
4242
import VueLoadmore from 'vuejs-loadmore';
@@ -46,7 +46,7 @@ Vue.use(VueLoadmore, {
4646
})
4747
```
4848

49-
You can also use `locale.use()` to specify the language.
49+
你也可以使用 `locale.use()` 指定语言。
5050

5151
```js
5252
import VueLoadmore, { locale } from 'vuejs-loadmore';
@@ -55,9 +55,9 @@ Vue.use(VueLoadmore);
5555
locale.use('en-US');
5656
```
5757

58-
## Usage
58+
## 用法
5959

60-
### Basic Usage
60+
### 基础用法
6161

6262
```html
6363
<vue-loadmore
@@ -67,11 +67,11 @@ locale.use('en-US');
6767
<div v-for="(item, i) of list" :key="i"></div>
6868
</vue-loadmore>
6969
```
70-
The `on-refresh` and `on-loadmore` will be Emitted when pull refresh or scroll to the bottom, you should need to execute the callback function `done()` after processing the data request.
70+
`on-refresh` `on-loadmore` 会在下拉刷新或滚动到底部时触发,需要在处理完数据请求后执行回调函数 `done()`
7171

72-
If you don't need refresh, only not to bind `on-refresh`.
72+
如果你不需要刷新,只需要不绑定`on-refresh`
7373

74-
When the data request is finished, the data of `finished` you can changed to true, then will show `finished-text`.
74+
当数据请求完成后,你可以将`finished`的数据改为true,这样就会显示`没有更多了`
7575

7676
```js
7777
export default {
@@ -116,7 +116,7 @@ export default {
116116
}
117117
```
118118

119-
### Load Error Info
119+
### 错误提示
120120

121121
```html
122122
<vue-loadmore
@@ -152,36 +152,36 @@ export default {
152152

153153
| Attribute | Description | Type | Default |
154154
| --- | --- | --- | --- |
155-
| on-refresh | Will be Emitted when pull refresh | _function_ | - |
156-
| pulling-text | The Text when pulling in refresh | _string_ | `Pull down to refresh` |
157-
| loosing-text | The Text when loosing in refresh | _string_ | `Loosing to refresh` |
158-
| loading-text | The Text when loading in refresh | _string_ | `Refreshing` |
159-
| success-text | The Text when loading success in refresh | _string_ | `Refresh success` |
160-
| show-success-text | Whether to show `success-text` | _boolean_ | `true` |
161-
| pull-distance | The distance to trigger the refresh status | _number \| string_ | `50` |
162-
| head-height | The height of the area of the refresh shows | _number \| string_ | `50` |
163-
| animation-duration | Animation duration of the refresh | _number \| string_ | `200` |
164-
| on-loadmore | Will be Emitted when scroll to the bottom | _function_ | - |
165-
| immediate-check | Whether to check loadmore position immediately after mounted | _boolean_ | `true` |
166-
| load-offset | The `on-loadmore` will be Emitted when the distance from the scroll bar to the bottom is less than the `load-offset` | _number \| string_ | `50` |
167-
| finished | Whether the data is loaded | _boolean_ | `false` |
168-
| error | Whether the data is loaded error, the `on-loadmore` will be Emitted only when error text clicked, the `sync` modifier is needed | _boolean_ | `false` |
169-
| loading-text | The Text when loading in loaded | _string_ | `Loading` |
170-
| finished-text | The Text when the data is loaded | _string_ | `No more data` |
171-
| error-text | The Text when error loaded | _string_ | `Request failed, click to reload` |
172-
173-
### Methods
174-
175-
Use ref to get List instance and call instance methods.
176-
177-
| Name | Description | Attribute | Return value |
178-
| ----- | --------------------- | --------- | ------------ |
179-
| checkScroll | Check scroll position | - | - |
180-
181-
182-
## Example
183-
184-
You can see the demo for quickly understand how to use this package.
155+
| on-refresh | 顶部下拉触发 | _function_ | - |
156+
| pulling-text | 下拉显示文本 | _string_ | `下拉刷新` |
157+
| loosing-text | 释放显示文本 | _string_ | `释放刷新` |
158+
| loading-text | 正在刷新显示文本 | _string_ | `正在刷新` |
159+
| success-text | 刷新完成显示文本 | _string_ | `刷新完成` |
160+
| show-success-text | 是否显示`success-text` | _boolean_ | `true` |
161+
| pull-distance | 触发正在刷新状态的距离 | _number \| string_ | `50` |
162+
| head-height | 正在刷新显示区域的高度 | _number \| string_ | `50` |
163+
| animation-duration | 下拉刷新动画持续时间 | _number \| string_ | `200` |
164+
| on-loadmore | 滚动到底部触发 | _function_ | - |
165+
| immediate-check | 是否在mounted之后立即检查 | _boolean_ | `true` |
166+
| load-offset | 当滚动条到底部的距离小于 `load-offset` 时,会发出 `on-loadmore` | _number \| string_ | `50` |
167+
| finished | 数据是否加载完毕,改变为true,则会显示`finished-text` | _boolean_ | `false` |
168+
| error | 数据是否加载错误,`on-loadmore`只有在点击错误文本时才会触发,需要`sync`修饰符 | _boolean_ | `false` |
169+
| loading-text | 滚动到底部正在加载显示文本 | _string_ | `正在加载` |
170+
| finished-text | 滚动到底部加载完毕的显示文本 | _string_ | `没有更多了` |
171+
| error-text | 加载错误显示文本 | _string_ | `请求失败,点击重新加载` |
172+
173+
### 方法
174+
175+
使用 ref 获取 List 实例并调用实例方法。
176+
177+
| Name | Description |
178+
| ----- | --------------------- |
179+
| checkScroll | 检查当前的滚动位置,若已滚动至底部,则会触发 `on-loadmore` |
180+
181+
182+
## 例子
183+
184+
查看demo以快速了解如何使用此包。
185185

186186
```bash
187187
git clone [email protected]:staticdeng/vuejs-loadmore.git

0 commit comments

Comments
 (0)