-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentry.js
85 lines (74 loc) · 1.65 KB
/
entry.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import FluxComponent from 'flummox/component';
import Immutable from 'immutable';
import React from 'react';
import {Actions, Store, Flummox} from 'flummox';
class TodoActions extends Actions {
deleteTodo(todo) {
return todo;
}
}
class TodoStore extends Store {
constructor(flux) {
super();
let todoActionIds = flux.getActionIds('todos');
this.register(todoActionIds.deleteTodo, this.handleDeleteTodo);
this.state = {
todos: new Immutable.Set([
'foo',
'bar',
'baz',
'qux'
])
};
}
handleDeleteTodo(todo) {
this.setState({
todos: this.state.todos.delete(todo)
});
}
}
class Flux extends Flummox {
constructor() {
super();
this.createActions('todos', TodoActions);
this.createStore('todos', TodoStore, this);
}
}
class Todo extends React.Component {
constructor() {
this.onClick = this.onClick.bind(this);
}
render() {
return (
<li onClick={this.onClick}>{this.props.children}</li>
);
}
onClick() {
let todoActions = this.props.flux.getActions('todos');
todoActions.deleteTodo(this.props.children);
}
}
class Todos extends React.Component {
render() {
let todos = this.props.todos.toJS().map(todo =>
<Todo key={todo}>{todo}</Todo>);
return (
<ul>
<FluxComponent>
{todos}
</FluxComponent>
</ul>
);
}
}
class App extends React.Component {
render() {
return (
<FluxComponent flux={this.props.flux} connectToStores={'todos'}>
<Todos />
</FluxComponent>
);
}
}
let flux = new Flux();
React.render(<App flux={flux} />, document.getElementById('app'));