前言
React中编写样式css(styled-components).pngReact是一个构建用户界面的js库,从UI=render()这个等式中就很好的映射了这一点,UI的显示取决于等式右边的render函数的返回值.
而编写React应用,就是在编写React组件,组件中最重要的数据就是props和state,有了数据,怎么让其以什么样的显示,那就是CSS做的事情了
在React中,一切皆可以是Js,也就是说在js里面可以写css,这相比传统的内容(html),层叠样式(css),行为动作(js)进行分离,这种分离仅仅是把三个不同的技术进行了物理上的分离,进行分开管理,如果从另一个视觉角度上讲,并没有实现高内聚的特点
既然前端本身就是页面的展示,那么把js和css放在一起,也是一种细粒度的组合,css也可以和Js一样,通过模块化的形式嵌入到js里面去
CSS modules很好的解决了样式冲突,利用了分而治之的理念,在如今组件化开发大行其道上,同样css也在不断的进化,如同js一样,也有变量,函数等具备Js一样的活力,那么在React中是怎么实现样式的模块化的?
-
通过单独的*.css文件定义组件的样式,并且通过clssName指定他们,有什么不好的?
-
在JSX上进行事件的监听绑定,通过on*EventType只针对原生的HTML标签起作用的,如果是自定义的组件,是不起作用的,有什么好的解决办法?
-
样式化组件的魅力(特点)
那么本节就是你想要知道的
如果想阅读体验更好,戳该链接,React中编写样式css(styled-components)
React中组件形式
关于React中定义组件的形式,有如下几种方式,其中前两个在之前的学习当中,相信你已经很熟悉了的,如果不清楚,可以查看前面的内容的
-
类class声明的组件(类组件/容器组件)
-
函数式声明的组件(函数组件/无状态组件/UI组件)
-
样式化组件(styled-components)
本节主要讲的就是样式化组件,给一个React组件添加样式,有哪些方式?下面一起来看看的
行内样式 VS 外部样式
想要给React组件添加样式,常见的方式有
-
在JSX上添加style属性定义行内样式
-
通过import关键字引入外部样式
像如下所示,在JSX上添加样式: 下面的代码是用class类组件声明了一个Header组件,这个组件返回了一个button按钮,给这个按钮通过style添加了一些样式
import React, { Fragment, Component } from 'react';
import ReactDOM from 'react-dom';
class Header extends Component {
render(){
return (
<Fragment>
<button style = {{ width: '100px', height: '40px', borderRadius: '3px', outline: 'none', outline: 'none', border: 'none', cursor: 'pointer', background: '#abcdef', color: '#fff'}}>button按钮</button>
</Fragment>
);
}
}
const container = document.getElementById('root');
ReactDOM.render(<Header />, container);
对于上面的行内样式,也可以把它定义成一个对象Object的方式去定义样式,与下面是等价的
class Header extends Component {
render(){
const btnStyle = {
width: '100px',
height: '40px',
borderRadius: '3px',
outline: 'none',
border: 'none',
cursor: 'pointer',
background: '#abcdef',
color: '#fff'
}
return (
<Fragment>
<button style = { btnStyle }>button按钮</button>
</Fragment>
);
}
}
虽然这样也是在JS中写css样式,但是管理起来并不方便,很多时候,我们是用clssName的方式去定义样式的 ,按照我们熟悉的方式,就是把样式文件命名成*.css,然后通过import的方式给引入进去
import "./style.css";
对于样式名,有时候,对于各个不同的组件的className有可能会一样,如果是这样的话,后面引入的样式名会覆盖前面的,这样的话显然不是我们想要的结果了
那有什么好的解决办法?
在React中有css-in-js,它是一种模式,这个css由js生成而不是在外部文件中定义,是CSS Modules,主要是借助第三方库生成随机类名称的方式来建立一种局部类名的方式
这种css-in-js的第三方模块有很多:可以访问:https://github.com/MicheleBertoli/css-in-js
今天的主要学习的是github上star数最多的,styled-components
使用styled-components的好处是:它可以让组件自己的样式对自己生效,不是全局生效,做到互不干扰
首先你得通过npm或者cnpm进行安装styled-components模块
npm install -S styed-components
在安装完后,在使用styled-components的文件内,通过import的方式引入该模块
如下代码所示: 在文件的上方引入styled-components,实例化了一个styled对象,通过给styled对象下添加你想要的html元素,利用了Es6中的一个模板字符串,反引号
import React, { Fragment, Component } from 'react';
import ReactDOM from 'react-dom';
import styled from "styled-components"; // 引入styled-components库,实例化styled对象
// 声明样式ButtonA组件,通过styled对象进行创建,注意styled.html元素,后面是反引号
const ButtonA = styled.button`
width: 100px;
height: 40px;
border-radius: 3px;
outline: none;
border: none;
cursor: pointer;
background: #abcdef;
color: #fff;
`;
// 样式化声明ButtonB组件
const ButtonB = styled.button`
background: red;
color: #fff;
width: 100px;
height: 40px;
border-radius: 3px;
outline: none;
border: none;
cursor: pointer;
`;
class Header extends Component {
render(){
return (
<Fragment>
<ButtonA>按钮A</ButtonA>
<ButtonB>按钮B</ButtonB>
</Fragment>
);
}
}
const container = document.getElementById('root');
ReactDOM.render(<Header />, container);
这是渲染的结果:
注意:要避免在render方法中声明样式化组件 如下所示:这样程序虽然不报错,但是会引起性能问题,引起组件不必要的渲染
下面这种做法是不推荐的,应当避免使用
class Header extends Component {
render() {
const ButtonA = styled.button`
width: 100px;
height: 40px;
border-radius: 3px;
outline: none;
border: none;
cursor: pointer;
background: #abcdef;
color: #fff;
`;
// 声明样式ButtonB组件,不应该在render函数里面声明样式组件
const ButtonB = styled(ButtonA)`
background: red;
`;
return (
<Fragment>
<ButtonA>按钮A</ButtonA>
<ButtonB>按钮B</ButtonB>
</Fragment>
);
}
}
因为在render方法中声明样式化组件,每次都会动态渲染创建一个新的组件。这意味着React必须在每个后续渲染中丢弃并重新计算DOM树的那部分,而不是仅计算它们之间发生变化的差异。这会导致性能瓶颈
正确的做法就是如同刚开始那样,把样式组件放到组件最外面去
当然,为了便于样式的集中管理,对于样式化组件,我们往往会把它写在一个文件中去,把上面的样式组件放到一个style.js的文件中去,然后通过Es6中模块化的export的方式对外暴露出去,只要哪个组件模块需要,直接通过import引入即可
import styled from "styled-components"; // 引入styled-components
// 声明样式ButtonA组件
const ButtonA = styled.button`
width: 100px;
height: 40px;
border-radius: 3px;
outline: none;
border: none;
cursor: pointer;
background: #abcdef;
color: #fff;
`;
// 声明样式ButtonB组件
const ButtonB = styled.button`
background: red;
color: #fff;
width: 100px;
height: 40px;
border-radius: 3px;
outline: none;
border: none;
cursor: pointer;
`;
// 对外暴露出去
export {
ButtonA,
ButtonB
}
细心的朋友你会发现,其实两个按钮有很多相同的样式,只有背景颜色不一样而已,如果重复写很多样式,那么肯定是有很多冗余的代码,styled-components中提供了继承的能力
要创建一个继承另一个样式的新组件,只需将其包装在styled(继承的组件)构造函数中即可,如下所示
// 声明样式ButtonA组件
const ButtonA = styled.button`
width: 100px;
height: 40px;
border-radius: 3px;
outline: none;
border: none;
cursor: pointer;
background: #abcdef;
color: #fff;
`;
// 声明样式ButtonB组件,同时样式ButtonB组件继承了ButtonA组件的样式,又给自身拓展了样式,更改了自身的背景色
const ButtonB = styled(ButtonA)`
background: red;
`;
在要使用样式组件的地方通过import引入ButtonA,ButtonB组件
import React, { Fragment, Component } from 'react';
import ReactDOM from 'react-dom';
import {
ButtonA,
ButtonB
}
from './style'
class Header extends Component {
render(){
return (
<Fragment>
<ButtonA>按钮A</ButtonA>
<ButtonB>按钮B</ButtonB>
</Fragment>
);
}
}
const container = document.getElementById('root');
ReactDOM.render(<Header />, container);
样式组件可以接收props
对于组件外部定义的属性,在样式组件内可以进行接收,写一些简单的逻辑表达式 如下所示:在确定按钮组件内设置了一个color属性,在样式组件内可以通过props进行接收
import React, { Fragment, Component } from 'react';
import ReactDOM from 'react-dom';
import {
Button
}
from './style'
class Header extends Component {
render() {
return (
<Fragment>
<Button>取消</Button>
<Button color="red">确定</Button>
</Fragment>
);
}
}
const container = document.getElementById('root');
ReactDOM.render(<Header />, container);
在样式组件内,属性值可以通过Es6中的插值表达式,${表达式}的方式进行指定的逻辑判断,达到自己想要的目的
import styled from "styled-components"; // 引入styled-components
// 声明样式Button组件
const Button = styled.button`
width: 100px;
height: 40px;
border-radius: 3px;
outline: none;
border: none;
cursor: pointer;
background: ${props => props.color ? "red": '#fff'};
color: ${(props) => props.color ? '#fff': 'red'};
border: 2px solid red;
margin-right: 15px;
`;
// 对外暴露出去
export {
Button
}
渲染的结果如下所示
样式化组件接收参数.png
这里只是为了说明在样式化组件内部可以接收props值,有时候,在一些场景下是很有用的
例如:自己封装一些自己组件,不同大小按钮等等的,通过在组件外部设置属性值,然后在样式组件内部进行接收,控制组件的样式UI形态
当然这种简单的样式处理,完全是可以用上面继承的方式去处理的
值得注意的是,在插入背景图片时,是不支持直接插入的,这样是不生效的
const Content = styled.div`
width: 550px;
height: 290px;
background:url('./react.jpg');
`;
引入本地图片必须得通过定义变量的方式来实现,如下所示
import BgImg from './react.jpg'; // 将图片定义成一个变量的方式来引用
const Content = styled.div`
width: 550px;
height: 290px;
background: url(${BgImg}); // 注意这里用Es6中的模板语法
`;
.attrs方法支持给组件添加属性
attrs是一个构造方法,可以给样式组件添加自身的额外属性(这个属性只允许html标签原生自有的属性),不支持自定义属性,要想添加自定义属性,只能在jsx元素上进行添加
attrs可接收两种类型的参数:
-
参数可以接收一个对象,通过它添加的属性,会被合并到样式组件当中去
-
参数可以是一个函数,如果有props值,则可使用该模式 如下代码所示
import styled from "styled-components"; // 引入styled-components
// 参数是一个对象
const Input = styled.input.attrs({
placeholder: '请输入信息',
type: 'text'
})`
width:${props => props.width};
height: ${props => props.size === 'small'? '24px': '40px'};
font-size: 14px;
text-indent: 10px;
border-radius: 3px;
border: 1px solid palevioletred;
display: block;
margin: 0 0 1em;
::placeholder {
color: palevioletred;
}
`
// 对外暴露出去
export {
Input
}
在要引用组件处
import React, { Fragment, Component } from 'react';
import ReactDOM from 'react-dom';
import {
Input
}
from './style'
class Header extends Component {
render() {
return (
<Fragment>
<Input width="150px" placeholder="请输入账号" size="small"/>
<Input width="200px" placeholder="请输入密码" size='large' type="password" />
</Fragment>
);
}
}
const container = document.getElementById('root');
ReactDOM.render(<Header />, container);
渲染结果如下所示:
attrs.png
如果有参数可以将样式组件写成下面这样,attrs内可接收一个函数,并且通过props接收外部的属性值
const Input = styled.input.attrs(props => ({ // 参数是一个函数,可以通过props进行接收
placeholder: '请输入信息',
type: 'text'
}))`
width:${props => props.width};
height: ${props => props.size === 'small'? '24px': '40px'};
// 如下省略
`
注意:关于样式的优先级
行内样式>外部样式(样式组件),如果行内元素设置的了默认值,则行内样式优先
否则,在attrs内设置的属性会覆盖外部的属性
至于什么时候用attrs
使用attrs将属性传递给样式化组件
当你希望样式化组件的每个实例都具有该prop时使用attrs,换句话说,通过attrs设置的属性,它是公共的,如果每个实例需要不同的实例时则可直接传递props
如何覆盖默认样式
有时候,需要覆盖样式最粗鲁的方式就是在属性后面加权重,通过!important来完成,但这很容易出错,并且很容易出问题
具体的实现方式是通过&符号的方式,每添加一个&符号,都会随机生成一个类样式
const ButtonB = styled(ButtonA)`
&&& {
color: palevioletred;
font-weight: bold;
}
`
如下图所示
如何覆盖默认样式.png
如何覆盖内联样式
内联样式的优先级是最高的,始终优先于外部CSS,因此无法通过简单地样式组件覆盖它,但是有具体的解决办法的, 就是使用&[style]和!important加权重的方式
有时候,如果在JSX上声明了行内样式,但是外部想要覆盖它,那么这个时候,&[style]和import加权重的方式就很有用了的,但是在实际开发中,应该避免使用行内样式,在这里只是为了说明诸如此类的解决办法
const ButtonB = styled(ButtonA)`
&[style]{
background: blue !important;
font-weight: bold;
}
`;
同样,每追加一个&符号,都会新添加一个类,在实际的项目中,应当少用行内样式的,不要一时爽,后面给自己挖坑的
重置全局样式
对于React中重置默认样式,它使用的是createGlobalStyle这个函数,需要从styled-components中注入 如下所示:
import { createGlobalStyle } from 'styled-components'
const globalStyle = createGlobalStyle`
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
`
export default globalStyle;
一般而言,把重置样式单独的定义成一个文件,单独的引入到index.js当中去的,全局生效的
需要注意的是:在早先的版本中使用全局的方式是injectGlobal,而这个API已经废弃,并由styled-components v4中的createGlobalStyle替换了
CSS-module编写样式
在使用create-react-app脚手架创建的项目后,该项目是支持css-module的
但是需要注意以下几点:
-
样式文件的名称必须以xxx.module.css或者xxx.module.scss的形式命名:例如styles.module.css或者styles.module.scss
-
以变量的形式导入样式文件,比如:import styles from './style.module.css',如果是直接导入xxx.css,在JSX元素上的className的属性名称,是无法通过变量对象引入样式的,如果是直接引入样式,则在className的属性值中直接引入类名即可
-
className以变量引用的方式进行添加,例如:className ={styles.counter}
-
使用sass时,脚手架创建的项目,默认是支持sass的,使用时只需要安装一下node-sass这个包即可
在根文件夹下定义styles.module.css文件,写入如下几行样式代码
.counter{
text-align: center;
}
.button{
padding: 0 10px;
}
.spanText{
padding: 0 15px;
}
在使用css-module样式的文件内,通过import的方式引入该xxx.module.css文件
import React, { Fragment, Component } from 'react';
import ReactDOM from 'react-dom';
import styles from './styles.module.css'; // 引入styles.module.css,实例化一个styles对象
class Counter extends Component {
constructor(props){
super(props);
this.state = {
count: 0
}
}
increment = () => this.setState({ count: this.state.count + 1 })
decrement = () => this.setState({ count: this.state.count - 1 })
render() {
return (
<Fragment>
<div className={styles.counter}>
<button className={styles.button} onClick={this.decrement}>
-
</button>
<span className={styles.spanText}>{this.state.count}</span>
<button className={styles.button} onClick={this.increment}>
+
</button>
</div>
</Fragment>
)
}
}
const container = document.getElementById('root');
ReactDOM.render(<Counter />, container);
具体效果如下所示:
数字加减成样式组件.gif
对于以上的写法,是我们在React中常见的写法,但是如果用styled-components的方式,那又该怎么样?如下代码所示
import React, { Fragment, Component } from 'react';
import ReactDOM from 'react-dom';
import styled from "styled-components"; // 引入styled-components
// 在Render函数外定义样式组件
const CounterWrap = styled.div`
text-align: center;
`
const SpanText = styled.span`
padding: 0 15px;
`
const Button = styled.button`
padding: 0 10px;
`
class Counter extends Component {
constructor(props) {
super(props);
this.state = {
count: 0
}
}
increment = () => this.setState({ count: this.state.count + 1 })
decrement = () => this.setState({ count: this.state.count - 1 })
render() {
return (
<Fragment>
<CounterWrap>
<Button onClick={this.decrement}>-</Button>
<SpanText>{this.state.count}</SpanText>
<Button onClick={this.increment}>+</Button>
</CounterWrap>
</Fragment>
)
}
}
const container = document.getElementById('root');
ReactDOM.render(<Counter />, container);
当然你可以跟之前一样,把样式组件单独的抽离出去的,然后通过export对外暴露出去的,当需要使用时,在另一文件内通过import引入即可
对于样式组件的命名:因为是组件,所以约定俗成的首字母大写,这是为了区分普通的html标签元素
小tip:在vs-code推荐插件:vscode-styled-components
下面来总结一些styled-components的一些特性
styled-components支持的特性
-
支持嵌套,变量和继承:可以使用类似sass,less的语法嵌套,可以使用变量来设置不同的样式,使用这些不同样式时只需要给样式组件传递一个参数就可以了的,在样式化组件内部可以通过props来接收外部的的参数值
-
事件监听绑定:对于自定义的样式化组件可以进行事件监听的绑定,这正是解决类class声明的自定义组件,无法绑定事件监听的痛点,onEventType事件类型只针对原生HTML标签才起作用,而样式化组件正好弥补了这一点
-
模块化css:按需引入组件的代码,避免了一些多余的代码
-
唯一类名,没有类名错误,重复:styled-components生成的样式生成唯一的类名。永远不必担心重复,重叠或拼写错误
-
更容易的删除样式,维护简单:编写的样式都与特定组件相关联,如果组件未使用(工具可以检测到)并被删除,则所有样式都将被删除,保持功能性的单一,达到了高内聚,低耦合的组件化特点
-
动态样式:样式组件内可以接收参数,很简单地调整和拓展组件的样式,而不需要建立很多个 class 类来维护组件的样式
总结
本文主要讲解了React编写样式的姿势,并不是什么高大上的内容,比较基础
通过styled-components第三方库的的引入,编写样式化组件,这个并不是必须的,视项目公司团队而定,不使用这个,通过css-module编写React的样式也是可以的
当然若是使用了styled-components,便解决了一些问题,例如,样式覆盖,命名等痛点,以及解决了在类声明组件当中,无法给自定义组件绑定事件的问题
本文只是学习了styled-components的一些常用的知识,至于更多styled-components详细的使用:可以多查阅styled-components的官方文档的
itclancoder二维码.jpg
网友评论