3

我想在样式化组件中使用样式化系统的断点和大小调整机制。

目前,我必须使用'react-media',它解决了我的问题,但是这个解决方案带有大量的代码重复。这是我当前根据屏幕尺寸设置 StyledComponent 的边框半径的解决方案:

import React from 'react'
import styled from 'styled-components'
import theme from '../../theme'
import Media from 'react-media'

const StyledImg = styled.img`
  border-radius: ${props => (props.size / 4)};
`

function ProfileImage (props) {
  const breakpoint = theme.breakpoints[0]

  return <Media query={`(min-width: ${breakpoint})`}>
      {matches =>
        matches ? (
        <StyledImg size={props.size[1]} src={props.src} />
      ) : (
        <StyledImg size={props.size[0]} src={props.src} />
      )
    }
  </Media>
}

function ProfileCard (props) {
  return <Box bg='grey' width={1}>
    <ProfileImage width={[10, 20]} src={props.src}>
  </Box>
}

export default ProfileImage

是否可以获取当前断点索引?我可以写这样的东西:

const StyledImg = styled.img`
  border-radius: ${props => (props.size[theme.currentBreakpointIndex] / 4)};
`

function ProfileImage (props) {
  return <StyledImg {...props} />
}

function ProfileCard (props) {
  return <Box bg='grey' width={1}>
    <ProfileImage size={[10, 20]} src={props.src}>
  </Box>
}

export default ProfileImage
4

1 回答 1

0

阅读本文,他们建议您将断点注入查询并将它们放入主题中。然后你不能像这样访问它们:

styled.div`
   ${({theme: {mediaQueries: {small}}}) => small} {
       color: red;
   }
`

但是,此解决方案使用 css 更改样式(但我认为应该这样做)。

于 2020-01-15T09:34:16.280 回答