Skip to content

Instantly share code, notes, and snippets.

@rocLv
Forked from anonymous/index.html
Created May 1, 2016 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rocLv/7b00fae858a0b731a09ff29a36e66f2c to your computer and use it in GitHub Desktop.
Save rocLv/7b00fae858a0b731a09ff29a36e66f2c to your computer and use it in GitHub Desktop.
JS Bin redex react todo list example add todo // source http://jsbin.com/wivuyi
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="redex react todo list example add todo">
<script src="https://fb.me/react-0.14.7.min.js"></script>
<script src="https://fb.me/react-dom-0.14.7.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/redux/3.0.4/redux.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div id='root'></div>
<script id="jsbin-javascript">
'use strict';
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; return arr2; } else { return Array.from(arr); } }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
var todo = function todo(state, action) {
switch (action.type) {
case 'ADD_TODO':
return {
id: action.id,
text: action.text,
completed: false
};
case 'TOGGLE_TODO':
if (state.id !== action.id) {
return state;
}
return _extends({}, state, {
completed: !state.completed
});
default:
return state;
}
};
var todos = function todos(state, action) {
if (state === undefined) state = [];
switch (action.type) {
case 'ADD_TODO':
return [].concat(_toConsumableArray(state), [todo(undefined, action)]);
case 'TOGGLE_TODO':
return state.map(function (t) {
todo(t, action);
});
default:
return state;
}
};
var visibilityFilter = function visibilityFilter(state, action) {
if (state === undefined) state = 'SHOW_ALL';
switch (action.type) {
case 'SET_VISIBILITY_FILTER':
return action.filter;
default:
return state;
}
};
var _Redux = Redux;
var combineReducers = _Redux.combineReducers;
var todoApp = combineReducers({
todos: todos,
visibilityFilter: visibilityFilter
});
var _Redux2 = Redux;
var createStore = _Redux2.createStore;
var store = createStore(todoApp);
var _React = React;
var Component = _React.Component;
var nextTodoId = 0;
var TodoApp = (function (_Component) {
_inherits(TodoApp, _Component);
function TodoApp() {
_classCallCheck(this, TodoApp);
_get(Object.getPrototypeOf(TodoApp.prototype), 'constructor', this).apply(this, arguments);
}
_createClass(TodoApp, [{
key: 'render',
value: function render() {
var _this = this;
return React.createElement(
'div',
null,
React.createElement('input', { ref: function (node) {
_this.input = node;
} }),
React.createElement(
'button',
{ onClick: function () {
store.dispatch({
type: 'ADD_TODO',
text: _this.input.value,
id: nextTodoId++
});
_this.input.value = '';
} },
'Add Todo'
),
React.createElement(
'ul',
null,
this.props.todos.map(function (todo) {
return React.createElement(
'li',
{ key: todo.id },
todo.text
);
})
)
);
}
}]);
return TodoApp;
})(Component);
var render = function render() {
ReactDOM.render(React.createElement(TodoApp, {
todos: store.getState().todos
}), document.getElementById('root'));
};
store.subscribe(render);
render();
console.log('All tests passed!');
</script>
<script id="jsbin-source-javascript" type="text/javascript">const todo = (state, action) => {
switch(action.type){
case 'ADD_TODO':
return {
id: action.id,
text: action.text,
completed: false
};
case 'TOGGLE_TODO':
if (state.id !== action.id) {
return state;
}
return {
...state,
completed: !state.completed
};
default:
return state;
}
};
const todos = (state = [], action) => {
switch (action.type){
case 'ADD_TODO':
return [
...state,
todo(undefined, action)
];
case 'TOGGLE_TODO':
return state.map(t => {
todo(t, action)
});
default:
return state;
}
};
const visibilityFilter = (
state = 'SHOW_ALL',
action
) => {
switch (action.type) {
case 'SET_VISIBILITY_FILTER':
return action.filter;
default:
return state;
}
};
const { combineReducers } = Redux;
const todoApp = combineReducers({
todos,
visibilityFilter
});
const { createStore } = Redux;
const store = createStore(todoApp);
const { Component } =React;
let nextTodoId = 0;
class TodoApp extends Component {
render() {
return (
<div>
<input ref={node => {
this.input = node
}}/>
<button onClick={ () => {
store.dispatch({
type: 'ADD_TODO',
text: this.input.value,
id: nextTodoId++
});
this.input.value = '';
}}>
Add Todo</button>
<ul>
{this.props.todos.map(todo =>
<li key={todo.id}>
{todo.text}
</li>
)}
</ul>
</div>
);
}
}
const render = () => {
ReactDOM.render(
<TodoApp
todos={store.getState().todos}
/>,
document.getElementById('root')
);
};
store.subscribe(render);
render();
console.log('All tests passed!')
</script></body>
</html>
'use strict';
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; return arr2; } else { return Array.from(arr); } }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
var todo = function todo(state, action) {
switch (action.type) {
case 'ADD_TODO':
return {
id: action.id,
text: action.text,
completed: false
};
case 'TOGGLE_TODO':
if (state.id !== action.id) {
return state;
}
return _extends({}, state, {
completed: !state.completed
});
default:
return state;
}
};
var todos = function todos(state, action) {
if (state === undefined) state = [];
switch (action.type) {
case 'ADD_TODO':
return [].concat(_toConsumableArray(state), [todo(undefined, action)]);
case 'TOGGLE_TODO':
return state.map(function (t) {
todo(t, action);
});
default:
return state;
}
};
var visibilityFilter = function visibilityFilter(state, action) {
if (state === undefined) state = 'SHOW_ALL';
switch (action.type) {
case 'SET_VISIBILITY_FILTER':
return action.filter;
default:
return state;
}
};
var _Redux = Redux;
var combineReducers = _Redux.combineReducers;
var todoApp = combineReducers({
todos: todos,
visibilityFilter: visibilityFilter
});
var _Redux2 = Redux;
var createStore = _Redux2.createStore;
var store = createStore(todoApp);
var _React = React;
var Component = _React.Component;
var nextTodoId = 0;
var TodoApp = (function (_Component) {
_inherits(TodoApp, _Component);
function TodoApp() {
_classCallCheck(this, TodoApp);
_get(Object.getPrototypeOf(TodoApp.prototype), 'constructor', this).apply(this, arguments);
}
_createClass(TodoApp, [{
key: 'render',
value: function render() {
var _this = this;
return React.createElement(
'div',
null,
React.createElement('input', { ref: function (node) {
_this.input = node;
} }),
React.createElement(
'button',
{ onClick: function () {
store.dispatch({
type: 'ADD_TODO',
text: _this.input.value,
id: nextTodoId++
});
_this.input.value = '';
} },
'Add Todo'
),
React.createElement(
'ul',
null,
this.props.todos.map(function (todo) {
return React.createElement(
'li',
{ key: todo.id },
todo.text
);
})
)
);
}
}]);
return TodoApp;
})(Component);
var render = function render() {
ReactDOM.render(React.createElement(TodoApp, {
todos: store.getState().todos
}), document.getElementById('root'));
};
store.subscribe(render);
render();
console.log('All tests passed!');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment