Emotion CSS-in-JS - 如何基于组件道具添加条件CSS?

时间:2017-11-27 13:39:37

标签: javascript css emotion

我希望有一个使用Emotion样式的组件,它可以获取最终控制样式的道具。例如,考虑具有各种道具的GridCol组件,这些道具可以更改填充和宽度(宽度可以在不同的视口宽度上更改)。

我想使用这样的API:

<GridCol gutter size="2>

// or alternatively, like this:

<GridCol gutter size={{
  m: 2,
  l: 4
}}>

这里发生了三件事:

  • gutter是一个布尔道具,可以为列添加一些水平填充
  • size道具可以是字符串或对象。如果它是一个字符串,我们只需添加几行CSS并且我们很好,但是,如果它是一个对象,我们需要根据在别处设置的断点对象插入一些媒体查询。

Emotion's docs不清楚如何处理这种性质的样式,至少我还没有看到它,所以我希望能找到一个共同的解决方案。

对于gutter道具,这是微不足道的:

const GridCol = props => styled('div')`
  display: block;
  box-sizing: border-box;
  flex: 1 0 0;
  min-width: 0;
  padding: ${props.gutter ? `0 10px` : '0'};
`

对于size道具,它变得更复杂,我希望得到的CSS看起来像这样:

const GridCol = props => styled('div')`
  display: block;
  box-sizing: border-box;
  flex: 1 0 0;
  min-width: 0;
  padding: ${props.gutter ? `0 10px` : '0'};

  /* styles here if  `size` is a string */
  width: 10%;

  /* styles here if  `size` is an object */
  @media screen and (min-width: 500px) {
      width: 20%;
  }


  @media screen and (min-width: 800px) {
      width: 30%;
  }


  @media screen and (min-width: 1100px) {
      width: 40%;
  }
`

width值将由prop的键确定,该键对应于breakpoints对象中的值,这部分不是微不足道的,但我不知道如何动态生成css需要的。

我确信我可以添加更多信息,我已经做了一些尝试,但目前还没有任何工作。我的感觉是我应该创建一个无状态的功能组件,为每个条件生成css,然后在最后加入CSS。

3 个答案:

答案 0 :(得分:13)

这是一个很好的问题。首先,避免这种模式。

const GridCol = props => styled('div')`
  display: block;
  box-sizing: border-box;
  flex: 1 0 0;
  min-width: 0;
  padding: ${props.gutter ? `0 10px` : '0'};
`

在这个例子中,在每个渲染上创建一个新的样式组件,这对于性能很糟糕。

任何表达式或插值都可以是一个函数。此函数将收到2个参数:propscontext

const GridCol = styled('div')`
  display: block;
  box-sizing: border-box;
  flex: 1 0 0;
  min-width: 0;
  padding: ${props => props.gutter ? `0 10px` : '0'};
`

对于您示例中的size道具,我将使用以下模式。

import { css } from 'emotion'

const sizePartial = (props) => typeof props.size === 'string' ?
  css`width: 10%;` :
  css`
   @media screen and (min-width: 500px) {
      width: 20%;
   }


   @media screen and (min-width: 800px) {
      width: 30%;
   }


   @media screen and (min-width: 1100px) {
      width: 40%;
   }
 `

然后,就像表达式中出现的任何其他函数一样,可以使用partial。

const GridCol = styled('div')`
  display: block;
  box-sizing: border-box;
  flex: 1 0 0;
  min-width: 0;
  padding: ${props => props.gutter ? `0 10px` : '0'};
  ${sizePartial};
`

这是一个非常强大的模式,可用于在项目中组成可重用的动态样式。

如果您对利用此模式的其他图书馆感兴趣,请查看 https://github.com/emotion-js/facepainthttps://github.com/jxnblk/styled-system

答案 1 :(得分:3)

如果您正在寻找一种使用Emotion的css道具来实现条件样式的方法,则可以执行以下操作:

import { css } from '@emotion/core';

const styles = ({ isSelected }) => css`
  border: solid 1px black;
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  ${isSelected === true &&
  `
    background-color: #413F42;
    color: white;
  `}
`;

const ConditionalComponent = () => {
  const [isSelected, setIsSelected] = useState(false);
  return (
    <div css={styles({ isSelected })} onClick={() => setIsSelected(!isSelected)}>
      Click here to change styles.
    </div>
  );
};

此处的更多详细信息:https://seanconnolly.dev/emotion-conditionals

答案 2 :(得分:0)

Emotion 有一个名为 cx 的帮助程序,它提供类似于流行的 classnames 库的功能。您可以使用它来更轻松地编写条件:

import { cx, css } from '@emotion/css'

const cls1 = css`
  font-size: 20px;
  background: green;
`

const foo = true
const bar = false

const SomeComponentWithProp = ({ foo }) => (
  <div
    className={cx(
      { [cls1]: foo === 'bar' },
    )}
  />
);

(改编自链接的文档)