Code Monkey home page Code Monkey logo

Comments (5)

zachhardesty7 avatar zachhardesty7 commented on September 3, 2024 2

UPDATE: found 2 bug conditions that will break the babel transformation, guaranteed. Mind you, these all compile and function properly with the regular babel plugin for styled-components. Hope these help with bug fixing! An error that states which file the CSS came from would be super helpful. Let me know if I can help with these, may try to write a pull request later.

Any sort of comment inline in the style definition where the next line starts with a nested template expression. Adding a ; after the comment works but produces stylelint errors. Ex:

const StyledComponent1 = styled.div`
  /* comment */
  ${props => 'color: blue'};
`

Any nested template literals that don't have a trailing ;, regardless of if they always return a semicolon. Ex:

const StyledComponent2 = styled.div`
	${props => 'color: blue;'}
`

from babel-plugin-styled-components-css-namespace.

nvanselow avatar nvanselow commented on September 3, 2024 1

The two reproducible cases @zachhardesty7 mentioned above should be fixed in this PR: #39

Once approved, I'll get a new release candidate out for further testing in the wild.

from babel-plugin-styled-components-css-namespace.

nvanselow avatar nvanselow commented on September 3, 2024

Thanks for the heads up and the possible files to repro!

from babel-plugin-styled-components-css-namespace.

supadupdip avatar supadupdip commented on September 3, 2024

Is there any update on this? Seems like a pretty big deal considering the whole thing about styled components is the ability to use javascript inline

from babel-plugin-styled-components-css-namespace.

nvanselow avatar nvanselow commented on September 3, 2024

@supadupdip - Not yet. However, the only inline js that should be affected currently are cases like those demonstrated in #33 (comment)

E.g., the following should work as expected:

const StyledComponent2 = styled.div`
	color: ${props => isSuccess  ?  'green' : 'red'};

The following fixtures are currently passing for this plugin which show using inline js: https://github.com/QuickBase/babel-plugin-styled-components-css-namespace/blob/master/src/tests/fixtures/complex_styled_component.js

The next block of time I have available to work on this plugin is 5/24 where I hope to close out many of the open issues. However, PRs are always welcome.

from babel-plugin-styled-components-css-namespace.

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.