-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.js
More file actions
95 lines (75 loc) · 2.41 KB
/
Copy pathindex.js
File metadata and controls
95 lines (75 loc) · 2.41 KB
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
import { ActionCreators } from 'redux-undo';
export const redo = ActionCreators.redo();
export const reset = () => ({
type: 'RESET',
payload: {}
});
export const setSearchId = searchId => ({
type: 'SET_SEARCH_ID',
payload: { searchId }
});
export const setServerStartTime = serverStartTime => ({
type: 'SET_SERVER_START_TIME',
payload: { serverStartTime }
});
export const setHomeInfoBarClose = homeInfoBarClose => ({
type: 'SET_HOME_INFO_BAR_CLOSE',
payload: { homeInfoBarClose }
});
export const setViewConfig = viewConfig => ({
type: 'SET_VIEW_CONFIG',
payload: { viewConfig }
});
export const setHiglassMouseTool = higlassMouseTool => ({
type: 'SET_HIGLASS_MOUSE_TOOL',
payload: { higlassMouseTool }
});
export const setSearchHover = searchHover => ({
type: 'SET_SEARCH_HOVER',
payload: { searchHover }
});
export const setSearchRightBarMetadata = searchRightBarMetadata => ({
type: 'SET_SEARCH_RIGHT_BAR_METADATA',
payload: { searchRightBarMetadata }
});
export const setSearchRightBarProgress = searchRightBarProgress => ({
type: 'SET_SEARCH_RIGHT_BAR_PROGRESS',
payload: { searchRightBarProgress }
});
export const setSearchRightBarHelp = searchRightBarInfoHelp => ({
type: 'SET_SEARCH_RIGHT_BAR_HELP',
payload: { searchRightBarInfoHelp }
});
export const setSearchRightBarProjection = searchRightBarProjection => ({
type: 'SET_SEARCH_RIGHT_BAR_PROJECTION',
payload: { searchRightBarProjection }
});
export const setSearchRightBarProjectionSettings = searchRightBarProjectionSettings => ({
type: 'SET_SEARCH_RIGHT_BAR_PROJECTION_SETTINGS',
payload: { searchRightBarProjectionSettings }
});
export const setSearchRightBarShow = searchRightBarShow => ({
type: 'SET_SEARCH_RIGHT_BAR_SHOW',
payload: { searchRightBarShow }
});
export const setSearchRightBarTab = searchRightBarTab => ({
type: 'SET_SEARCH_RIGHT_BAR_TAB',
payload: { searchRightBarTab }
});
export const setSearchRightBarWidth = searchRightBarWidth => ({
type: 'SET_SEARCH_RIGHT_BAR_WIDTH',
payload: { searchRightBarWidth }
});
export const setSearchSelection = searchSelection => ({
type: 'SET_SEARCH_SELECTION',
payload: { searchSelection }
});
export const setSearchTab = searchTab => ({
type: 'SET_SEARCH_TAB',
payload: { searchTab }
});
export const setShowAutoencodings = showAutoencodings => ({
type: 'SET_SHOW_AUTOENCODINGS',
payload: { showAutoencodings }
});
export const undo = ActionCreators.undo();