Example

This example is where you should start. It walks you through creating the classic TodoMVC application using a simple Flux implementation.

Prerequisites

  • ES6
  • React

Step 1. Getting started

Clone and build the flux repo:

git clone https://github.com/facebook/flux.git

cd flux

npm install

Copy and build flux-shell:

cp -R examples/flux-shell examples/my-todomvc

cd examples/my-todomvc

npm install

npm run watch

Open examples/my-todomvc/index.html in your browser. You should see a blank page that says “Hello World!”

Step 2. Set up TodoMVC assets

Copy assets from examples/todomvc-common

cp -R ../todomvc-common todomvc-common

Update examples/my-todomvc/index.html to include the assets:

<!doctype html>

<html lang=”en”>

<head>

<meta charset=”utf-8″>

<title>Flux • TodoMVC</title>

<link rel=”stylesheet” href=”todomvc-common/base.css”>

</head>

<body>

<section id=”todoapp”></section>

<footer id=”info”>

<p>Double-click to edit a todo</p>

<p>Part of <a href=”http://todomvc.com”>TodoMVC</a></p>

</footer>

<script src=”./bundle.js”></script>

</body>

</html>

Update examples/my-todomvc/src/root.js to render into correct element:

ReactDOM.render(<div>Hello World!</div>, document.getElementById(‘todoapp’));

Refresh examples/my-todomvc/index.html in your browser. The page should now have some styling and still say “Hello World!” in the center. If it doesn’t, make sure npm run watch is still running

Step 3. Setting up Flux

Set up folder structure:

src

├── containers

│   └── AppContainer.js

├── data

│   ├── TodoActions.js

│   ├── TodoActionTypes.js

│   ├── TodoDispatcher.js

│   └── TodoStore.js

├── root.js

└── views

└── AppView.js

Set up data/TodoDispatcher.js. Here we just need to import dispatcher from Flux and instantiate a new dispatcher to use throughout the application.

import {Dispatcher} from ‘flux’;

export default new Dispatcher();

Create the actions and action types. Let’s set up the files that will eventually contain all of the actions in the application.

Set up data/TodoActionTypes.js. This is a simple enum to list the kinds of actions we will be creating.

const ActionTypes = {

ADD_TODO: ‘ADD_TODO’,

};

export default ActionTypes;

Set up data/TodoActions.js. Each function here dispatches an action.

import TodoActionTypes from ‘./TodoActionTypes’;

import TodoDispatcher from ‘./TodoDispatcher’;

const Actions = {

addTodo(text) {

TodoDispatcher.dispatch({

type: TodoActionTypes.ADD_TODO,

text,

});

},

};

export default Actions;

Now we can set up our first store! Open data/TodoStore.js. This will save information about all of the Todo objects in our application. It will use an Immutable map as the state.

import Immutable from ‘immutable’;

import {ReduceStore} from ‘flux/utils’;

import TodoActionTypes from ‘./TodoActionTypes’;

import TodoDispatcher from ‘./TodoDispatcher’;

class TodoStore extends ReduceStore {

constructor() {

super(TodoDispatcher);

}

getInitialState() {

return Immutable.OrderedMap();

}

reduce(state, action) {

switch (action.type) {

case TodoActionTypes.ADD_TODO:

// Do nothing for now, we will add logic here soon!

return state;

default:

return state;

}

}

}

export default new TodoStore();

Let’s set up a really simple view using React. Open views/AppView.js.

import React from ‘react’;

function AppView() {

return <div>Hello from Flux!</div>;

}

export default AppView;

Containers are what connects the state from stores to views, let’s set up containers/AppContainer.js now.

import AppView from ‘../views/AppView’;

import {Container} from ‘flux/utils’;

import TodoStore from ‘../data/TodoStore’;

function getStores() {

return [

TodoStore,

];

}

function getState() {

return {

todos: TodoStore.getState(),

};

}

export default Container.createFunctional(AppView, getStores, getState);

Finally, let’s update the root of our application to render this new AppContainer. Open root.js:

import AppContainer from ‘./containers/AppContainer’;

import React from ‘react’;

import ReactDOM from ‘react-dom’;

ReactDOM.render(<AppContainer />, document.getElementById(‘todoapp’));

Reload the page, it should look basically the same as the last step but say “Hello from Flux!”

Step 4. Rendering some Todos

We will use Immutable.js to hold onto data about each Todo. This will give us a nice API to update their information without needing to worry about accidentally mutating the Todo. Create data/Todo.js.

import Immutable from ‘immutable’;

const Todo = Immutable.Record({

id: ”,

complete: false,

text: ”,

});

export default Todo;

Now we can use this structure, along with a simple Counter to implement the ADD_TODO action. Create or copy Counter then update data/TodoStore.js

import Counter from ‘./Counter’;

import Todo from ‘./Todo’;

class TodoStore extends ReduceStore {

reduce(state, action) {

switch (action.type) {

case TodoActionTypes.ADD_TODO:

// Don’t add todos with no text.

if (!action.text) {

return state;

}

const id = Counter.increment();

return state.set(id, new Todo({

id,

text: action.text,

complete: false,

}));

 

default:

return state;

}

}

}

Let’s update our view to actually render the Todos that are being stored. Update views/AppView.js.

import React from ‘react’;

function AppView(props) {

return (

<div>

<Header {…props} />

<Main {…props} />

<Footer {…props} />

</div>

);

}

function Header(props) {

return (

<header id=”header”>

<h1>todos</h1>

</header>

);

}

function Main(props) {

if (props.todos.size === 0) {

return null;

}

return (

<section id=”main”>

<ul id=”todo-list”>

{[…props.todos.values()].reverse().map(todo => (

<li key={todo.id}>

<div className=”view”>

<input

className=”toggle”

type=”checkbox”

checked={todo.complete}

onChange={

// Empty function for now, we will implement this later.

() => {}

}

/>

<label>{todo.text}</label>

<button

className=”destroy”

onClick={

// Empty function for now, we will implement this later.

() => {}

}

/>

</div>

</li>

))}

</ul>

</section>

);

}

function Footer(props) {

if (props.todos.size === 0) {

return null;

}

return (

<footer id=”footer”>

<span id=”todo-count”>

<strong>

{props.todos.size}

</strong>

{‘ items left’}

</span>

</footer>

);

}

export default AppView;

To make sure it all works we have to create some fake data for now. Modify root.js to create some fake Todos after the initial render.

import AppContainer from ‘./containers/AppContainer’;

import React from ‘react’;

import ReactDOM from ‘react-dom’;

ReactDOM.render(<AppContainer />, document.getElementById(‘todoapp’));

// We will remove these lines later:

import TodoActions from ‘./data/TodoActions’;

TodoActions.addTodo(‘My first task’);

TodoActions.addTodo(‘Another task’);

TodoActions.addTodo(‘Finish this tutorial’);

Refresh the page and you should see some data that is coming from your TodoStore! Keep in mind that it’s not interactive yet, so no buttons will work.

Step 5. Adding some interactivity

Let’s add a few more actions so that the buttons do something.

Update data/TodoActionTypes.js

const ActionTypes = {

ADD_TODO: ‘ADD_TODO’,

DELETE_TODO: ‘DELETE_TODO’,

TOGGLE_TODO: ‘TOGGLE_TODO’,

};

export default ActionTypes;

Update data/TodoActions.js

const Actions = {

addTodo(text) {

TodoDispatcher.dispatch({

type: TodoActionTypes.ADD_TODO,

text,

});

},

deleteTodo(id) {

TodoDispatcher.dispatch({

type: TodoActionTypes.DELETE_TODO,

id,

});

},

toggleTodo(id) {

TodoDispatcher.dispatch({

type: TodoActionTypes.TOGGLE_TODO,

id,

});

},

};

export default Actions;

Update data/TodoStore.js

class TodoStore extends ReduceStore {

reduce(state, action) {

switch (action.type) {

case TodoActionTypes.DELETE_TODO:

return state.delete(action.id);

case TodoActionTypes.TOGGLE_TODO:

return state.update(

action.id,

todo => todo.set(‘complete’, !todo.complete),

);

}

}

}

export default new TodoStore();

Now our store is capable of deleting or toggling a Todo. Let’s hook it up to our view now. In a Flux app the only place that should have knowledge of Flux is the container, this means we have to define the callbacks in AppContainer and pass them down to AppView, the view does not dispatch the actions directly. This makes it easier to reuse, test, and change views.

Update containers/AppContainer.js

import TodoActions from ‘../data/TodoActions’;

function getState() {

return {

todos: TodoStore.getState(),

onDeleteTodo: TodoActions.deleteTodo,

onToggleTodo: TodoActions.toggleTodo,

};

}

Now we need to use the callbacks and update a small amount of rendering logic that displays the number of completed todos. Update views/AppView.js

function Main(props) {

if (props.todos.size === 0) {

return null;

}

return (

<section id=”main”>

<ul id=”todo-list”>

{[…props.todos.values()].reverse().map(todo => (

<li key={todo.id}>

<div className=”view”>

<input

className=”toggle”

type=”checkbox”

checked={todo.complete}

onChange={() => props.onToggleTodo(todo.id)}

/>

<label>{todo.text}</label>

<button

className=”destroy”

onClick={() => props.onDeleteTodo(todo.id)}

/>

</div>

</li>

))}

</ul>

</section>

);

}

function Footer(props) {

if (props.todos.size === 0) {

return null;

}

const remaining = props.todos.filter(todo => !todo.complete).size;

const phrase = remaining === 1 ? ‘ item left’ : ‘ items left’;

return (

<footer id=”footer”>

<span id=”todo-count”>

<strong>

{remaining}

</strong>

{phrase}

</span>

</footer>

);

}

export default AppView;

Get industry recognized certification – Contact us

Menu