forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactions.ts
More file actions
65 lines (52 loc) · 2.04 KB
/
actions.ts
File metadata and controls
65 lines (52 loc) · 2.04 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
import { Action } from './'
import * as mutations from './mutations'
import * as helpers from './helpers'
import { Message, Tab } from './state'
export default (action: Action) => {
const onMessage = action<Message>()
.mutation(mutations.performMutationsByMessageType)
.mutation(mutations.addMessagesFromClient)
return {
loadDevtools: action()
// .do(({ storage }) => storage.clear())
// Do a check if the current app matches the keys of the ???
.map(helpers.getAppsFromStorage)
.mutation(mutations.setApps)
.map(helpers.getCurrentPortFromStorage)
.mutation(mutations.setCurrentPort)
.mutation(mutations.setAppLoaded)
.do(helpers.connectCurrentPort(onMessage)),
setError: action<string>().mutation(mutations.setError),
changeNewPortValue: action<string>()
.map(helpers.toNumber)
.mutation(mutations.setNewPortValue),
addPort: action()
.map(helpers.getNewPortFromState)
.mutation(mutations.setCurrentPort)
.mutation(mutations.addNewApp)
.mutation(mutations.resetNewPortValue)
.do(helpers.storeApps)
.do(helpers.connectCurrentPort(onMessage)),
changeTab: action<Tab>().mutation(mutations.changeTab),
toggleExpandState: action<string[]>().mutation(
mutations.toggleExpandStatePath
),
selectAction: action<string>()
.mutation(mutations.toggleActionItemCollapse)
.mutation(mutations.selectAction),
toggleCollapsed: action<{ isCollapsed: boolean }>().mutation(
mutations.toggleCollapsed
),
configurePort: action().mutation(mutations.configurePort),
cancelConfigurePort: action().mutation(mutations.cancelConfigurePort),
removeApp: action()
.filter(helpers.confirm('Are you sure you want to remove the app?'))
.do(helpers.removeCurrentPort)
.mutation(mutations.removeApp)
.do(helpers.storeApps)
.do(helpers.connectCurrentPort(onMessage)),
selectPort: action<string>()
.mutation(mutations.selectPort)
.do(helpers.connectCurrentPort(onMessage)),
}
}