forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.tsx
More file actions
40 lines (36 loc) · 1.01 KB
/
index.tsx
File metadata and controls
40 lines (36 loc) · 1.01 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
import * as React from 'react'
import { FaRocket } from 'react-icons/fa'
import { useActions, useAppState } from '../../overmind'
import { colors } from '../../theme'
import ActionPayload from '../ActionPayload'
import ActionSelector from '../ActionSelector'
import * as styles from './styles'
const ActionsTools: React.FunctionComponent = () => {
const state = useAppState()
const actions = useActions()
return (
<form
className={styles.wrapper}
onSubmit={(event) => {
event.preventDefault()
actions.executeAction()
}}
>
<ActionSelector />
<ActionPayload />
<div
className={styles.button}
onClick={state.isExecutingAction ? null : () => actions.executeAction()}
style={{
backgroundColor:
!state.isExecutingAction && state.currentApp.selectedActionQuery
? colors.green
: colors.highlight,
}}
>
<FaRocket />
</div>
</form>
)
}
export default ActionsTools