我向经验丰富的人提出了一个问题,他们使用React制作了可共享的组件。为每个现有的html标签创建自定义反应组件是否合理?我的意思是,例如,如果我可以使用html div
,是否有一些好处,创建我自己的自定义<Div>
让我们说,这将获得一些特定的参数作为道具(样式等)
答案 0 :(得分:0)
对div
来说可能没有多大意义,因为它只是一个普通的容器。但对于像h1, h2...
和链接这样的排版标签,这可能是一个好主意。如果设计一致,这可以帮助您使代码更清洁。但当然,一切都取决于项目。
答案 1 :(得分:0)
聚会可能要迟了,但我目前正在设计一个像您描述的系统。我认为高阶组件将是实现这一目标的方法。这是我实施的系统的开始
function style (attr) {
const background = {
primary: 'blue',
...
}
const color = {...}
const size = {
padding: {...},
...
}
return {
background: background[attr.background] || undefined,
color: color[attr.color] || undefined,
size: {
padding: size.padding[attr.size] || undefined,
borderRadius: size.borderRadius[attr.size] || undefined
}
}
}
export const Tag = tag => React.memo(props => {
const Tag = tag
const theme = style(props)
return (
<Tag
className={classNames(
tag,
props.className,
theme.background !== undefined ? `bg-${theme.background}`: '',
theme.color !== undefined ? `text-${theme.color}`: '',
theme.size.padding !== undefined ? `pad-${theme.size.padding}`: '',
theme.size.borderRadius !== undefined ? `br-${theme.size.borderRadius}`: ''
)}
>
{props.children}
</Tag>
)
})
export const Section = Tag('section');
Section.displayName = "Section";
export const Article = Tag('article');
Article.displayName = "Article";
export const Header = Tag('header');
Header.displayName = "Header";
export const Footer = Tag('footer');
Footer.displayName = "Footer";
export const Span = Tag('span');
Span.displayName = "Span";
export const Strong = Tag('strong');
Strong.displayName = "Strong";
export const Div = Tag('div');
Div.displayName = "Div";
export const Em = Tag('em');
Em.displayName = "Em";
export const Ul = Tag('ul');
Ul.displayName = "Ul";
export const Li = Tag('li');
Li.displayName = "Li";
export const H1 = Tag('h1');
H1.displayName = "H1";
export const H2 = Tag('h2');
H2.displayName = "H2";
export const H3 = Tag('h3');
H3.displayName = "H3";
export const H4 = Tag('h4');
H4.displayName = "H4";
export const H5 = Tag('h5');
H5.displayName = "H5";
export const H6 = Tag('h6');
H6.displayName = "H6";
export const P = Tag('p');
P.displayName = "P";