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(grid): 组件对齐 mobile-vue #448

Merged
merged 6 commits into from
Aug 21, 2024
Merged
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
2 changes: 1 addition & 1 deletion site/mobile/mobile.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default {
{
title: 'Grid 宫格',
name: 'grid',
component: () => import('tdesign-mobile-react/grid/_example/base.jsx'),
component: () => import('tdesign-mobile-react/grid/_example/index.tsx'),
},
{
title: 'Image 图片',
Expand Down
36 changes: 27 additions & 9 deletions src/grid/Grid.tsx
Original file line number Diff line number Diff line change
@@ -1,29 +1,47 @@
import React, { forwardRef } from 'react';
import { TdGridProps } from './type';
import React, { forwardRef, useMemo } from 'react';
import cls from 'classnames';
import useConfig from '../_util/useConfig';
import { StyledProps } from '../common';
import useDefaultProps from '../hooks/useDefaultProps';

import { TdGridProps } from './type';
import { GirdProvider } from './GridContext';
import { gridDefaultProps } from './defaultProps';

export interface GridProps extends TdGridProps {
children: React.ReactNode;
}
export interface GridProps extends TdGridProps, StyledProps {}

const Grid = forwardRef<HTMLDivElement, GridProps>((props, ref) => {
const { children, align, border, column, gutter } = props;
const { children, align, border, column, gutter, theme, className, style } = useDefaultProps(props, gridDefaultProps);
const { classPrefix } = useConfig();
const name = `${classPrefix}-grid`;

const rootStyle = useMemo(() => {
if (column === 0) return {};
return {
padding: `${gutter}px`,
gridTemplateColumns: `repeat(${column}, 1fr)`,
gridGap: `${gutter}px`,
...style,
};
}, [column, gutter, style]);

return (
<GirdProvider gutter={gutter} border={border} column={column} align={align}>
<div ref={ref} className={name}>
<GirdProvider gutter={gutter} border={border} column={column} align={align} theme={theme}>
<div
ref={ref}
className={cls(name, className, {
[`${name}--card`]: theme === 'card',
[`${name}--auto-size`]: column === 0,
[`${name}--bordered`]: border && !gutter,
})}
style={rootStyle}
>
{children}
</div>
</GirdProvider>
);
});

Grid.displayName = 'Grid';
Grid.defaultProps = gridDefaultProps;

export default Grid;
20 changes: 12 additions & 8 deletions src/grid/GridContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,23 @@ import { TdGridProps } from './type';

export const GridContext = createContext<TdGridProps | null>(null);

interface GridProviderProps extends TdGridProps{
interface GridProviderProps extends TdGridProps {
children: React.ReactNode;
}

export function GirdProvider(props: GridProviderProps) {
const { children, align, border, column, gutter } = props;
const { children, align, border, column, gutter, theme } = props;

const memoValue = useMemo(() => ({
align,
border,
column,
gutter,
}), [align, border, column, gutter]);
const memoValue = useMemo(
() => ({
align,
border,
column,
gutter,
theme,
}),
[align, border, column, gutter, theme],
);

return <GridContext.Provider value={memoValue}>{children}</GridContext.Provider>;
}
111 changes: 37 additions & 74 deletions src/grid/GridItem.tsx
Original file line number Diff line number Diff line change
@@ -1,28 +1,23 @@
import React, { FC, useContext, useMemo } from 'react';
import cls from 'classnames';
import { Badge } from 'tdesign-mobile-react';
import { TdGridItemProps, TdGridProps } from './type';
import isString from 'lodash/isString';
import isObject from 'lodash/isObject';
import isFunction from 'lodash/isFunction';
import { Badge, Image } from 'tdesign-mobile-react';
import useConfig from '../_util/useConfig';
import { GridContext } from './GridContext';
import parseTNode from '../_util/parseTNode';
import useDefaultProps from '../hooks/useDefaultProps';

import { TdGridItemProps, TdGridProps } from './type';
import { GridContext } from './GridContext';
import { gridItemDefaultProps } from './defaultProps';

enum LAYOUT {
VERTICAL = 'vertical',
HORIZONTAL = 'horizontal',
}

const LAYOUT_MAP = {
[LAYOUT.VERTICAL]: 'column',
[LAYOUT.HORIZONTAL]: 'row',
} as const;

const getGridItemWidth = (column: number) => `${100 / column}%`;
const getGridItemWidth = (column: number) => (column > 0 ? `${100 / column}%` : 0);

export interface GridItemProp extends TdGridItemProps, TdGridProps {}

const GridItem: FC<GridItemProp> = (prop) => {
const { description, image, layout, text, badgeProps, ...resetProps } = prop;
const { description, image, layout, text, badge, ...resetProps } = useDefaultProps(prop, gridItemDefaultProps);

const { classPrefix } = useConfig();
const { align, gutter, column, border } = useContext(GridContext);
Expand All @@ -31,88 +26,56 @@ const GridItem: FC<GridItemProp> = (prop) => {

const rootClass = useMemo(
() =>
cls(name, {
cls(name, `${name}--${layout}`, {
[`${name}--bordered`]: border,
[`${classPrefix}-is-large`]: column <= 3,
[`${name}--surround`]: border && gutter,
}),
[border, name, column, classPrefix],
[border, name, gutter, layout],
);

const isHorizontal = useMemo(() => layout === 'horizontal', [layout]);

const rootStyle = useMemo(() => {
const percent = getGridItemWidth(column);

if (border && typeof border !== 'boolean') {
const { color, width, style } = border;
return {
borderColor: color,
borderWidth: width,
borderStyle: style,
};
}

const flexDirection = isHorizontal ? LAYOUT_MAP.horizontal : LAYOUT_MAP.vertical;
const gutterSize = gutter ? `${gutter}px` : 0;

const style = {
flexBasis: percent,
flexDirection,
paddingLeft: gutterSize,
paddingRight: gutterSize,
alignItems: 'center' as const,
justifyContent: 'center' as const,
textAlign: align,
const style: React.CSSProperties = {
textAlign: ['center', 'left'].includes(align) ? align : 'center',
};

if (percent !== 0) {
style.flexBasis = percent;
}
return style;
}, [column, border, gutter, align, isHorizontal]);
}, [column, align]);

const imgStyle = useMemo(() => {
let imgSize = 32;
if (column >= 5) {
imgSize = 28;
} else if (column <= 3) {
imgSize = 48;
}
return {
width: `${imgSize}px`,
height: `${imgSize}px`,
};
const size = useMemo(() => {
if (column > 4 || !column) return 'small';
return column < 4 ? 'large' : 'middle';
}, [column]);

const gridItemImage = useMemo(() => {
if (!image) {
Lyan-u marked this conversation as resolved.
Show resolved Hide resolved
return null;
}

return typeof image === 'string' ? <img src={image} className={`${name}__image`} style={imgStyle} /> : image;
}, [image, name, imgStyle]);

const textStyle = useMemo(() => ({ paddingLeft: isHorizontal ? '12px' : 0 }), [isHorizontal]);

const titleStyle = useMemo(
() => ({
paddingTop: isHorizontal ? 0 : '8px',
marginBottom: '4px',
}),
[isHorizontal],
);
let imgProps: Record<string, any>;
if (isString(image)) {
imgProps = { src: image };
}
if (isObject(image) && !isFunction(image) && !React.isValidElement(image)) {
imgProps = image;
}
return imgProps ? <Image shape="round" {...imgProps} /> : parseTNode(image);
}, [image]);

return (
<div {...resetProps} className={rootClass} style={rootStyle}>
{badgeProps ? <Badge {...badgeProps}>{gridItemImage}</Badge> : gridItemImage}
<div className={`${name}__text`} style={textStyle}>
<div className={`${name}__title`} style={titleStyle}>
{text}
</div>
<div className={`${name}__description`}>{description}</div>
<div className={cls([`${name}__image`, `${name}__image--${size}`])}>
{badge ? <Badge {...badge}>{gridItemImage}</Badge> : gridItemImage}
</div>
<div className={cls([`${name}__content`, `${name}__content--${layout}`])}>
<div className={cls([`${name}__title`, `${name}__title--${size}`])}>{text}</div>
<div className={cls([`${name}__description`, `${name}__description--${layout}`])}>{description}</div>
</div>
</div>
);
};

GridItem.displayName = 'GridItem';
GridItem.defaultProps = gridItemDefaultProps;

export default GridItem;
Loading
Loading