Skip to content

Commit

Permalink
feat(descriptions): Add contentPosition api (#2918)
Browse files Browse the repository at this point in the history
  • Loading branch information
zyprepare committed Jun 28, 2024
1 parent e9e1a99 commit c5e7b00
Show file tree
Hide file tree
Showing 9 changed files with 129 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/hungry-shirts-laugh.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@hi-ui/descriptions": minor
---

feat: Add contentPosition api
5 changes: 5 additions & 0 deletions .changeset/shaggy-vans-drive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@hi-ui/hiui": patch
---

feat(descriptions): Add contentPosition api
11 changes: 11 additions & 0 deletions packages/ui/descriptions/src/Cell.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import * as React from 'react'
import { cx, getPrefixStyleVar } from '@hi-ui/classname'
import { isNullish } from '@hi-ui/type-assertion'
import { ContentPosition } from './types'

export const Cell: React.FC<CellProps> = ({
itemPrefixCls,
Expand All @@ -14,6 +15,7 @@ export const Cell: React.FC<CellProps> = ({
content,
labelWidth,
cellColumnGap,
contentPosition: contentPositionProp = 'top',
}) => {
const Component: any = component

Expand Down Expand Up @@ -41,13 +43,21 @@ export const Cell: React.FC<CellProps> = ({
)
}

const contentPosition = {
top: 'start',
center: 'center',
bottom: 'end',
}[contentPositionProp]
console.log('contentPosition', contentPosition)

return (
<Component className={cx(`${itemPrefixCls}-item`, className)} style={style} colSpan={colSpan}>
<div
className={`${itemPrefixCls}-item__container`}
style={{
[`${getPrefixStyleVar('container-padding-right')}`]:
typeof cellColumnGap === 'number' ? cellColumnGap + 'px' : cellColumnGap,
[`${getPrefixStyleVar('container-align-items')}`]: contentPosition,
}}
>
{!isNullish(label) && (
Expand Down Expand Up @@ -75,4 +85,5 @@ export interface CellProps {
content?: React.ReactNode
labelWidth?: React.ReactText
cellColumnGap?: React.ReactText
contentPosition?: ContentPosition
}
7 changes: 7 additions & 0 deletions packages/ui/descriptions/src/Descriptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { HiBaseHTMLProps } from '@hi-ui/core'
import { cloneElement, toArray } from './util'
import { Row } from './Row'
import {
ContentPosition,
DescriptionsAppearanceEnum,
DescriptionsLabelPlacementEnum,
DescriptionsPlacementEnum,
Expand All @@ -31,6 +32,7 @@ export const Descriptions = forwardRef<HTMLDivElement | null, DescriptionsProps>
labelWidth,
columnGap,
size = 'md',
contentPosition = 'top',
...rest
},
ref
Expand Down Expand Up @@ -68,6 +70,7 @@ export const Descriptions = forwardRef<HTMLDivElement | null, DescriptionsProps>
labelPlacement={labelPlacement}
rootLabelWidth={labelWidth}
cellColumnGap={columnGap}
contentPosition={contentPosition}
/>
))}
</tbody>
Expand Down Expand Up @@ -111,6 +114,10 @@ export interface DescriptionsProps extends HiBaseHTMLProps<'div'> {
* 设置大小
*/
size?: 'md' | 'sm'
/**
* 在 horizontal 放置时,标签相对内容垂直对齐的方式
*/
contentPosition?: ContentPosition
}

if (__DEV__) {
Expand Down
6 changes: 6 additions & 0 deletions packages/ui/descriptions/src/Row.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import * as React from 'react'
import { DescriptionsItemProps } from './DescriptionsItem'
import { Cell } from './Cell'
import { ContentPosition } from './types'

export const Row: React.FC<RowProps> = (props) => {
const { prefixCls, vertical, row, index, bordered, noBackground } = props
Expand Down Expand Up @@ -50,6 +51,7 @@ export interface RowProps {
labelPlacement?: 'left' | 'center' | 'right'
rootLabelWidth?: React.ReactText
cellColumnGap?: React.ReactText
contentPosition?: ContentPosition
}

interface CellConfig {
Expand All @@ -67,6 +69,7 @@ function renderCols(
labelPlacement: labelPlacementContext,
rootLabelWidth,
cellColumnGap,
contentPosition,
}: RowProps,
{ component, type, showLabel, showContent }: CellConfig
) {
Expand Down Expand Up @@ -103,6 +106,7 @@ function renderCols(
content={showContent ? children : null}
labelWidth={labelWidth ?? rootLabelWidth}
cellColumnGap={index === items.length - 1 ? 0 : cellColumnGap}
contentPosition={contentPosition}
/>
)
}
Expand All @@ -119,6 +123,7 @@ function renderCols(
bordered={bordered}
label={label}
labelWidth={labelWidth ?? rootLabelWidth}
contentPosition={contentPosition}
/>,
<Cell
key={`content-${key || index}`}
Expand All @@ -130,6 +135,7 @@ function renderCols(
itemPrefixCls={itemPrefixCls}
bordered={bordered}
content={children}
contentPosition={contentPosition}
/>,
]
}
Expand Down
1 change: 1 addition & 0 deletions packages/ui/descriptions/src/styles/descriptions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ $prefix: '#{$component-prefix}-descriptions' !default;
&__container {
box-sizing: border-box;
display: flex;
align-items: var(--hi-v4-container-align-items, normal);
padding-right: var(--hi-v4-container-padding-right, 0);
}

Expand Down
2 changes: 2 additions & 0 deletions packages/ui/descriptions/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ export type DescriptionsPlacementEnum = 'horizontal' | 'vertical' | undefined
export type DescriptionsAppearanceEnum = 'table' | 'unset' | undefined

export type DescriptionsLabelPlacementEnum = 'left' | 'right' | undefined

export type ContentPosition = 'top' | 'center' | 'bottom'
91 changes: 91 additions & 0 deletions packages/ui/descriptions/stories/content-position.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
import React from 'react'
import Descriptions from '../src'
import Preview from '@hi-ui/preview'
import { JpgColorful } from '@hi-ui/icons'

/**
* @title 设置标签和内容对齐方式
*/
export const ContentPosition = () => {
const [images] = React.useState([
'http://i1.mifile.cn/f/i/hiui/docs/card/pic_1.png',
'http://i1.mifile.cn/f/i/hiui/docs/card/pic_2.png',
'http://i1.mifile.cn/f/i/hiui/docs/card/pic_3.png',
])
const [visible, setVisible] = React.useState(false)
const [current, setCurrent] = React.useState(0)

return (
<>
<h1>ContentPosition</h1>
<div className="descriptions-content-position__wrap">
<h2>md</h2>
<Descriptions contentPosition="center" columnGap={24}>
<Descriptions.Item label="机构类型" labelWidth={84}>
第三方网点
</Descriptions.Item>
<Descriptions.Item label="主子站类型" labelWidth={84}>
主站
</Descriptions.Item>
<Descriptions.Item label="机构状态" labelWidth={84}>
有效
</Descriptions.Item>
<Descriptions.Item label="机构名称" labelWidth={84}>
某某有限公司
</Descriptions.Item>
<Descriptions.Item label="是否自营" labelWidth={84}>
</Descriptions.Item>
<Descriptions.Item label="实体门店招牌" labelWidth={84}>
<div style={{ display: 'flex', alignItems: 'center' }}>
<JpgColorful style={{ fontSize: 16 }} />
<a href="#" style={{ textDecoration: 'none', color: '#4a9eff' }}>
主站.jpg
</a>
</div>
</Descriptions.Item>
<Descriptions.Item label="备注信息" labelWidth={84}>
备注内容可能会非常长备注内容可能会非常长备注内容可能会非常长
</Descriptions.Item>
<Descriptions.Item label="维度名称常规" labelWidth={84}>
<img
src={images[0]}
style={{ width: 40, height: 40, borderRadius: 2, cursor: 'pointer', marginRight: 6 }}
onClick={() => {
setCurrent(0)
setVisible(true)
}}
/>
<img
src={images[1]}
style={{ width: 40, height: 40, borderRadius: 2, cursor: 'pointer', marginRight: 6 }}
onClick={() => {
setCurrent(1)
setVisible(true)
}}
/>
<img
src={images[2]}
style={{ width: 40, height: 40, borderRadius: 2, cursor: 'pointer' }}
onClick={() => {
setCurrent(2)
setVisible(true)
}}
/>
</Descriptions.Item>
</Descriptions>

<Preview
title={`${current + 1}/${images.length}`}
src={images}
current={current}
onPreviewChange={setCurrent}
visible={visible}
onClose={() => {
setVisible(false)
}}
/>
</div>
</>
)
}
1 change: 1 addition & 0 deletions packages/ui/descriptions/stories/index.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export * from './config.stories'
export * from './ellipsis.stories'
export * from './bordered.stories'
export * from './label-placement.stories'
export * from './content-position.stories'
export * from './col.stories'
export * from './vertical.stories'
export * from './vertical-border.stories'
Expand Down

0 comments on commit c5e7b00

Please sign in to comment.