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
61 lines (50 loc) · 1.67 KB
/
actions.ts
File metadata and controls
61 lines (50 loc) · 1.67 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
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)
const 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)
.map(helpers.connectCurrentPort(onMessage))
const setError = action<string>().mutation(mutations.setError)
const changeNewPortValue = action<string>()
.map(helpers.toNumber)
.mutation(mutations.setNewPortValue)
const addPort = action()
.map(helpers.getNewPortFromState)
.mutation(mutations.setCurrentPort)
.mutation(mutations.addNewApp)
.mutation(mutations.resetNewPortValue)
.do(helpers.storeApps)
const changeTab = action<Tab>().mutation(mutations.changeTab)
const openApp = action<string>()
const toggleExpandState = action<string[]>().mutation(
mutations.toggleExpandStatePath
)
const selectAction = action<string>()
.mutation(mutations.toggleActionItemCollapse)
.mutation(mutations.selectAction)
const toggleCollapsed = action<{ isCollapsed: boolean }>().mutation(
mutations.toggleCollapsed
)
return {
loadDevtools,
setError,
changeNewPortValue,
addPort,
changeTab,
openApp,
toggleExpandState,
selectAction,
toggleCollapsed,
}
}