GithubHelp home page GithubHelp logo

react-jade's Introduction

react-jade

Compile Jade to React JavaScript

Build Status Dependency Status NPM version

Installation

npm install react-jade

Usage

With Browserify

If you are using browserify, just write a file that looks like the following, then use react-jade as a transform. It will then inline the result of calling jade.compileFile automatically.

var React = require('react');
var jade = require('react-jade');

var template = jade.compileFile(__dirname + '/template.jade');

React.render(template({local: 'values'}), document.getElementById('container'));
browserify index.js --transform react-jade > bundle.js

Without Browserify

If you are not using browserify, you could manually compile the jade to some client file. e.g.

var fs = require('fs');
var jade = require('react-jade');

fs.writeFileSync(__dirname + '/template.js', 'var template = ' + jade.compileFileClient(__dirname + '/template.jade'));

Then on your html page:

<div id="container"></div>
<script src="http://fb.me/react-0.12.2.js"></script>
<script src="template.js"></script>
<script>
  React.render(template({local: 'values'}), document.getElementById('container'));
</script>

Server Side

You can also use react-jade to render templates on the server side via React.renderToString. This is especially useful for building isomorphic applications (i.e. applications that run the same on the server side and client side).

var fs = require('fs');
var React = require('react');
var jade = require('react-jade');

var template = jade.compileFile(__dirname + '/template.jade');

var html = React.renderToString(template({local: 'values'}));
fs.writeFileSync(__dirname + '/template.html', html);

ES6

If you are using ES6 server side, or the browserify transform client side (even without any other ES6 support), you can use Tagged Literals to embed your jade code directly within your JavaScript components:

var TodoList = React.createClass({
  render: jade`
ul
  each item in this.props.items
    li= item
`
});
var TodoApp = React.createClass({
  getInitialState: function() {
    return {items: [], text: ''};
  },
  onChange: function(e) {
    this.setState({text: e.target.value});
  },
  handleSubmit: function(e) {
    e.preventDefault();
    var nextItems = this.state.items.concat([this.state.text]);
    var nextText = '';
    this.setState({items: nextItems, text: nextText});
  },
  render: jade`
h3 TODO
TodoList(items=this.state.items)
form(onSubmit=this.handleSubmit)
  input(onChange=this.onChange value=this.state.text)
  button= 'Add #' + (this.state.items.length + 1)
`.locals({TodoList: TodoList})
});
React.render(TodoApp(), mountNode);

API

var jade = require('react-jade');

jade(options) / jade(file)

Acts as a browserify transform to inline calls to jade.compileFile. The source code looks something like:

function browserify(options) {
  function transform(file) {
    return new TransformStream(); //stream to do the transform implemented here
  }
  if (typeof options === 'string') {
    var file = options;
    options = arguments[2] || {};
    return transform(file);
  } else {
    return transform;
  }
}

jade.compileFile(filename, options) => fn

Compile a jade file into a function that takes locals and returns a React DOM node.

jade.compileFileClient(filename, options)

Compile a jade file into the source code for a function that takes locals and returns a React DOM node. The result requires either a global 'React' variable, or the ability to require 'React' as a CommonJS module.

jade.compile(jadeString, options) => fn

Same as jade.compileFile except you pass an inline jade string instead of a filename. You should set options.filename manually.

jade.compileClient(jadeString, options)

Same as jade.compileFileClient except you pass an inline jade string instead of a filename. You should set options.filename manually.

template.locals(locals)

You can set default locals values via the template.locals api. e.g.

var React = require('react');
var jade = require('react-jade');

var template = jade.compileFile(__dirname + '/template.jade').locals({title: 'React Jade'});

React.render(template({local: 'values'}), document.getElementById('container'));

Differences from jade

React Jade has a few bonus features, that are not part of Jade.

Automatic partial application of on functions

In react, you add event listeners by setting attributes, e.g. onClick. For example:

button(onClick=clicked) Click Me!
var fn = jade.compileFile('template.jade');
React.render(fn({clicked: function () { alert('clicked'); }), container);

Often, you may want to partially apply a function, e.g.

input(value=view.text onChange=view.setProperty.bind(view, 'text'))
function View() {
}
View.prototype.setProperty = function (name, e) {
  this[name] = e.target.value;
  render();
};
var view = new View();
function render() {
  React.renderComponent(fn({view: view}), container);
}

Because you so often want that .bind syntax, and it gets pretty long and cumbersome to write, react-jade lets you omit it:

input(value=view.text onChange=view.setProperty('text'))

This is then automatically re-written to do the .bind for you.

Style

In keeping with React, the style attribute should be an object, not a string. e.g.

div(style={background: 'blue'})

valueLink

The valueLink property supports two way binding to this.state.name by default. e.g.

input(valueLink=this.state.name)

is eqivalent to:

input(valueLink={value: this.state.name,requestChange:function(v){ this.setState({name:v})}.bind(this)})

This makes building simple forms where each input should use a property of the state very easy.

Unsupported Features

Although a lot of jade just works, there are still some features that have yet to be implemented. Here is a list of known missing features, in order of priority for adding them. Pull requests welcome:

  • mixins
  • attribute extension/merging (via &attributes)
  • case/when
  • using each to iterate over keys of an object (rather than over items in an array)
  • interpolation
  • attribute interpollation
  • special handling of data-attributes
  • outputting unescaped html results in an extra wrapper div and doesn't work for attributes

License

MIT

react-jade's People

Contributors

forbeslindesay avatar jeromew avatar hemanth avatar ai avatar martindale avatar jordaaash avatar nw avatar shernshiou avatar beeant avatar izeau avatar

Watchers

Cserei Zoltán avatar

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.