-
Notifications
You must be signed in to change notification settings - Fork 39
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
LuckyFBB
wants to merge
4
commits into
DTStack:master
Choose a base branch
from
LuckyFBB:feat/blockHeader_child
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
f0a9142
feat(blockheader): supprt large size and change some props name
LuckyFBB 7749dd5
feat(blockheader): change tooltip to TooltipProps and use toTooltipProps
LuckyFBB 2abcee9
feat(blockheader): support expand controll and change callname to onE…
LuckyFBB 87e496e
feat(blockheader): supprt cant collapse child
LuckyFBB File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
</> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ export interface IBlockHeaderProps { | |
description?: ReactNode; | ||
/** 默认展示为问号的tooltip */ | ||
tooltip?: LabelTooltipType; | ||
/** 后缀自定义内容块 */ | ||
/** 后缀自定义内容块 */ | ||
addonAfter?: ReactNode; | ||
/** | ||
* 小标题 font-size: 12px; line-height: 32px | ||
|
@@ -38,6 +38,10 @@ export interface IBlockHeaderProps { | |
className?: string; | ||
/** 标题的样式类名 */ | ||
style?: React.CSSProperties; | ||
// 展示内容(children)的样式类名 | ||
contentClassName?: string; | ||
// 展示内容(children)的样式 | ||
contentStyle?: React.CSSProperties; | ||
/** 是否显示背景, 默认 true */ | ||
background?: boolean; | ||
/** 当前展开状态 */ | ||
|
@@ -62,9 +66,11 @@ const BlockHeader: React.FC<IBlockHeaderProps> = function (props) { | |
hasBottom = false, | ||
spaceBottom = 0, | ||
className = '', | ||
contentClassName = '', | ||
style = {}, | ||
contentStyle = {}, | ||
background = true, | ||
defaultExpand = true, | ||
defaultExpand, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. defaultExpand 的默认值是不是应该默认为 true,去除后应该就不默认展开了吧 |
||
addonAfter, | ||
expand, | ||
children = '', | ||
|
@@ -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; | ||
|
@@ -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} | ||
|
@@ -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 | ||
|
@@ -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> | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
用块级注释吧,和其他参数保持统一