-
Notifications
You must be signed in to change notification settings - Fork 0
/
routing-wrapper.jsx
153 lines (123 loc) · 3.33 KB
/
routing-wrapper.jsx
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
import React from 'react';
import { IndexRoute, Router, Route, browserHistory } from 'react-router';
import { compose, applyMiddleware } from 'redux';
import { identity } from 'ramda';
import {
FILTER_SET,
NOTE_SELECT
} from 'src/constants';
const ROUTE_FILTER_SET = 'routing-middleware-filter-select';
const ROUTE_NOTE_SELECT = 'routing-middleware-note-select';
const routingMiddleware = ( { selectNote, setFilter } ) => store => next => action => {
const { id, type, name, fromRoutingMiddleware } = action;
if ( fromRoutingMiddleware ) {
return next( action );
}
switch ( type ) {
case FILTER_SET:
setFilter( name );
return next( action );
case ROUTE_FILTER_SET:
return next( {
...action,
fromRoutingMiddleware: true,
type: FILTER_SET
} );
case NOTE_SELECT:
selectNote( id );
return next( action );
case ROUTE_NOTE_SELECT:
return next( {
...action,
fromRoutingMiddleware: true,
type: NOTE_SELECT
} );
default:
return next( action );
}
};
const Wrapper = ( Factory, enhancers = identity ) => props => {
let App, store;
return React.createClass( {
componentWillMount() {
const localApp = Factory( compose(
enhancers,
applyMiddleware( routingMiddleware( {
selectNote: this.selectNote,
setFilter: this.setFilter
} ) )
) );
App = localApp.App;
store = localApp.store;
// If we load on a specific note, provide a
// "back" item in history to get back to the
// main list.
if ( this.props.params.selectedNote ) {
const path = this.buildPath( this.props.params );
browserHistory.push( this.buildPath( {
...this.props.params,
selectedNote: null
} ) );
browserHistory.push( path );
}
this.dispatchAction( this.props.params );
},
componentWillReceiveProps( nextProps ) {
this.dispatchAction( nextProps.params );
},
buildPath( params ) {
let { selectedFilter, selectedNote } = params;
const state = store.getState();
if ( ! selectedFilter ) {
selectedFilter = state.selectedFilter;
}
if ( ! selectedNote ) {
selectedNote = state.selectedNote;
}
return '' +
( selectedFilter ? '/filter/' + selectedFilter : '' ) +
( selectedNote ? '/note/' + selectedNote : '' );
},
dispatchAction( { selectedFilter: name = null, selectedNote } ) {
const id = selectedNote
? parseInt( selectedNote, 10 )
: null;
store.dispatch( {
type: ROUTE_FILTER_SET,
name
} );
store.dispatch( {
type: ROUTE_NOTE_SELECT,
id
} );
},
selectNote( id ) {
if ( id ) {
return browserHistory.push( this.buildPath( { selectedNote: id } ) );
}
if ( null === id ) {
return browserHistory.goBack();
}
},
setFilter( name ) {
browserHistory.push( this.buildPath( { selectedFilter: name } ) );
},
render() {
return <App { ...props } />;
}
} );
};
const RoutingComponent = ( Factory, enhancers ) => props => {
const App = Wrapper( Factory, enhancers )( props );
return (
<Router history={ browserHistory }>
<Route path="/" component={ App }>
<IndexRoute component={ App } />
<Route path="/filter/:selectedFilter/note/:selectedNote" component={ App } />
<Route path="/filter/:selectedFilter" component={ App } />
<Route path="/note/:selectedNote" component={ App } />
</Route>
</Router>
);
};
export default RoutingComponent;