Skip to content

Commit

Permalink
fix: 🐛 修复 Collapse 使用 toggleAall 方法时不会触发 before-expand 钩子的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Moonofweisheng committed Nov 22, 2024
1 parent 4bf8d1e commit 4ad83c0
Show file tree
Hide file tree
Showing 8 changed files with 183 additions and 102 deletions.
95 changes: 76 additions & 19 deletions docs/component/collapse.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,13 @@ const value = ref<string[]>(['item1'])

```html
<wd-collapse v-model="value">
<wd-collapse-item
v-for="(item, index) in itemList"
:before-expend="beforeExpend"
:key="index"
:title="item.title"
:name="item.name"
>
<wd-collapse-item v-for="(item, index) in itemList" :before-expend="beforeExpend" :key="index" :title="item.title" :name="item.name">
{{ item.body }}
</wd-collapse-item>
</wd-collapse>
```

```ts

import { useToast } from '@/uni_modules/wot-design-uni'
const toast = useToast()
const value = ref<string[]>(['item1'])
Expand Down Expand Up @@ -152,14 +145,37 @@ Collapse 查看更多的模式下,可以使用插槽定义自己想要的折
</wd-collapse>
```

## 嵌套使用

`collapse`可以嵌套使用,同时由于`collapse-item`的内容容器存在默认的`padding`,所以嵌套的`collapse`需要设置`custom-body-style`或者`custom-body-class`来覆盖默认样式。

:::tip 注意
`custom-body-style``custom-body-class``$LOWEST_VERSION$`及以上版本支持。
:::

```html
<wd-collapse v-model="collapseRoot">
<wd-collapse-item custom-body-style="padding:0 0 0 14px" v-for="item in 5" :key="item" :title="`标签${item}`" :name="`${item}`">
<wd-collapse v-model="collapseList[item - 1]">
<wd-collapse-item v-for="(item, index) in itemList" :key="index" :title="item.title" :name="item.name">{{ item.body }}</wd-collapse-item>
</wd-collapse>
</wd-collapse-item>
</wd-collapse>
```

```ts
const collapseRoot = ref<string[]>(['0'])
const collapseList = ref<Array<string[]>>([['item1'], ['item2'], ['item3'], ['item4'], ['item5']])
```

## CollapseItem Attributes

| 参数 | 说明 | 类型 | 可选值 | 默认值 | 最低版本 |
| ------------- | ----------------------------------------------------------- | -------- | ------ | ------ | -------- |
| name | 折叠栏的标识符 | string | - | - | - |
| title | 折叠栏的标题, 支持同名 slot 自定义内容 | string | - | '' | - |
| title | 折叠栏的标题, 支持同名 slot 自定义内容 | string | - | '' | - |
| disabled | 禁用折叠栏 | boolean | - | false | - |
| before-expend | 打开前的回调函数,返回 false 可以阻止打开,支持返回 Promise | Function | - | false | - |
| before-expend | 打开前的回调函数,返回 false 可以阻止打开,支持返回 Promise | Function | - | - | - |

### `before-expend` 执行时会传递以下回调参数:

Expand All @@ -185,22 +201,63 @@ Collapse 查看更多的模式下,可以使用插槽定义自己想要的折

## Methods

| 方法名 | 说明 | 参数 | 最低版本 |
| 方法名 | 说明 | 参数 | 最低版本 |
| --------- | -------------------------------------------------------------------------------- | ------------------------------------ | -------- |
| toggleAll | 切换所有面板展开状态,传 `true` 为全部展开,`false` 为全部收起,不传参为全部切换 | `options?: CollapseToggleAllOptions` | 0.2.6 |

### CollapseToggleAllOptions 参数说明

| 参数名 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
| toggleAll | 切换所有面板展开状态,传 `true` 为全部展开,`false` 为全部收起,不传参为全部切换 | _options?: boolean \| object_ | 0.2.6 |
| expanded | 是否展开,true 为展开,false 为收起 | boolean | - |
| skipDisabled | 是否跳过禁用项 | boolean | false |

### toggleAll 方法示例

```html
<wd-collapse ref="collapse">
...
</wd-collapse>
```

```ts
import { ref } from 'vue'
import type { CollapseInstance } from '@/uni_modules/wot-design-uni/components/wd-collapse/types'

const collapseRef = ref<CollapseInstance>()

// 全部切换
collapseRef.value?.toggleAll()
// 全部展开
collapseRef.value?.toggleAll(true)
// 全部收起
collapseRef.value?.toggleAll(false)

// 全部全部切换,并跳过禁用项
collapseRef.value?.toggleAll({
skipDisabled: true
})
// 全部选中,并跳过禁用项
collapseRef.value?.toggleAll({
expanded: true,
skipDisabled: true
})
```

## Collapse Slot

| name | 说明 | 最低版本 |
| ---- | ---------------------------------------------------- | -------- |
| title |标题,便于开发者自定义标题(非 viewmore 使用) | 1.2.27 |
| more | 查看更多,便于开发者自定义查看更多类型的展开收起样式 | - |
| name | 说明 | 最低版本 |
| ----- | ---------------------------------------------------- | -------- |
| title | 标题,便于开发者自定义标题(非 viewmore 使用) | 1.2.27 |
| more | 查看更多,便于开发者自定义查看更多类型的展开收起样式 | - |

## CollapseItem 外部样式类

| 类名 | 说明 | 最低版本 |
| ------------ | ----------------------- | -------- |
| custom-class | collapseItem 根节点样式 | - |
| 类名 | 说明 | 最低版本 |
| ----------------- | ------------------------------ | ---------------- |
| custom-class | collapseItem 根节点样式 | - |
| custom-body-style | 自定义折叠面板内容容器的样式 | $LOWEST_VERSION$ |
| custom-body-class | 自定义折叠面板内容容器的样式类 | $LOWEST_VERSION$ |

**注意:组件内插槽样式不生效,因此使用插槽时需注意添加外部样式类**

Expand Down
42 changes: 17 additions & 25 deletions src/pages/collapse/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@
<page-wraper>
<wd-toast></wd-toast>

<demo-block title="toggleAll" transparent>
<wd-button @click="collapse?.toggleAll()">toggleAll</wd-button>
<demo-block title="toggleAll">
<wd-button custom-class="custom-button" type="info" @click="collapse?.toggleAll()">全部切换</wd-button>
<wd-button custom-class="custom-button" type="success" @click="collapse?.toggleAll(true)">全部展开</wd-button>
<wd-button custom-class="custom-button" type="primary" @click="collapse?.toggleAll(false)">全部收起</wd-button>
<wd-button custom-class="custom-button" type="warning" @click="collapse?.toggleAll({ skipDisabled: true })">全部切换跳过禁用</wd-button>
<wd-button custom-class="custom-button" type="error" @click="collapse?.toggleAll({ expanded: true, skipDisabled: true })">
全部选中跳过禁用
</wd-button>
</demo-block>
<demo-block title="基础用法" transparent>
<wd-collapse ref="collapse" v-model="value1" @change="handleChange1">
<wd-collapse-item
:disabled="item.disabled"
v-for="(item, index) in itemList"
:before-expend="index === 2 ? beforeExpend : undefined"
:key="index"
Expand Down Expand Up @@ -60,7 +67,7 @@

<demo-block title="嵌套" transparent>
<wd-collapse v-model="collapseRoot" @change="handleChange1">
<wd-collapse-item v-for="item in 5" :key="item" :title="`标签${item}`" :name="`${item}`">
<wd-collapse-item custom-body-style="padding:0 0 0 14px" v-for="item in 5" :key="item" :title="`标签${item}`" :name="`${item}`">
<wd-collapse v-model="collapseList[item - 1]">
<wd-collapse-item v-for="(item, index) in itemList" :key="index" :title="item.title" :name="item.name">
{{ item.body }}
Expand Down Expand Up @@ -105,7 +112,8 @@ const itemList = ref<Record<string, any>[]>([
{
title: '标签2',
name: 'item2',
body: '一般情况下,买家只能向商户申请退款,商户确认可以退款后,可以通过接口或者商户平台向微信支付发起退款申请。'
body: '一般情况下,买家只能向商户申请退款,商户确认可以退款后,可以通过接口或者商户平台向微信支付发起退款申请。',
disabled: true
},
{
title: '标签3',
Expand Down Expand Up @@ -161,27 +169,6 @@ function handleChange7({ value }: any) {
console.log(value)
}
/**
function handleChange1({ value }: any) {
console.log(value)
}
function handleChange2({ value }: any) {
console.log(value)
}
function handleChange3({ value }: any) {
console.log(value)
}
function handleChange4({ value }: any) {
console.log(value)
}
function handleChange5({ value }: any) {
console.log(value)
}
function handleChange6({ value }: any) {
console.log(value)
}
/**
* 折叠面板展开前回调方法
* @param e
Expand All @@ -208,4 +195,9 @@ function beforeExpend(name: string) {
:deep(.more-slot) {
color: red;
}
:deep(.custom-button) {
margin-right: 16px;
margin-bottom: 16px;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ $-checkbox-button-disabled-border: var(--wot-checkbox-button-disabled-border, rg

/* collapse */
$-collapse-side-padding: var(--wot-collapse-side-padding, $-size-side-padding) !default; // 左右间距
$-collapse-body-padding: var(--wot-collapse-body-padding, 14px 25px) !default; // body padding
$-collapse-body-padding: var(--wot-collapse-body-padding, 14px $-size-side-padding) !default; // body padding
$-collapse-header-padding: var(--wot-collapse-header-padding, 13px $-size-side-padding) !default; // 头部padding
$-collapse-title-color: var(--wot-collapse-title-color, rgba(0, 0, 0, 0.85)) !default; // 标题颜色
$-collapse-title-fs: var(--wot-collapse-title-fs, 16px) !default; // 标题字号
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@
padding: $-collapse-header-padding;
overflow: hidden;
user-select: none;

@include when(expanded) {
@include halfPixelBorder('bottom');
}

}

@include e(title) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
import { baseProps, makeBooleanProp, makeRequiredProp, makeStringProp } from '../common/props'

export type CollapseItemBeforeExpand = (name: string) => void
export type CollapseItemBeforeExpand = (name: string) => boolean | Promise<unknown>

export const collapseItemProps = {
...baseProps,
/**
* 自定义折叠栏内容容器样式类名
*/
customBodyClass: makeStringProp(''),
/**
* 自定义折叠栏内容容器样式
*/
customBodyStyle: makeStringProp(''),
/**
* 折叠栏的标题, 可通过 slot 传递自定义内容
*/
Expand Down Expand Up @@ -33,7 +41,6 @@ export type CollapseItemExpose = {
getExpanded: () => boolean
/**
* 更新展开状态
* @returns Promise<void>
*/
updateExpand: () => Promise<void>
}
Expand Down
Loading

0 comments on commit 4ad83c0

Please sign in to comment.