Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

csjs-loader : webpack loader support #29

Open
SilentCicero opened this issue Apr 17, 2016 · 7 comments
Open

csjs-loader : webpack loader support #29

SilentCicero opened this issue Apr 17, 2016 · 7 comments
Projects

Comments

@SilentCicero
Copy link

SilentCicero commented Apr 17, 2016

I've been studying the csjs-extractify, but I don't know how I could approach it with the webpack loader model.

Thoughts? @rtsao

@codrin-iftimie
Copy link

codrin-iftimie commented Apr 17, 2016

I've tried making such a loader. I even made it work with extract-text-webpack-plugin. Mostly the code you need is

// csjs-loader.js

var requireFromString = require('require-from-string');
var getCss = require('csjs').getCss;
module.exports = function(source) {
  return getCss(requireFromString(source));
}

The problem is that you'd be interpreting all .csjs.js files, through css!csjs!babel. This disables the compose feature:

//simple_button.csjs.js
export default csjs`
  .simple-button {
     // styles ...
   }
`;

//custom_button.csjs.js
import s from './simple_button.csjs' // <-- this is actually translated into css

export default csjs `
  .primary-button extends `${s['simple-button']}` { // <-- you cannot extend it
    // style
  }
`;

@rtsao Does this work well with csjs-extractify?

@SilentCicero
Copy link
Author

@codrin-iftimie why does this disable the compose feature?

And can you provide the code you used for webpack for extract-text? Would like to take a look.

@codrin-iftimie
Copy link

codrin-iftimie commented Apr 18, 2016

I've created a gist.
When importing a csjs.js file inside another csjs.js file the import gets translated into css.
The import is undefined, so when you are extending the imported styles you are calling accessing undefined['simple-button'].

@mkazlauskas
Copy link

mkazlauskas commented May 9, 2016

I'm doing it using a little different approach. To be compatible with css modules, I'm setting locals to the loader exports object. This way I can use style-loader out of the box to add css to page and re-export locals object. So I simply do:

styles.csjs.js

module.exports = csjs`.myClass { ... }`

app.js

import { myClass } from './styles.csjs';
import { classFromCss } from './someCss.css';

webpack.config.js

loaders: [
      {
        test: /\.csjs\.js?$/,
        loader: 'style!csjs!val!babel',
      }, {
        test: /\.css$/,
        loader: 'style!csjs!css!postcss',
      },
],

csjs loader:

const csjs = require('csjs');

const csjsify = (source) => (
  typeof source === 'string'
  ? csjs`${source}`
  : source
);

const stringify = (styles) => {
  const result = Object.assign(styles, {});
  Object.keys(result).forEach((k) => (result[k] = result[k].className));
  return JSON.stringify(result);
};

module.exports = (source, map) => {
  const styles = csjsify(source);
  return `
    module.exports = [[module.id, \`${csjs.getCss(styles)}\`, ${map}]];
    module.exports.locals = ${stringify(styles)};
  `;
};

I still didn't figure out how to enable sourcemaps using this approach. val-loader doesn't seem to provide those.

@SilentCicero
Copy link
Author

interesting, yes more thought is needed @mkazlauskas

@mkazlauskas
Copy link

@SilentCicero I updated my previous comment, added support to pipe plain css files over csjs loader. This way we can keep external classes of dependencies scoped.

@avesus
Copy link

avesus commented Jul 7, 2016

"I still didn't figure out how to enable sourcemaps using this approach."

"added support to pipe plain css files over csjs loader"

That's sounds so amazingly great that we definitely should support source maps generation for csjs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
csjs
Investigation
Development

No branches or pull requests

4 participants