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
|
var JarrDispatcher = require('../dispatcher/JarrDispatcher');
var ActionTypes = require('../constants/JarrConstants');
var jquery = require('jquery');
var MenuActions = {
// PARENT FILTERS
reload: function() {
jquery.getJSON('/menu', function(payload) {
JarrDispatcher.dispatch({
type: ActionTypes.RELOAD_MENU,
feeds: payload.feeds,
categories: payload.categories,
categories_order: payload.categories_order,
is_admin: payload.is_admin,
max_error: payload.max_error,
error_threshold: payload.error_threshold,
crawling_method: payload.crawling_method,
all_unread_count: payload.all_unread_count,
});
});
},
setFilter: function(filter) {
JarrDispatcher.dispatch({
type: ActionTypes.MENU_FILTER,
filter: filter,
});
},
toggleAllFolding: function(all_folded) {
JarrDispatcher.dispatch({
type: ActionTypes.TOGGLE_MENU_FOLD,
all_folded: all_folded,
});
},
};
module.exports = MenuActions;
|