feat(CollapseItem): add toggle method (#7281)

* feat(CollapseItem): add toggle method

* chore: update doc
This commit is contained in:
neverland 2020-09-29 20:49:22 +08:00 committed by GitHub
parent 053a68e40d
commit 8d2c4b1e46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
38 changed files with 132 additions and 50 deletions

View File

@ -112,7 +112,7 @@ export default {
### Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get AddressEdit instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get AddressEdit instance and call instance methods.
| Name | Description | Attribute | Return value |
| ---------------- | ------------------ | --------------------- | ------------ |

View File

@ -112,7 +112,7 @@ export default {
### 方法
通过 ref 可以获取到 AddressEdit 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 AddressEdit 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| ---------------- | ------------ | --------------------- | ------ |

View File

@ -89,7 +89,7 @@ To have a selected valuesimply pass the `code` of target area to `value` prop
### Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Area instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Area instance and call instance methods.
| Name | Description | Attribute | Return value |
| ----- | ------------------------- | ------------- | ------------ |

View File

@ -89,7 +89,7 @@ Vue.use(Area);
### 方法
通过 ref 可以获取到 Area 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 Area 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |

View File

@ -312,7 +312,7 @@ Following props are supported when the type is multiple
### Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Calendar instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Calendar instance and call instance methods.
| Name | Description | Attribute | Return value |
| ----- | ----------------------------------- | --------- | ------------ |

View File

@ -316,7 +316,7 @@ export default {
### 方法
通过 ref 可以获取到 Calendar 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 Calendar 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| ------ | ---------------------- | ---- | ------ |

View File

@ -255,7 +255,7 @@ export default {
### CheckboxGroup Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get CheckboxGroup instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get CheckboxGroup instance and call instance methods.
| Name | Description | Attribute | Return value |
| --- | --- | --- | --- |
@ -263,7 +263,7 @@ Use [ref](https://vuejs.org/v2/api/#ref) to get CheckboxGroup instance and call
### Checkbox Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Checkbox instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Checkbox instance and call instance methods.
| Name | Description | Attribute | Return value |
| ------ | ------------------- | ------------------- | ------------ |

View File

@ -275,7 +275,7 @@ export default {
### CheckboxGroup 方法
通过 ref 可以获取到 CheckboxGroup 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 CheckboxGroup 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |
@ -283,7 +283,7 @@ export default {
### Checkbox 方法
通过 ref 可以获取到 Checkbox 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 Checkbox 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |

View File

@ -105,15 +105,17 @@ export default createComponent({
methods: {
onClick() {
if (this.disabled) {
return;
if (!this.disabled) {
this.toggle();
}
},
// @exposed-api
toggle(expanded = !this.expanded) {
const { parent, currentName } = this;
const close = parent.accordion && currentName === parent.value;
const name = close ? '' : currentName;
parent.switch(name, !this.expanded);
this.parent.switch(name, expanded);
},
onTransitionEnd() {

View File

@ -126,3 +126,11 @@ export default {
| icon | Custom icon |
| title | Custom title |
| right-icon | Custom right icon |
### CollapseItem Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get CollapseItem instance and call instance methods.
| Name | Description | Attribute | Return value |
| --- | --- | --- | --- |
| toggle `v2.10.9` | Toggle expanded status | _expanded: boolean_ | - |

View File

@ -117,10 +117,18 @@ export default {
### CollapseItem Slots
| 名称 | 说明 |
| ---------- | ----------------------------- |
| default | 面板内容 |
| value | 自定义显示内容 |
| icon | 自定义`icon` |
| title | 自定义`title` |
| right-icon | 自定义右侧按钮,默认是`arrow` |
| 名称 | 说明 |
| ---------- | ------------------------------ |
| default | 面板内容 |
| value | 自定义显示内容 |
| icon | 自定义 `icon` |
| title | 自定义 `title` |
| right-icon | 自定义右侧按钮,默认是 `arrow` |
### CollapseItem 方法
通过 ref 可以获取到 CollapseItem 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)。
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |
| toggle `v2.10.9` | 切换面试展开状态,传 `true` 为展开,`false` 为收起,不传参为切换 | _expand?: boolean_ | - |

View File

@ -144,3 +144,61 @@ test('warn when value type is incorrect', () => {
expect(error).toHaveBeenCalledTimes(1);
console.error = originConsoleError;
});
test('toggle method', (done) => {
mount({
template: `
<van-collapse v-model="active" >
<van-collapse-item name="a" ref="a" />
<van-collapse-item name="b" ref="b" />
</van-collapse>
`,
data() {
return { active: [] };
},
mounted() {
this.$refs.a.toggle();
expect(this.active).toEqual(['a']);
this.$refs.b.toggle();
expect(this.active).toEqual(['a', 'b']);
this.$refs.b.toggle(false);
expect(this.active).toEqual(['a']);
this.$refs.a.toggle();
expect(this.active).toEqual([]);
done();
},
});
});
test('toggle method in accordion mode', (done) => {
mount({
template: `
<van-collapse v-model="active" accordion>
<van-collapse-item name="a" ref="a" />
<van-collapse-item name="b" ref="b" />
</van-collapse>
`,
data() {
return { active: '' };
},
mounted() {
this.$refs.a.toggle();
expect(this.active).toEqual('a');
this.$refs.b.toggle();
expect(this.active).toEqual('b');
this.$refs.b.toggle(false);
expect(this.active).toEqual('');
this.$refs.a.toggle();
expect(this.active).toEqual('a');
done();
},
});
});

View File

@ -156,7 +156,7 @@ export default {
### Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get CountDown instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get CountDown instance and call instance methods.
| Name | Description | Attribute | Return value |
| ----- | ---------------- | --------- | ------------ |

View File

@ -166,7 +166,7 @@ export default {
### 方法
通过 ref 可以获取到 CountDown 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 CountDown 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |

View File

@ -294,7 +294,7 @@ Following props are supported when the type is time
### Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get DatetimePicker instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get DatetimePicker instance and call instance methods.
| Name | Description | Attribute | Return value |
| ------------------ | ------------------- | --------- | ------------ |

View File

@ -303,7 +303,7 @@ export default {
### 方法
通过 ref 可以获取到 DatetimePicker 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 DatetimePicker 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |

View File

@ -163,11 +163,11 @@ Use `active-color` prop to custom active color of the title and options.
### DropdownItem Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get DropdownItem instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get DropdownItem instance and call instance methods.
| Name | Description | Attribute | Return value |
| ------ | -------------- | ------------- | ------------ |
| toggle | Toggle display | show: boolean | - |
| Name | Description | Attribute | Return value |
| ------ | -------------- | --------------- | ------------ |
| toggle | Toggle display | _show: boolean_ | - |
### Data Structure of Option

View File

@ -167,11 +167,11 @@ export default {
### DropdownItem 方法
通过 ref 可以获取到 DropdownItem 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 DropdownItem 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |
| toggle | 切换菜单展示状态,传`true`为显示,`false`为隐藏,不传参为取反 | show?: boolean | - |
| toggle | 切换菜单展示状态,传 `true` 为显示,`false` 为隐藏,不传参为取反 | _show?: boolean_ | - |
### Option 数据结构

View File

@ -270,7 +270,7 @@ Field support all native events of input tag
### Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Field instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Field instance and call instance methods.
| Name | Description | Attribute | Return value |
| ----- | ------------------- | --------- | ------------ |

View File

@ -295,7 +295,7 @@ export default {
### 方法
通过 ref 可以获取到 Field 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 Field 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| ------ | -------------- | ---- | ------ |

View File

@ -467,7 +467,7 @@ export default {
### Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Form instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Form instance and call instance methods.
| Name | Description | Attribute | Return value |
| --- | --- | --- | --- |

View File

@ -508,7 +508,7 @@ export default {
### 方法
通过 ref 可以获取到 Form 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 Form 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |

View File

@ -162,7 +162,7 @@ export default {
### Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get List instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get List instance and call instance methods.
| Name | Description | Attribute | Return value |
| ----- | --------------------- | --------- | ------------ |

View File

@ -177,7 +177,7 @@ export default {
### 方法
通过 ref 可以获取到 List 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 List 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |

View File

@ -287,7 +287,7 @@ Picker events will pass different parameters according to the columns are single
### Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Picker instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Picker instance and call instance methods.
| Name | Description | Attribute | Return value |
| --- | --- | --- | --- |

View File

@ -312,7 +312,7 @@ export default {
### 方法
通过 ref 可以获取到 Picker 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 Picker 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |

View File

@ -157,7 +157,7 @@ export default {
### Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Sku instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Sku instance and call instance methods.
| Name | Description | Attribute | Return value |
| --- | --- | --- | --- |

View File

@ -162,7 +162,7 @@ export default {
### 方法
通过 ref 可以获取到 Sku 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 Sku 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| ------------------------- | ---------------------- | ---- | ------- |

View File

@ -131,7 +131,7 @@ export default {
### Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get SwipeCell instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get SwipeCell instance and call instance methods.
| Name | Description | Attribute | Return value |
| ----- | --------------- | ------------------------ | ------------ |

View File

@ -141,7 +141,7 @@ beforeClose 的第一个参数为对象,对象中包含以下属性:
### 方法
通过 ref 可以获取到 SwipeCell 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 SwipeCell 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| ------ | ---------------- | ------------------------ | ------ |

View File

@ -187,7 +187,7 @@ export default {
### Swipe Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Swipe instance and call instance methods.
Use [ref](https://vuejs.org/v2/api/#ref) to get Swipe instance and call instance methods..
| Name | Description | Attribute | Return value |
| --- | --- | --- | --- |

View File

@ -193,7 +193,7 @@ export default {
### Swipe 方法
通过 ref 可以获取到 Swipe 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)。
通过 ref 可以获取到 Swipe 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)。
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |

View File

@ -265,7 +265,7 @@ export default {
### Tabs Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Tabs instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Tabs instance and call instance methods.
| Name | Description | Attribute | Return value |
| --- | --- | --- | --- |

View File

@ -273,7 +273,7 @@ export default {
### Tabs 方法
通过 ref 可以获取到 Tabs 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 Tabs 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |

View File

@ -253,7 +253,7 @@ Use `disabled` prop to disable uploader.
### Methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Uploader instance and call instance methods
Use [ref](https://vuejs.org/v2/api/#ref) to get Uploader instance and call instance methods.
| Name | Description | Attribute | Return value |
| --- | --- | --- | --- |

View File

@ -281,7 +281,7 @@ before-read、after-read、before-delete 执行时会传递以下回调参数:
### 方法
通过 ref 可以获取到 Uploader 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
通过 ref 可以获取到 Uploader 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
| 方法名 | 说明 | 参数 | 返回值 |
| --- | --- | --- | --- |

5
types/collapse-item.d.ts vendored Normal file
View File

@ -0,0 +1,5 @@
import { VanComponent } from './component';
export class CollapseItem extends VanComponent {
toggle(expanded?: boolean): void;
}

3
types/index.d.ts vendored
View File

@ -6,6 +6,7 @@ import { Area } from './area';
import { Calendar } from './calendar';
import { Checkbox } from './checkbox';
import { CheckboxGroup } from './checkbox-group';
import { CollapseItem } from './collapse-item';
import { CountDown } from './count-down';
import { DatetimePicker } from './datetime-picker';
import { Dialog } from './dialog';
@ -37,7 +38,6 @@ export class CellGroup extends VanComponent {}
export class Circle extends VanComponent {}
export class Col extends VanComponent {}
export class Collapse extends VanComponent {}
export class CollapseItem extends VanComponent {}
export class ContactCard extends VanComponent {}
export class ContactEdit extends VanComponent {}
export class ContactList extends VanComponent {}
@ -97,6 +97,7 @@ export {
Calendar,
Checkbox,
CheckboxGroup,
CollapseItem,
CountDown,
DatetimePicker,
Dialog,