useEvent
Bind event to current fork instance to use in dom event handlers. Used only with ssr, in application without forks useEvent will do nothing
useEvent(unit)
Arguments
Returns
(Function): Function to pass to event handlers. Will trigger given unit in current scope
Example
import ReactDOM from 'react-dom'
import {createDomain, fork} from 'effector'
import {useStore, useEvent, Provider} from 'effector-react/ssr'
const app = createDomain()
const inc = app.createEvent()
const $count = app.createStore(0).on(inc, x => x + 1)
const App = () => {
const count = useStore($count)
const incFn = useEvent(inc)
return (
<>
<p>Count: {count}</p>
<button onClick={() => incFn()}>increment</button>
</>
)
}
const scope = fork(app)
ReactDOM.render(
<Provider value={scope}>
<App />
</Provider>,
document.getElementById('root'),
)
useEvent(shape)
Arguments
shapeObject or array of (Event or Effect): Events or effects as values which will be bound to the currentscope
Returns
(Object or Array): List of functions with the same names or keys as argument to pass to event handlers. Will trigger given unit in current scope
Example
import ReactDOM from 'react-dom'
import {createDomain, fork} from 'effector'
import {useStore, useEvent, Provider} from 'effector-react/ssr'
const app = createDomain()
const inc = app.createEvent()
const dec = app.createEvent()
const $count = app
.createStore(0)
.on(inc, x => x + 1)
.on(dec, x => x - 1)
const App = () => {
const count = useStore($count)
const handler = useEvent({inc, dec})
// or
const [a, b] = useEvent([inc, dec])
return (
<>
<p>Count: {count}</p>
<button onClick={() => handler.inc()}>increment</button>
<button onClick={() => handler.dec()}>decrement</button>
</>
)
}
const scope = fork(app)
ReactDOM.render(
<Provider value={scope}>
<App />
</Provider>,
document.getElementById('root'),
)