写在前面的废话
回到2013年,React凭空出世。但是在那时,我们会想,oh shit! 我们好不容易分离了HTML/CSS/JS, 为什么出现了JSX,我们又需要把HTML和JS耦合在一起?React 创造了 HTML in JS. 在React中,我们知道,一切即组件。那既然HTML能在js里写,为什么我们不把CSS也一起写呢?这样不才是一个真正的组件吗?
Styled-components就是为React而生的,它是CSS in JS的下一代解决方案。以往我们想要做到css scope都需要在webpack中各种配置,或者使用js的解决方案。而styled-components你只需要import styled from 'styled-components';
即可。
甚至React完美的结合,不仅是从TagName上,还有Props上。使我们的代码有更好的语义化,可维护性更强,效率更高。当然我们无需考虑它的学习成本,只要你用过CSS或者SASS都可以立刻上手,因为它本身就是一种超集的存在。
接下来,我会逐步的介绍一些这段时间以来,我非常喜欢的独有的特性。
开胃菜
const Button = styled.button`
background: #abcdef;
border-radius: 3px;
border: none;
color: white;
`;
console.log(Button); //styled component
console.log(new Button()); // react component
export default CustomButton extends React.component {
render() {
return <Button {...props} />
}
}
styled-components 用了tagged template语法,直接为我们编写样式创建组件。
继承
styled-components继承样式有两种写法如下
const Button = styled.button`
background: #abcdef;
border-radius: 3px;
border: none;
color: white;
`;
const OtherButton1 = styled(button)``;
const OtherButton2 = button.extend``; // 老的写法,不推荐,未来会被废弃
写法一的继承,仅仅只会创建不一样的css rule,而第二种写法会复制一遍base component的css rule,然后在添加不一样的进行css 权重覆盖。不推荐
当然,还有一种有趣的“继承” withComponent
,我们可以利用withComponent改变渲染的标签
const Li = styled.li`
color:#abcdef;
`;
const A = Li.withComponent('a'); // 将会渲染a标签
编译后他们会使用不同的className,这对我们想用同个样式,但是不同标签非常有用。
样式覆盖
这里所说的样式覆盖,主要是一些交互上的行为(hover, active)覆盖。其实组件继承也算是覆盖的一种。
以往我们的覆盖写法如下:
const ListItem = styled.li`
padding: 0;
height: 48px;
&.left-item-focus {
.left-link {
background: ${props => props.color};
}
}
&:hover {
.left-icon {
color: #9e9e9e; // 500
}
}
`;
而在styled中,我们可以使用styled-components 组件方式对我们的DOM进行引用,从而覆盖样式,如下
const Icon = styled.span`
color: red;
`;
const ListItem = styled.li`
&:hover ${Icon} {
color: green;
}
`;
这依旧是我们过去的思路来覆盖样式,只是我们把选择器直接使用styled
组件引用罢了。拥有这样的接口,就更加让我们无需去思考需要给组件取什么className或者id,从而达到覆盖样式的做法。然而还有我最喜欢的另外一种写法。
TIPS:组件的引用必须是styled-components包装后的组件,直接是react的会报错
const ListItem = styled.li``;
const Icon = styled.span`
color: red;
${ListItem}:hover & { // & 代表icon组件
color: green;
}
`;
这段代码实现的是一样的功能,只是我们思路转换了一下。可以发现这样的代码更加没有侵入性。更加符合开放封闭原则,当我们不需要这个Icon组件时,直接把这个Icon删除即可,我们不用去父组件里寻找与该组件有关的样式,不容易造成样式污染。突然觉得眼前一亮,有木有!
当然这种“子组件引用父级”的功能,还有更加广泛的引用。你可以选择该DOM任何parent,再对自己进行样式的覆盖。如下:
const Icon = styled.span`
color: red;
html.ie-8 & {
// fuck ie8
color: blue;
}
body.xxx & {
color: green;
}
`;
当任何父级带有class都会覆盖Icon的样式。这种“子组件引用父级”的功能也是我最喜欢的功能没有之一。
在上面可以看见我们大量使用了&
作为选择器,而&
还有另外的技巧。
const Example = styled.li`
color: red;
& {
color:blue;
}
&& {
color: green;
}
`;
大家可以猜猜,这最终会渲染成什么?
<li class='sc-gzVnrw fmpfVE'></li>
最终会编译成如下class,但是我们的一个&
就代表一个class
权重也就是说我们最后会渲染原谅色,原因是li被作用于了.fmpfVE.fmpfVE
样式表。这个功能非常有用,比如在你使用第三方组件想要覆盖它的样式的时候,我们就可以加多个&
来提高样式权重,从而覆盖第三方组件的样式
Theme
关于Theme只想说一点,那就是结合第三方组件应该如何传入Theme呢?我们有一个简单的技巧。比如使用了Material-UI,如果我们需要基于它拓展我们自己的组件,并且需要样式。
const ThemeProvider: React.SFC<ThemeProviderProps> = ({ themeName, children }) => {
const theme = themes[themeName];
return (
<StyledThemeProvider theme={theme}>
<MuiThemeProvider theme={theme}>
{React.Children.only(children)}
</MuiThemeProvider>
</StyledThemeProvider>
);
};
之后只需要把我们需要调用的组件使用styled-components提供的withTheme
包装一下我们的组件来获取我们的theme。
这样既可以在我们的styled-components里取到theme,material里也可以了。
以上就是我们所有的技巧了, 看了这么多有意思的黑科技,难道你还不爱上styled-components吗?
个人网站 http://www.meckodo
Github: https://github.com/MeCKodo
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。