Git Product home page Git Product logo

Comments (5)

tanem avatar tanem commented on September 28, 2024

Hmm, yip that's not looking good 😓 Along with that naming change you mentioned, any extra non-documented props are now being applied to the wrapper element, which could be affecting things too.

I'll dig into this later today. There should be a couple ways around this, but I'll need to refresh my brain re styled-components.

from react-svg.

tanem avatar tanem commented on September 28, 2024

One way around this is to tweak that CSS you have slightly, so that the svg element is still being targeted by your styles:

const FilterIcon = styled(ReactSVG)`
  & svg {
    fill: black;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    margin-left: 3px;
  }
`;

Keen to hear how this works out for you 🙏

from react-svg.

mydearxym avatar mydearxym commented on September 28, 2024

@tanem thanks for the solution, it works like magic !

to upgrade to this new syntax i have to change lots of code, so is this new syntax be the final syntax in future versions ?

from react-svg.

mydearxym avatar mydearxym commented on September 28, 2024

inspired by your solution, i wrapped ReactSVG in common component :

import React from 'react'
import PropTypes from 'prop-types'
import ReactSVG from 'react-svg'

const NormalImg = ({ className, src, alt }) => (
  <img className={className} src={src} alt={alt} />
)

const Img = ({ className, src, alt }) => {
  if (/\.(svg)$/i.test(src)) {
    return <ReactSVG svgClassName={className} path={src} />
  }
  return <NormalImg className={className} src={src} alt={alt} />
}

Img.propTypes = {
  src: PropTypes.string.isRequired,
  alt: PropTypes.string,
  className: PropTypes.string,
}

Img.defaultProps = {
  alt: 'coderplanets image',
  className: '',
}

export default Img

a usage example:

const SearchLogo = styled(Img)`
  width: 22px;
  height: 22px;
  fill: #0098b8;
`
<SearchLogo src={`${ICON_ASSETS}/cmd/search.svg`} />

thanks again @tanem

from react-svg.

tanem avatar tanem commented on September 28, 2024

You're welcome @mydearxym, glad to hear it's fixed 🎉

To answer your question about API stability, I can't give you a guarantee that this'll be the final version 🙈 However I can say that I consider breaking changes very carefully before actually applying them, and I ensure that if something is a breaking change it'll be tagged as a major version. At least that way you can continue using the older version without your system breaking until you're ready to upgrade.

I like your idea about common components. I would have approached things in a similar way so that you only have to change things in one or very few places in case of a future major version upgrade to ReactSVG. Nice one 👍

from react-svg.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.