0


styled-components 库的用法介绍和实践总结

styled-components 库的实践用法总结

前言

前段时间开发了一个

  1. NiceTab

浏览器插件,并写了一篇介绍文章,新开发了一款浏览器Tab管理插件,OneTab 的升级替代品, 欢迎品尝!。

在插件中用到了

  1. styled-components

这个库,于是做一个基本的介绍和分享。

在开发

  1. NiceTab

插件时,只是一些粗浅的使用,整理完这篇使用笔记后,我准备优化一波了。

styled-components 库介绍

什么是 styled-components

  1. styled-components

是一个流行的

  1. CSS-in-JS

库, 它允许您在 JavaScript 中编写 CSS 样式,是

  1. CSS-in-JS

方案中的一种实现方式。

styled-components is the result of wondering how we could enhance CSS for styling React component systems. By focusing on a single use case we managed to optimize the experience for developers as well as the output for end users.

  • 官方文档: 官方文档
  • Github: Github

为什么要使用 styled-components

我们看看官网介绍:

  • Automatic critical CSS - 自动关键CSS: 完全自动地跟踪页面上呈现的组件并注入它们的样式。结合代码分割,按需加载。
  • No class name bugs - 不存在类名冲突问题: 生成唯一的类名。不用担心类名重复、冲突、覆盖以及拼写错误等问题。
  • Easier deletion of CSS - 便于样式剔除: 传统的编写样式方式很难检测样式和类名是否被使用。而 styled-components 会与特定的组件关联,在工程化项目中,构建工具可以轻易的检测到样式组件是否被使用,未被使用的样式组件会被剔除,避免无用代码打包到构建产物中。
  • Simple dynamic styling - 易于编写动态样式: styled-components 样式组件可以根据 props 和全局主题来动态调整样式,无需手动管理众多样式类。
  • Painless maintenance - 便于维护: 不需要查找众多文件来排查组件样式,降低维护成本。
  • Automatic vendor prefixing - 自动添加厂商前缀: 您只需要编写标准的 CSS 样式,其他的事情 styled-components 自动帮您处理。

传统 CSS 方式的缺点

  • 缺乏作用域,全局样式污染,容易出现类名冲突,样式覆盖问题,出现问题难以排查。需要通过 namespace 命名空间、书写顺序、优先级等方式来缓解。
  • 原生 CSS 在没有 scssless 等预处理器的情况下,编写起来非常痛苦。
  • 实现动态样式,需要预先定义多个类名,为不同类目编写对应的样式,然后根据情况动态绑定不同的类名。

开发中感受

  • 编写一个功能组件,可能只需要添加少许样式 (现在的项目大多都会使用 UI 组件库,自带各种样式),为此而创建一个 css 文件不划算,还可能会有全局样式污染。只需要在该功能组件中定义一个 styled-components 样式组件即可。
  • 在 html 标签元素书写行内样式或者绑定 style 变量都难以定义伪类样式和复杂选择器(如::hover, :before, :after, :first-child&选择器, +选择器等等)
  • 如果编写的功能组件需要编写的样式比较多,可以抽取到一个 jsts 文件中,然后引入即可,因为 styled-components 定义的都是 js 对象。
  • 支持 scss 风格的语法。
  • 快速定位样式定义代码:传统的方式,需要全局搜索元素类名,才能定位到样式代码。而 js 方式的定义,编辑器能快速跳转定位。
  1. styled-components

的缺点:

  • 生成的类名是一串 hash 值, 会绑定到对应的 dom 标签上,难以定位元素,建议给 styled-components 样式组件都添加一个 class 样式名,便于识别。

其他 css-in-js 方案

使用

  1. css-in-js

方案的库,比较常见的还有

  1. emotion

  1. jss

, 大家可以自行尝试使用。

styled-components 的基本使用

安装

  • npm 安装:npm install styled-components
  • pnpm 安装:pnpm add styled-components
  • yarn 安装:yarn add styled-components

如果您使用像

  1. yarn

这种支持 package.json 的 resolutions 字段的包管理器,强烈建议您向其中添加一个与主版本对应的入口配置。这有助于避免因项目中安装了多个版本的

  1. styled-components

而引起的一系列问题。

基本用法

参考链接:getting-started

先上一个示例:

  1. import styled from "styled-components";
  2. // 创建一个 Title 样式组件,使用 <h1> 标签
  3. const Title = styled.h1`
  4. font-size: 24px;
  5. text-align: center;
  6. color: #fff;
  7. `;
  8. // 创建一个 Wrapper 样式组件,使用 <section> 标签
  9. const Wrapper = styled.section`
  10. padding: 30px;
  11. background: #000;
  12. `;
  13. // 在 jsx 中使用
  14. export default function App() {
  15. return (
  16. <Wrapper>
  17. <Title>Hello World!</Title>
  18. </Wrapper>
  19. );
  20. }

使用起来挺简单的,除了上面示例中的

  1. h1

  1. section

标签,你还可以根据情况使用其他 html 标签。

SCSS 风格语法

你可以像编写 SCSS 样式一样,编写

  1. styled-components

的样式, 比如选择器嵌套、伪类样式、各种选择器语法等

  1. import styled from "styled-components";
  2. // 创建一个 Wrapper 样式组件,使用 <section> 标签
  3. const Wrapper = styled.section`
  4. padding: 30px;
  5. background: #000;
  6. .text {
  7. color: #fff;
  8. &.red {
  9. color: red;
  10. }
  11. }
  12. button {
  13. color: #333;
  14. &:hover {
  15. color: blue;
  16. }
  17. & + button {
  18. margin-left: 10px;
  19. }
  20. }
  21. `;
  22. // 在 jsx 中使用
  23. export default function App() {
  24. return (
  25. <Wrapper>
  26. <div className="text"> Hello World! </div>
  27. <div className="text red"> Good good study, day day up! </div>
  28. <button>取消</button>
  29. <button>确定</button>
  30. </Wrapper>
  31. );
  32. }

还有一个比较厉害的功能

  1. &&

,它可以指向当前样式组件的实例,这在复杂的样式逻辑中非常实用。这个大家可以直接参考官方示例-&&会比较清晰。

  1. const Input = styled.input.attrs({ type: "checkbox" })``;
  2. const Label = styled.label`
  3. align-items: center;
  4. display: flex;
  5. gap: 8px;
  6. margin-bottom: 8px;
  7. `
  8. const LabelText = styled.span`
  9. ${(props) => {
  10. switch (props.$mode) {
  11. case "dark":
  12. return css`
  13. background-color: black;
  14. color: white;
  15. ${Input}:checked + && {
  16. color: blue;
  17. }
  18. `;
  19. default:
  20. return css`
  21. background-color: white;
  22. color: black;
  23. ${Input}:checked + && {
  24. color: red;
  25. }
  26. `;
  27. }
  28. }}
  29. `;
  30. export default function App() {
  31. return (
  32. <React.Fragment>
  33. <Label>
  34. <Input defaultChecked />
  35. <LabelText>Foo</LabelText>
  36. </Label>
  37. <Label>
  38. <Input />
  39. <LabelText $mode="dark">Foo</LabelText>
  40. </Label>
  41. <Label>
  42. <Input defaultChecked />
  43. <LabelText>Foo</LabelText>
  44. </Label>
  45. <Label>
  46. <Input defaultChecked />
  47. <LabelText $mode="dark">Foo</LabelText>
  48. </LabelText>
  49. </React.Fragment>
  50. )
  51. }

上面代码示例摘取自官方示例,其中的

  1. &&

就代表

  1. LabelText

组件实例

  1. ${Input}:checked + && { color: red; }

表示 选中状态的 checkbox 紧邻的

  1. LabelText

的文字颜色为红色。

命名规范建议

为了统一代码规范,让代码逻辑一目了然。提供几点建议

  • styled-components 创建的样式组件以 StyledXXX 格式进行命名,以便和常规的功能组件区分开来,比如 StyledTodoList
  • 一个功能组件中,styled-components 样式组件不多的话,可以直接在当前功能组件中定义并使用。如果定义的样式组件比较多,建议将样式组件单独提取到一个文件。
  • 提取的样式组件的文件名统一格式为 xxx.styled.js, typescript 项目则使用 xxx.styled.ts, 比如 TodoList.tsx 功能组件, 对应的样式文件则为 TodoList.styled.ts

当然,不一定非要上面的格式命名,只要制定一个统一的规范即可。

  1. // TodoList 组件
  2. import styled from "styled-components";
  3. // TodoListItem 是 React 功能组件
  4. import TodoListItem from './TodoListItem';
  5. const StyledTodoList = styled.ul`
  6. broder: 1px solid #999;
  7. // ...
  8. `;
  9. export default function TodoList() {
  10. return (
  11. <StyledTodoList>
  12. <TodoListItem />
  13. <TodoListItem />
  14. </StyledTodoList>
  15. )
  16. }

统一规范之后,一眼就能分辨出,

  1. StyledTodoList

是定义的样式组件(定义样式),而

  1. TodoListItem

是功能组件,处理功能和交互逻辑。

另外需要注意的是:记得在 React 组件渲染方法之外定义样式组件,否则将会在每次 render 时重新创建。

强烈推荐:

  1. // 推荐方式
  2. const StyledButton = styled.button`
  3. color: #333;
  4. `;
  5. const App = ({ text }) => {
  6. return <StyledButton>{text}</StyledButton>
  7. };

不建议:

  1. const App = ({ text }) => {
  2. const StyledButton = styled.button`
  3. color: #333;
  4. `;
  5. return <StyledButton>{text}</StyledButton>
  6. };

传递 props 参数

参考链接:adapting-based-on-props

  1. styled-components

创建的组件就是个组件对象,你可以像使用 React 组件一样使用它们。

对于组件来说,

  1. props

传参至关重要,可以动态调整逻辑和样式。

  1. import styled from "styled-components";
  2. // 基础按钮
  3. const StyledBaseButton = styled.button`
  4. background: ${props => props.$bgColor || '#fff'};
  5. color: ${props => props.$color || '#333'};
  6. `;
  7. export default function BaseButton() {
  8. return (
  9. <div>
  10. <StyledBaseButton>取消</StyledBaseButton>
  11. <StyledBaseButton $bgColor="blue" $color="#fff">确定</StyledBaseButton>
  12. </div>
  13. )
  14. }

下面我们看一个

  1. typescript

的示例:

  1. import styled from "styled-components";
  2. // 基础按钮
  3. const StyledBaseButton = styled.button<{ $bgColor?: string; $color?: string; }>`
  4. background: ${props => props.$bgColor || '#fff'};
  5. color: ${props => props.$color || '#333'};
  6. `;

  1. typescript

项目中,会根据类型定义检测组件上绑定的 props 属性,错传、漏传、多传都会进行提示。

样式继承和扩展

参考链接:extending-styles

我们想要在一个样式组件的基础上扩展其他样式,只需要使用

  1. styled()

包裹,然后添加所需样式即可,例如:

  1. import styled from "styled-components";
  2. // 基础按钮
  3. const StyledBaseButton = styled.button<{ $bgColor?: string; $color?: string; }>`
  4. background: ${props => props.$bgColor || '#fff'};
  5. color: ${props => props.$color || '#333'};
  6. `;
  7. // 边框按钮
  8. const StyledBorderButton = styled(StyledBaseButton)<{$borderColor?: string}>`
  9. border: 1px solid ${props => props.$borderColor || '#ccc'};
  10. `;
  11. export default function App {
  12. return (
  13. <StyledBorderButton $borderColor="#999"></StyledBorderButton>
  14. )
  15. }

这样就可以在基础样式组件上扩展其他样式,用来承接业务逻辑。

有些时候,我们想复用基础样式组件,但是 基础样式组件的 html 元素标签类型又不适用,这种情况可以使用

  1. as

属性来动态更换基础样式组件的元素标签。

下面示例,是复用

  1. StyledBaseButton

的样式,并将

  1. button

标签替换为

  1. a

标签。

  1. import styled from "styled-components";
  2. // 基础按钮
  3. const StyledBaseButton = styled.button<{ $bgColor?: string; $color?: string; }>`
  4. background: ${props => props.$bgColor || '#fff'};
  5. color: ${props => props.$color || '#333'};
  6. `;
  7. export default function App {
  8. return (
  9. <StyledBorderButton as="a" href="https://example.com" $bgColor="blue" $color="#fff"></StyledBorderButton>
  10. )
  11. }

定义公共样式

我们经常会有使用公共样式的场景,比如

  1. ellipsis

来实现文字超长省略。

  1. overflow: hidden;text-overflow: ellipsis;white-space: nowrap;

这种场景非常多,没必要在每个地方都写一遍上面的这一段代码,这时候可以使用

  1. styled-components

导出的

  1. css

函数可以生成一个公共样式组件, 建议单独创建一个样式文件存放公共样式。

我们创建一个

  1. Common.styled.ts

文件:

  1. // Common.styled.tsimport styled,{ css }from"styled-components";exportconst StyledCommonEllipsis = css`
  2. overflow: hidden;
  3. text-overflow: ellipsis;
  4. white-space: nowrap;
  5. `;// ......

然后在

  1. Title.tsx

组件中使用:

  1. // Title.tsx
  2. import styled from "styled-components";
  3. import { StyledCommonEllipsis } from '@/common/styled/Common.styled.ts'
  4. const StyledTitle = styled.div`
  5. width: 300px;
  6. color: #333;
  7. ${StyledEllipsis};
  8. `;
  9. export default function App() {
  10. return <StyledTitle>这是很长的一段文字标题这是很长的一段文字标题这是很长的一段文字标题</StyledTitle>
  11. }

上面这种方式是通过引用公共样式组件实现的,还可以直接使用原始的方式来定义一个公共class样式,全局引入公共样式,然后在元素标签上使用class名即可。

  1. /* common.css */.ellipsis{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
  1. /* Title.tsx */
  2. export default function App() {
  3. return <StyledTitle className="ellipsis">这是很长的一段文字标题</StyledTitle>
  4. }

全局样式

参考链接:createglobalstyle

注意:版本要求 v4 以上,web-only.

通过

  1. createGlobalStyle

方法也可以注入全局公共样式。

  1. import { createGlobalStyle } from 'styled-components';
  2. const GlobalStyle = createGlobalStyle<{ $whiteColor?: boolean; }>`
  3. body {
  4. color: ${props => (props.$whiteColor ? 'white' : 'black')};
  5. }
  6. .ellipsis {
  7. overflow: hidden;
  8. text-overflow: ellipsis;
  9. white-space: nowrap;
  10. }
  11. `;
  12. export default function App() {
  13. return <React.Fragment>
  14. <GlobalStyle $whiteColor />
  15. <Navigation />
  16. </React.Fragment>
  17. };

适用 React 组件

参考链接:styling-any-component

  1. styled

方法可以在任何 React 组件上完美运行,只需要给组件传递

  1. className

属性,并在组件内的 dom 元素上绑定该

  1. className

属性即可。

  1. import styled from "styled-components";
  2. // TodoList 组件
  3. const TodoList = ({ className, children }) => (
  4. <ul className={className}>
  5. <li>
  6. <checkbox></checkbox>
  7. <span>待办项</span>
  8. </li>
  9. </ul>
  10. );
  11. // 横向 inline 布局
  12. const StyledTodoList = styled(TodoList)`
  13. display: flex;
  14. align-items: center;
  15. li {
  16. display: flex;
  17. align-items: center;
  18. padding: 8px 16px;
  19. }
  20. `;
  21. export default function App {
  22. return (
  23. <TodoList></TodoList>
  24. <StyledTodoList></StyledTodoList>
  25. )
  26. }

这样就可以改变组件的内部样式了。

attrs 属性设置

参考链接:attaching-additional-props

有些元素标签自带部分属性,比如

  1. input 元素

的 type 属性有

  1. text|email|color|file|radio|checkbox

等等类型,我们在使用时需要手动设置这些属性。

再比如常用的 button 按钮的 type 属性有

  1. button|submit|reset

这些类型。

使用

  1. .attrs

方法,我们可以预设一些属性,并且根据情况动态修改这些属性。

  1. import styled from "styled-components";
  2. const StyledInput = styled.input.attrs(props => ({
  3. type: props.type || 'text'
  4. }))`
  5. color: '#333';
  6. font-size: 14px;
  7. `;
  8. const StyledFileInput = styled.input.attrs({ type: 'file' })`
  9. width: 40px;
  10. height: 40px;
  11. border-radius: 50%;
  12. `;
  13. const StyledButton = styled.button.attrs(props => ({
  14. type: props.type || 'button'
  15. }))`
  16. border: none;
  17. outline: none;
  18. background: blue;
  19. color: #fff;
  20. `;
  21. export default function App {
  22. return (
  23. <div>
  24. <StyledInput></StyledInput>
  25. <StyledInput type="email"></StyledInput>
  26. <StyledInput type="password"></StyledInput>
  27. <StyledFileInput></StyledFileInput>
  28. <StyledButton></StyledButton>
  29. <StyledButton type="submit"></StyledButton>
  30. </div>
  31. )
  32. }

动画特性

参考链接:animations

我们可以在某个样式组件中使用

  1. @keyframes

来定义动画帧,来避免全局冲突。

  1. import { keyframes } from 'styled-components';
  2. const rotate = keyframes`
  3. from {
  4. transform: rotate(0deg);
  5. }
  6. to {
  7. transform: rotate(360deg);
  8. }
  9. `;
  10. const StyledRotate = styled.div`
  11. display: inline-block;
  12. animation: ${rotate} 2s linear infinite;
  13. padding: 2rem 1rem;
  14. font-size: 1.2rem;
  15. `;
  16. export function App() {
  17. return (
  18. <StyledRotate>&lt; 💅🏾 &gt;</StyledRotate>
  19. );
  20. }

使用

  1. styled-components

导出的

  1. keyframes

函数创建一个

  1. keyframes

实例对象,然后在想要定义动画的地方引用即可。

styled-components 的高级用法

主题功能支持

参考链接: theming

类似

  1. antd

组件库的主题功能,

  1. styled-components

可通过

  1. ThemeProvider

组件的

  1. context API

上下文 API 为所有的子孙组件提供主题参数。

以设置主题色为例:

  1. import { useState } from 'react';
  2. import styled, { ThemeProvider } from 'styled-components';
  3. import StyledBaseButton from '@/components/StyledBaseButton';
  4. interface ThemeProps {
  5. color: string;
  6. background: string;
  7. border?: string;
  8. };
  9. const StyledContent = styled.div<{theme: ThemeProps}>`
  10. color: ${props => props.theme.color};
  11. background: ${props => props.theme.background};
  12. border: ${props => props.theme.border || 'none'};
  13. `;
  14. const primaryTheme = { color: '#fff', background: 'blue', border: 'none' };
  15. const defaultTheme = { color: '#333', background: '#fff', border: '1px solid #eee' };
  16. function Content() {
  17. const [themeName, setThemeName] = useState('default');
  18. return (
  19. <ThemeProvider theme={themeName === 'default' ? defaultTheme : primaryTheme}>
  20. <StyledBaseButton onClick={
  21. setThemeName(themeName === 'default' ? 'primary' : 'default')
  22. }>
  23. 切换主题
  24. </StyledBaseButton>
  25. <StyledContent>这是一段内容</StyledContent>
  26. </ThemeProvider>
  27. )
  28. }
  1. ThemeProvider

支持嵌套,嵌套

  1. ThemeProvider

的 theme 属性可以是一个函数,这个函数的入参可以接收父级

  1. ThemeProvider

的 theme 上下文参数。

  1. import styled, { ThemeProvider } from 'styled-components';
  2. import StyledBaseButton from '@/components/StyledBaseButton';
  3. const StyledContent = styled.div<{theme: ThemeProps}>`
  4. color: ${props => props.theme.color};
  5. background: ${props => props.theme.background};
  6. border: ${props => props.theme.border || 'none'};
  7. `;
  8. const defaultTheme = { color: '#333', background: '#fff', border: '1px solid #eee' };
  9. // 嵌套的 border 颜色跟文字 color 颜色保持一致
  10. const innerTheme = ({ color, background, border }) => ({
  11. color,
  12. background,
  13. border: `1px solid ${color}`;
  14. });
  15. render(
  16. <ThemeProvider theme={defaultTheme}>
  17. <div>
  18. <StyledBaseButton>Default Theme</StyledBaseButton>
  19. <ThemeProvider theme={innerTheme}>
  20. <StyledBaseButton>Inner Theme</StyledBaseButton>
  21. </ThemeProvider>
  22. </div>
  23. </ThemeProvider>
  24. );

一般情况下,很少用到

  1. ThemeProvider

的嵌套。

在 styled-components 之外使用主题

参考链接: getting-the-theme-without-styled-components

上面实例中,默认只有

  1. styled-components

样式组件可以使用

  1. styled-components

注入的主题;

如果想要在

  1. styled-components

样式组件之外(如 React 组件中)使用注入的

  1. styled-components

主题,则可以使用下面几种方式。

  1. 使用 withTheme 方法
  1. import { withTheme } from 'styled-components'
  2. interface ThemeProps {
  3. color: string;
  4. background: string;
  5. border?: string;
  6. };
  7. function InnerComponent({ theme }: { theme: ThemeProps }) {
  8. console.log('Current theme: ', theme);
  9. const StyledContent = styled.div<{theme: ThemeProps}>`
  10. color: ${props => props.theme.color};
  11. background: ${props => props.theme.background};
  12. border: ${props => props.theme.border || 'none'};
  13. `;
  14. return <StyledContent>Use withTheme API</StyledContent>
  15. }
  16. export default withTheme(InnerComponent);
  1. 使用 useContext + ThemeContext 方法

注意:版本要求 v4 以上。

  1. import { useContext } from 'react';
  2. import { ThemeContext } from 'styled-components';
  3. function InnerComponent() {
  4. const themeContext = useContext(ThemeContext);
  5. console.log('themeContext: ', themeContext);
  6. }
  1. 使用 useTheme hook 方法

注意:版本要求 v4 以上。

  1. import { useTheme } from 'styled-components';
  2. function InnerReactComponent() {
  3. const theme = useTheme()
  4. console.log('theme: ', theme); // { color: '#333', background: '#fff', border: '1px solid #eee' }
  5. }

如果项目中有专门的主题切换功能,已经注入了自己的

  1. ThemeContextProvider

, 也可以搭配

  1. ThemeContextProvider

上下文在 React 组件中使用主题。

Ref 属性

参考链接: refs

  1. styled-components

定义的样式组件上,也可以使用

  1. ref

属性来关联 React 变量,跟在 React 组件中使用

  1. ref

差不多。

注意:版本要求 v4 以上。

  1. import { useRef, useEffect } from 'react';
  2. import styled from 'styled-components';
  3. const StyledInput = styled.input`
  4. width: 240px;
  5. color: #666;
  6. border: none;
  7. border-radius: 4px;
  8. `;
  9. export default function App() {
  10. const inputRef = useRef();
  11. useEffect(() => {
  12. inputRef?.current?.focus();
  13. }, []);
  14. return (
  15. <div>
  16. <StyledInput ref={inputRef}></StyledInput>
  17. </div>
  18. );
  19. }

以上的一些特性功能基本上够用了,还有一些其他功能用法和 API 可以参考 官方文档。

小结

本文主要介绍了

  1. styled-components

库的特点、API 使用,以及在 React 项目中的一些应用场景。

在我开发的

  1. NiceTab

插件项目中也只是一些粗浅的使用,在写这篇文章的过程中,也发现了一些项目中可以优化的点。

后续会继续分享插件开发过程中的一些实践总结。

标签: react 前端 笔记

本文转载自: https://blog.csdn.net/u010844210/article/details/140262000
版权归原作者 web-dahuyou 所有, 如有侵权,请联系我们删除。

“styled-components 库的用法介绍和实践总结”的评论:

还没有评论