Coder Social home page Coder Social logo

Comments (1)

darylwright avatar darylwright commented on June 8, 2024

I'm also experiencing this issue, however, the classes get generated when there is whitespace after the styleName attribute.

This JSX code...

<ul className="justify-content-center" styleName="pagination">
        <li styleName={`page-item${isFirstPage ? " disabled" : ""}`}>
          <a styleName="page-link" href={`${basePath}/1`} aria-label="First">
            <span aria-hidden="true">&laquo;</span>
            <span className="sr-only">First</span>
          </a>
        </li>
</ul>

... produces this DOM structure.

<ul class="justify-content-center ">
  <li class="">
    <a class="" href="/blog/posts/1" aria-label="First">
      <span aria-hidden="true">«</span>
      <span class="sr-only">First</span>
    </a>
  </li>
</ul>

However, when I put a space after the first styleName attribute only...

<ul className="justify-content-center" styleName="pagination" >{/* Note the space before the closing angle bracket*/}
        <li styleName={`page-item${isFirstPage ? " disabled" : ""}`}>
          <a styleName="page-link" href={`${basePath}/1`} aria-label="First">
            <span aria-hidden="true">&laquo;</span>
            <span className="sr-only">First</span>
          </a>
        </li>
</ul>

all styleNames generate their corresponding classNames.

<ul class="justify-content-center pagination___3ieNK">
  <li class="page-item___2eMHw disabled___2y7aB">
    <a class="page-link___t-Mvf" href="/blog/posts/1" aria-label="First">
      <span aria-hidden="true">«</span>
      <span class="sr-only">First</span>
    </a>
  </li>
</ul>

In another instance, the styleName attribute was not able to be converted over because there wasn't a space before a self-closing <img> tag. (i.e. <img src="..."/> vs. <img src="..." />) Adding the space before self-closing the tag enabled the styleName to generate the className.

Edit: A temporary workaround for the issue I'm having is to position the styleName attribute such that it isn't the last one in the DOM element. This ensures that there is a space after the attribute. This will not work if the styleName is the only attribute in the element.

from babel-plugin-react-css-modules.

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.