Skip to content

rstacruz/textr-site

 
 

Repository files navigation

React seed

A boilerplate for building React apps with ES6 and webpack.

What you get

  • React 0.13
  • Compilation of ES6 & JSX to ES5
  • Jest testing framework
  • webpack bundling with react hot loader (as well as html, css & sass loaders)
  • Basic flux architecture with app actions, stores and example web API usage

Getting started

Clone the project and remove the git repository:

git clone --depth=1 https://github.com/badsyntax/react-seed.git my-project
cd my-project
rm -rf .git && git init

npm scripts

  • npm start - Build and start the app in dev mode at http://localhost:8000
  • npm test - Run the tests
  • npm run build - Run a production build

Examples

### Writing components:

// Filename: Menu.jsx

'use strict';

import './_Menu.scss';

import React from 'react';
import MenuItem from '../MenuItem/MenuItem';

let { PropTypes } = React;

class Menu extends React.Component {

  constructor(...args) {
    super(...args);
    // Set initial state
    this.state = {
      foo: false
    };
  }

  getMenuItem(item) {
    return (
      <MenuItem item={item} key={'menu-item-' + item.id} />
    );
  }

  render() {
    return (
      <ul className={'menu'}>
        {this.props.items.map(this.getMenuItem, this)}
      </ul>
    );
  }
}

Menu.propTypes = {
  items: PropTypes.array.isRequired
};

export default Menu;

Using mixins:

It's a bit awkward to use mixins with ES6 classes. You'll need to use a mixin helper:

import mixin from 'util/mixin';

let draggable = {
  drag() { /* … */ }
};

let droppable = {
  drop() { /* … */ }
};

class Dialog extends mixin(React.Component, draggable, droppable) {
  /* … */
}

Alternatively, just use React.createClass.

###Writing tests:

// Filename: __tests__/Menu-test.js

'use strict';

import React from 'react/addons';

jest.dontMock('../Menu.jsx');
jest.dontMock('../../MenuItem/MenuItem.jsx');

import Menu from '../Menu.jsx';

let { TestUtils } = React.addons;

describe('Menu', () => {

  let menuItems = [
    { id: 1, label: 'Option 1' },
    { id: 2, label: 'Option 2' }
  ];

  let menu = TestUtils.renderIntoDocument(
    <Menu items={menuItems} />
  );
  let menuElem = React.findDOMNode(menu);

  it('Renders the menu items', () => {
    expect(menuElem.querySelectorAll('li').length).toEqual(2);
  });
});

Sass, CSS & webpack

import Sass and CSS files from within your JavaScript component files:

// Filename: app.jsx
import 'normalize.css/normalize.css';
import './scss/app.scss';
  • Sass include paths can be adjusted in the webpack.config.js file.
  • All CSS (compiled or otherwise) is run through Autoprefixer.
  • CSS files are combined in the order in which they are imported in JavaScript, thus you should always import your CSS/Sass before importing any other JavaScript files.
  • Use an approach like BEM to avoid specificity issues that might exist due to unpredicatable order of CSS rules.

HTML files

All required .html files are compiled with lodash.template and synced into the ./build directory:

// Filename: app.jsx
import './index.html';
  • You can adjust the lodash template data in the webpack.config.js file.

Conventions

  • Use fat arrows for anonymous functions
  • Don't use var. Use let and const.

Releasing

Updating version:

  • npm version patch - Bump version
  • git push && git push --tags - Push to remote

Publishing package:

  • npm login - Login to npm
  • npm publish - Publish package

Credits

This project was initially forked from https://github.com/tcoopman/react-es6-browserify

License

Copyright (c) 2015 Richard Willis

MIT (http://opensource.org/licenses/MIT)

About

Just sick experiments to create textr playground with react

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 65.1%
  • HTML 21.4%
  • CSS 13.5%