[Improvement] CellSwipe: add open method (#1546)

This commit is contained in:
neverland 2018-07-26 21:50:59 +08:00 committed by GitHub
parent f1a5a73124
commit 2c536b7d4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 6 deletions

View File

@ -73,7 +73,17 @@ export default {
| right | content of right scrollabe area |
### onClose Params
| Argument | Type | Description |
|-----------|-----------|-----------|
| clickPosition | `String` | Click positon (`left` `right` `cell` `outside`) |
| instance | `Object` | CellSwipe instance with a close method |
| instance | `Object` | CellSwipe instance |
### Methods
Use ref to get CellSwipe instance and call instance methods
| Name | Attribute | Return value | Description |
|-----------|-----------|-----------|-------------|
| open | position: 'left' \| 'right' | - | open CellSwipe |
| close | - | - | close CellSwipe |

View File

@ -69,6 +69,12 @@ export default create({
},
methods: {
open(position) {
const offset = position === 'left' ? this.leftWidth : -this.rightWidth;
this.swipeMove(offset);
this.resetSwipeStatus();
},
close() {
this.offset = 0;
},
@ -90,12 +96,10 @@ export default create({
// right
if (direction > 0 && -offset > rightWidth * threshold && rightWidth > 0) {
this.swipeMove(-rightWidth);
this.resetSwipeStatus();
this.open('right');
// left
} else if (direction < 0 && offset > leftWidth * threshold && leftWidth > 0) {
this.swipeMove(leftWidth);
this.resetSwipeStatus();
this.open('left');
} else {
this.swipeMove();
}

View File

@ -73,7 +73,17 @@ export default {
| right | 右侧滑动内容 |
### onClose 参数
| 参数 | 类型 | 说明 |
|-----------|-----------|-----------|
| clickPosition | `String` | 关闭时的点击位置 (`left` `right` `cell` `outside`) |
| instance | `Object` | CellSwipe 实例,挂载有 close 方法 |
| instance | `Object` | CellSwipe 实例 |
### 方法
通过 ref 可以获取到 CellSwipe 实例并调用实例方法
| 方法名 | 参数 | 返回值 | 介绍 |
|-----------|-----------|-----------|-------------|
| open | position: 'left' \| 'right' | - | 打开单元格侧边栏 |
| close | - | - | 收起单元格侧边栏 |