Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(blockheader): supprt cant collapse child #480

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 21 additions & 6 deletions src/blockHeader/__tests__/blockHeader.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@
test('should render BlockHeader props default in BlockHeader', () => {
const { container } = render(<BlockHeader title="测试" background />);
const wrap = container.firstChild;
expect(wrap!.firstChild!.firstChild!.firstChild).toHaveClass('title__addon-before');

Check warning on line 48 in src/blockHeader/__tests__/blockHeader.test.tsx

View workflow job for this annotation

GitHub Actions / setup

Forbidden non-null assertion

Check warning on line 48 in src/blockHeader/__tests__/blockHeader.test.tsx

View workflow job for this annotation

GitHub Actions / setup

Forbidden non-null assertion

Check warning on line 48 in src/blockHeader/__tests__/blockHeader.test.tsx

View workflow job for this annotation

GitHub Actions / setup

Forbidden non-null assertion
fireEvent.click(document.getElementsByClassName(`${prefixCls}__title`)[0]);
});
test('should render BlockHeader test click event', () => {
const onChange = jest.fn();
const { getByText } = render(
<BlockHeader onExpand={onChange} title="测试">
<BlockHeader defaultExpand onExpand={onChange} title="测试">
<div>1111</div>
</BlockHeader>
);
Expand All @@ -60,15 +60,30 @@
expect(getByText('展开')).toBeTruthy();
expect(onChange).toHaveBeenCalledTimes(1);
});
test('should render expanded and collapsed BlockHeader normally if the onChange event is not set', () => {
const { getByText } = render(
test('should not render collapsed content normally', () => {
render(
<BlockHeader title="测试">
<div>Hello World!</div>
</BlockHeader>
);
expect(getByText('收起')).toBeTruthy();
fireEvent.click(document.getElementsByClassName(`${prefixCls}__title`)[0]);
expect(getByText('展开')).toBeTruthy();
const collapse = document.getElementsByClassName('title__collapse')[0];
expect(collapse).toBeFalsy();
});
test('should render content class and style', () => {
render(
<BlockHeader
title="测试"
contentStyle={{ height: 200 }}
contentClassName="custom__content"
>
<div>Hello World!</div>
</BlockHeader>
);
const container = document.getElementsByClassName(`${prefixCls}__content`)[0];
expect(container).toHaveStyle({ height: '200px' });
expect(container).toHaveClass(
'dtc-block-header__content dtc-block-header__content--active custom__content'
);
});
test('should render BlockHeader with different props', () => {
const { container, getByText } = render(<BlockHeader {...props2} />);
Expand All @@ -83,11 +98,11 @@
const props = { title: '测试1', background: false };
const { container } = render(<BlockHeader {...props} />);
const wrap = container.firstChild;
expect(wrap!.firstChild).not.toHaveClass(`background`);

Check warning on line 101 in src/blockHeader/__tests__/blockHeader.test.tsx

View workflow job for this annotation

GitHub Actions / setup

Forbidden non-null assertion
});
test('should render BlockHeader className when isSmall is small', () => {
const { container, getByText } = render(<BlockHeader {...props2} />);
const wrap = container.firstChild!;

Check warning on line 105 in src/blockHeader/__tests__/blockHeader.test.tsx

View workflow job for this annotation

GitHub Actions / setup

Forbidden non-null assertion
expect(wrap).toHaveClass(`${prefixCls} test__className`);
expect(getByText('标题2')).toHaveClass('title__text');
expect(getByText('说明文字')).toHaveClass('title__description');
Expand All @@ -96,14 +111,14 @@

test('should render BlockHeader tooltip success', () => {
const { container } = render(<BlockHeader {...props3} />);
const wrap = container.firstChild!;

Check warning on line 114 in src/blockHeader/__tests__/blockHeader.test.tsx

View workflow job for this annotation

GitHub Actions / setup

Forbidden non-null assertion
const afterTitleWrap = wrap.firstChild!.firstChild!.lastChild;

Check warning on line 115 in src/blockHeader/__tests__/blockHeader.test.tsx

View workflow job for this annotation

GitHub Actions / setup

Forbidden non-null assertion

Check warning on line 115 in src/blockHeader/__tests__/blockHeader.test.tsx

View workflow job for this annotation

GitHub Actions / setup

Forbidden non-null assertion
expect(afterTitleWrap!.firstChild).toHaveClass('anticon-question-circle');

Check warning on line 116 in src/blockHeader/__tests__/blockHeader.test.tsx

View workflow job for this annotation

GitHub Actions / setup

Forbidden non-null assertion
});

test('should render BlockHeader tooltip and desc success', () => {
const { container } = render(<BlockHeader {...props4} />);
const wrap = container.firstChild!;

Check warning on line 121 in src/blockHeader/__tests__/blockHeader.test.tsx

View workflow job for this annotation

GitHub Actions / setup

Forbidden non-null assertion
const afterTitleWrap = wrap.firstChild!.firstChild!.lastChild;
expect(afterTitleWrap).toHaveTextContent('说明文字');
});
Expand Down
15 changes: 11 additions & 4 deletions src/blockHeader/demos/expand.tsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
import React, { useState } from 'react';
import { Space } from 'antd';
import { BlockHeader } from 'dt-react-component';

export default () => {
const [expand, setExpand] = useState(false);
return (
<Space direction="vertical" style={{ width: '100%' }}>
<>
<BlockHeader
title="非受控标题"
defaultExpand={false}
hasBottom
onExpand={(expand) => console.log(expand)}
>
Hello World!
</BlockHeader>

<BlockHeader title="受控标题" expand={expand} onExpand={(expand) => setExpand(expand)}>
<BlockHeader
title="受控标题"
expand={expand}
onExpand={(expand) => setExpand(expand)}
hasBottom
>
Hello World!
</BlockHeader>
</Space>

<BlockHeader title="不可收起的标题">Hello World!</BlockHeader>
</>
);
};
38 changes: 20 additions & 18 deletions src/blockHeader/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,28 @@ demo:
<code src="./demos/basic.tsx" description="配置大小、tooltip、描述">基础使用</code>
<code src="./demos/addonBefore.tsx" description="通过 `addonBefore` 可以设置标题前的图标,不设置时默认是一个色块">自定义 icon</code>
<code src="./demos/addonAfter.tsx" description="通过 `addonAfter` 可以设置后缀自定义内容块">带提示信息的标题</code>
<code src="./demos/expand.tsx" description="若存在 `children` 则支持展开">展开/收起内容</code>
<code src="./demos/expand.tsx" description="通过配置 expand/defaultExpand 控制展开/收起">支持 `children` 做为内容展示</code>

## API

### BlockHeader

| 参数 | 说明 | 类型 | 默认值 |
| ----------------- | ---------------------------------- | --------------------------- | -------- |
| title | 标题 | `string` | - |
| addonBefore | 标题前的图标,默认是一个色块 | `React.ReactNode` | - |
| description | 标题提示文案 | `React.ReactNode` | - |
| tooltip | 默认展示问号提示 | `TooltipProps \| TooltipProps['title']` | - |
| addonAfter | 标题后的内容 | `React.ReactNode` | - |
| size | 小标题、中标题,默认为中标题 | `small \| middle \| large` | `middle` |
| className | 标题一行的样式类名 | `string` | - |
| style | 标题的样式 | `React.CSSProperties` | - |
| background | 是否显示背景 | `boolean` | `true` |
| expand | 当前展开状态 | `boolean` | |
| defaultExpand | 是否默认展开内容 | `boolean` | `true` |
| hasBottom | 是否有默认下边距 16px | `boolean` | `false` |
| spaceBottom | 自定义下边距,优先级高于 hasBottom | `number` | `0` |
| children | 展开/收起的内容 | `React.ReactNode` | - |
| onExpand | 展开/收起时的回调 | `(expand: boolean) => void` | - |
| 参数 | 说明 | 类型 | 默认值 |
| ---------------- | ---------------------------------- | --------------------------------------- | -------- |
| title | 标题 | `string` | - |
| addonBefore | 标题前的图标,默认是一个色块 | `React.ReactNode` | - |
| description | 标题提示文案 | `React.ReactNode` | - |
| tooltip | 默认展示问号提示 | `TooltipProps \| TooltipProps['title']` | - |
| addonAfter | 标题后的内容 | `React.ReactNode` | - |
| size | 小标题、中标题,默认为中标题 | `small \| middle \| large` | `middle` |
| className | 标题的样式类名 | `string` | - |
| style | 标题的样式 | `React.CSSProperties` | - |
| contentClassName | 展示内容的样式类名 | `string` | - |
| contentStyle | 展示内容的样式 | `React.CSSProperties` | - |
| background | 是否显示背景 | `boolean` | `true` |
| defaultExpand | 是否默认展开内容 | `boolean` | `true` |
| hasBottom | 是否有默认下边距 16px | `boolean` | `false` |
| expand | 当前展开状态 | `boolean` | |
| spaceBottom | 自定义下边距,优先级高于 hasBottom | `number` | `0` |
| children | 展开/收起的内容 | `React.ReactNode` | - |
| onExpand | 展开/收起时的回调 | `(expand: boolean) => void` | - |
23 changes: 16 additions & 7 deletions src/blockHeader/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface IBlockHeaderProps {
description?: ReactNode;
/** 默认展示为问号的tooltip */
tooltip?: LabelTooltipType;
/** 后缀自定义内容块 */
/** 后缀自定义内容块 */
addonAfter?: ReactNode;
/**
* 小标题 font-size: 12px; line-height: 32px
Expand All @@ -38,6 +38,10 @@ export interface IBlockHeaderProps {
className?: string;
/** 标题的样式类名 */
style?: React.CSSProperties;
// 展示内容(children)的样式类名
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

用块级注释吧,和其他参数保持统一

contentClassName?: string;
// 展示内容(children)的样式
contentStyle?: React.CSSProperties;
/** 是否显示背景, 默认 true */
background?: boolean;
/** 当前展开状态 */
Expand All @@ -62,9 +66,11 @@ const BlockHeader: React.FC<IBlockHeaderProps> = function (props) {
hasBottom = false,
spaceBottom = 0,
className = '',
contentClassName = '',
style = {},
contentStyle = {},
background = true,
defaultExpand = true,
defaultExpand,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

defaultExpand 的默认值是不是应该默认为 true,去除后应该就不默认展开了吧

addonAfter,
expand,
children = '',
Expand All @@ -76,6 +82,8 @@ const BlockHeader: React.FC<IBlockHeaderProps> = function (props) {

const currentExpand = isControlled(props) ? expand : internalExpand;

const showCollapse = typeof expand === 'boolean' || typeof defaultExpand === 'boolean';

const tooltipProps = toTooltipProps(tooltip);

let bottomStyle;
Expand All @@ -93,9 +101,9 @@ const BlockHeader: React.FC<IBlockHeaderProps> = function (props) {
<div
className={classNames(preTitleRowCls, `${preTitleRowCls}--${size}`, {
[`${preTitleRowCls}--background`]: background,
[`${preTitleRowCls}--pointer`]: children,
[`${preTitleRowCls}--pointer`]: showCollapse && children,
})}
onClick={() => handleExpand(!currentExpand)}
onClick={() => showCollapse && handleExpand(!currentExpand)}
>
<div className="title__box">
{addonBefore ? <div className="title__addon-before">{addonBefore}</div> : null}
Expand All @@ -110,7 +118,7 @@ const BlockHeader: React.FC<IBlockHeaderProps> = function (props) {
{description ? <div className={`title__description`}>{description}</div> : null}
</div>
{addonAfter && <div className={`title__addon-after`}>{addonAfter}</div>}
{children && (
{children && showCollapse && (
<div className={`title__collapse`}>
<div className="collapse__text">{currentExpand ? '收起' : '展开'}</div>
<UpOutlined
Expand All @@ -124,9 +132,10 @@ const BlockHeader: React.FC<IBlockHeaderProps> = function (props) {
</div>
{children && (
<div
className={classNames(`${prefixCls}__content`, {
[`${prefixCls}__content--active`]: currentExpand,
className={classNames(`${prefixCls}__content`, contentClassName, {
[`${prefixCls}__content--active`]: currentExpand || !showCollapse,
})}
style={contentStyle}
>
{children}
</div>
Expand Down
Loading