14

我目前正在构建一个大型 React 应用程序。CSS,从来都不是我的强项。但是现在 CSS 有了 React 的 sass / cssNext / inline 样式。我一直在将 BEM 与 sass 一起使用,但随着我的其他应用程序变得庞大,即使它开始崩溃。尤其是当您能够“重新皮肤”或“主题”主配色方案之外的页面等时。

所以 - 有人可以指出一种经过验证的方法来创建带有反应的 css,它可以很好地扩展,并且当人们想借用我的组件时允许定制主题。例如,

<MyComponent />
// this component has its styles but lets say Joe Schmoe wants be import 
// it? But, Joe wants to overlay his custom styles?
// Is there a new paradigm that allows for an overlay or reskin within the component?

或者甚至是整个应用程序在某个时候都可以换肤的想法。我知道这是一个非常基础的问题,但是每当我构建项目时,我的痛点似乎也是 CSS ——所以我想知道什么是真正有效的。

4

2 回答 2

22

直到最近,这在 React 世界中还没有解决。

我是ElementalUI(一个 React 组件库)的维护者之一,在过去的 6-12 个月里,我们一直在尝试所有不同的样式设置方式。(!)你的名字,我们已经尝试过了。(我在ReactNL 主题演讲中谈到了我对一些最受欢迎的库的体验以及它们在哪里崩溃)

问题是当前的样式库都没有对主题的内置支持。你可以用一种非常hacky、非用户友好的方式来处理它们中的大多数,但这不是你分发组件时想要的,对吧?


这就是我们构建styled-components. styled-components有很多有趣的属性,其中一个是主题直接内置到库中,使其成为构建可分发组件的完美选择!

这是简短的解释,但我鼓励您仔细阅读我们解释所有内容的文档

这就是 的基本用法styled-components

import React from 'react';
import styled from 'styled-components';

// Create a <Wrapper> react component that renders a <section> with
// some padding and a papayawhip background
const Wrapper = styled.section`
  padding: 4em;
  background: papayawhip;
`;

这个变量 ,Wrapper现在是你可以渲染的 React 组件:

// Use them like any other React component – except they're styled!
<Wrapper>
  <Title>Hello World, this is my first styled component!</Title>
</Wrapper>

这看起来像渲染

(如果你点击图片,你会得到一个现场游乐场)

当您将插值函数传递给标记模板文字时,我们会将传递给组件的属性传递给您。这意味着您可以适应道具:

import styled from 'styled-components';

const Button = styled.button`
  /* Adapt the colors based on primary prop */
  background: ${props => props.primary ? 'palevioletred' : 'white'};
  color: ${props => props.primary ? 'white' : 'palevioletred'};

  font-size: 1em;
  margin: 1em;
  padding: 0.25em 1em;
  border: 2px solid palevioletred;
  border-radius: 3px;
`;

在这里,我们创建了一个Button组件,您可以primary像其他任何 React 组件一样制作它:

<Button>Normal</Button>
<Button primary>Primary</Button>

一个普通按钮和一个更大的主按钮

现在是主题方面。我们导出一个名为的组件ThemeProvider,您可以将其传递theme给并将您的应用程序(或应用程序的一部分)包装在:

import { ThemeProvider } from 'styled-components';

const theme = {
  main: 'mediumseagreen',
};

ReactDOM.render(
  <ThemeProvider theme={theme}>
    <MyApp />
  </ThemeProvider>,
  myElem
);

现在,其中的任何样式组件ThemeProvider,无论多亏了上下文,都会将其theme注入到道具中。

这是一个主题的Button样子:

import styled from 'styled-components';

const Button = styled.button`
  /* Color the background and border with theme.main */
  background: ${props => props.theme.main};
  border: 2px solid ${props => props.theme.main};

  /* …more styles here… */
`;

现在你Button会接受theme它通过并基于它改变它的样式!(您也可以通过提供默认值defaultProps

这就是构建可分发组件的要点styled-components以及它如何帮助构建!

我们目前有一个关于编写第三方组件库的 WIP 文档,我鼓励您查看它,当然,普通文档也值得一读。我们已尝试涵盖所有基础,因此,如果您发现任何您不喜欢或您认为缺少的内容,请立即告诉我们,我们将进行讨论!

如果您有任何其他问题,请styled-components随时在此处回复或在 Twitter 上联系。( @mxstbr )

于 2016-11-29T15:10:37.307 回答
1

我不知道什么是最好的方法。我认为这更像是个人喜好。我只会分享我正在使用的工具。我正在使用的是带有postcss的css-modules

css-modules 使您能够为每个 CSS 类创建一个具有全局唯一名称的本地范围标识符,并启用模块化和可重用的 CSS!您还可以使用postcss-modules-values创建一个包含所有设置变量的全局设置文件。这样您就可以更改网站的主题。

这是我构建组件的方式。我的每个组件都有一个 css 文件,该文件非常易于维护或更改。

在此处输入图像描述

这是 Button 组件的代码。

function Button(props) {
  const className = props.className ? `${styles.button} ${props.className}` : styles.button;

  return (
    <button disabled={props.disabled} className={`${className}`} type="button" onClick={props.onClick}>
      {Children.toArray(props.children)}
    </button>
  );
}

请注意,我有一个组件的类名,它允许其他组件传入按钮组件的类。这样当有人借用您的组件时,他们可以扩展或覆盖您的按钮样式。

如果你需要创建一个可定制的网站,我也会推荐使用提供定制网站实时预览的Less.js。

于 2016-11-29T07:15:50.693 回答