Skip to content

andreypopp/IntegratedCSS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IntegratedStyle

After integrating HTML into JavaScript by React.js, a logical next step is to do the same for CSS.

Build with help of the awesome recast library.

Example

var IntegratedStyle = require('IntegratedStyle');
var vars = require('./vars');
var mixins = require('./mixins');

var Button = React.createClass({

  normal: IntegratedStyle(function() {
    return Object.assign({
      backgroundColor: vars.black
    }, mixins.transparent);
  }),

  hover: IntegratedStyle(function() {
    return {
      backgroundColor: 'white'
    };
  }),

  getInitialState: function() {
    return {
      hover: false
    };
  },

  render: function() {
    var style = this.state.hover ? this.normalStyle() : this.hoverStyle();
    return <div style={style}>Example</div>;
  },

  onMouseOver: function() {
    this.setState({hover: true});
  }

});

Turns into:

css
---
.a {
  background-color: 'black';
  opacity: 0.1;
}
.b  {
  background-color: 'white';
}

js
--
var Button = React.createClass({

  normal: function() {
    return "a";
  },

  hover: function() {
    return "b";
  },

  getInitialState: function() {
    return {
      hover: false
    };
  },

  render: function() {
    var style = this.state.hover ? this.normalStyle() : this.hoverStyle();
    return <div style={style}>Example</div>;
  },

  onMouseOver: function() {
    this.setState({hover: true});
  }

});

Motivation

CSS is problematic to maintain and components give all the borders you actually need.

What does it actually do?

  • It takes out the css function and transform it into plain CSS
  • The css function is executed on its own, it has no reference to 'this'
  • connect the (something.)css().something blocks to CSS
  • create CSS with annoyingly small CSS className selectors (3 characters max - up to 140608 classes)
  • CSS is coupled to the component and can be passed to another component via props (aProp={this.css().something})
  • isn't smart about actual references to the CSS function

Usage

integrated-css --input=example/**/*.js --output=build/ --css=build/styling/lala.css

Other options

Biggest difference here is that IntegratedStyle is a CSS + JS preprocessor solution instead of a runtime solution.

Also there is (from the React.js team):

LICENSE

MIT

About

Integrate CSS into your React.js components

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published