rel-events
To read the docs, go to our docs folder. :)
To see the app demo, go to out codesandbox page!
Welcome to the rel-events
github repo!
rel-events
is an awesome events library for react. It uses redux
behind the scenes to offer a more convenient, simple and relevant API for dealing with data flows.
Basic Usage
Installing
To install rel-events
, just run npm i --save rel-events
.
If you wish to use Events to make HTTP Requests (which you probably do), there's another step to set things up. Follow our HTTPEvents Guide to have everything ready. :)
With that done, you may start to create some events!
Creating a basic Event
Let's say you want to pass a range of dates from DatePickerComponent
to CalendarComponent
. Instead of creating actions and reducers, forget everything about redux; create an Event instead.
To do that, you need to initialize a new Event. It's recommended you create it in a new file (events.js
).
import { Event } from 'rel-events';
export const ChooseDateRangeEvent = new Event({
name: 'chooseDateRange',
manager: {
initialState: {},
onDispatch: (state, event) => {
return {
...state,
startDate: event.startDate,
endDate: event.endDate,
}
}
}
});
Let's break step-by-step what this code means:
First, you import the Event class from our lib, then instantiate a new event. This Event receives an object with two required keys: name
and manager
. While name
is self-explanatory, manager
is not.
For default Events, an Event Manager should have an initialState
and implement an onDispatch
method, which will be called whenever the event is dispatched. This is the alternative to the reducer part of the default redux flow.
We recommend using classes for your EventManagers as well, since we can decouple Events from their managers.
export class ChooseDateRangeEventManager {
initialState = {};
onDispatch = (state, event) => {
return {
...state,
startDate: event.startDate,
endDate: event.endDate,
}
}
}
}
Then:
import { Event } from 'rel-events';
import { ChooseDateRangeEventManager } from './eventManagers.js';
export const ChooseDateRangeEvent = new Event({
name: 'chooseDateRange',
manager: new ChooseDateRangeEventManager(),
);
Hooking it up with redux
With the event instantiated, you need to hook it up to redux so it can be dispatched and save data. When creating your root reducer, you should import the Event and initialize its reducers.
import { combineReducers } from 'redux';
import { ChooseDateRangeEvent } from './events.js';
export default combineReducers({
...ChooseDateRangeEvent.createReducers(),
});
Notice the store names and reducers aren't declared anymore; you don't need to. Any Event object will deal with anything and everything redux related. To be able to do that, you only need to hook it to redux as the example above. To see more on how this works, read our how it works docs.
Now you have our Event ready to go! Now, you just need to register it to a Component, which can trigger it and/or listen to it.
Registering components to Events
Let's say you have a component called DatePickerComponent
that knows how to render a beautiful date picker. It has a handleDatesChange
method to update the state with the new dates.
export default class DatePickerComponent extends React.Component {
handleDatesChange = (startDate, endDate) => {
this.setState({ startDate, endDate });
}
}
To be able to send data from this component to the CalendarComponent
, you may register both Components to your Event. Whenever you register a Component to an Event, you automatically receive a function to trigger the event as a prop. The function's name is the same as the event name you passed when initializing the event.
import { ChooseDateRangeEvent } from './events.js';
class DatePickerComponent extends React.Component {
handleDatesChange = (startDate, endDate) => {
this.setState(
{ startDate, endDate },
() => this.props.chooseDateRange({ startDate, endDate })
);
}
}
export default ChooseDateRangeEvent.register({
Component: DatePickerComponent,
});
Then, you may register your CalendarComponent
as well, but passing a new props
key:
import { ChooseDateRangeEvent } from './events.js';
class CalendarComponent extends React.Component {
render(){
const { startDate, endDate } = this.props;
return <h1>The dates are: {startDate}, {endDate}</h1>
}
}
export default ChooseDateRangeEvent.register({
Component: CalendarComponent,
props: ['startDate', 'endDate'],
})
And that's it! We still have a lot of other features to discuss, but I'll talk about those later. Before that, let's talk about using events to make HTTP requests.
Contributing
Thanks for wanting to contribute! Please, read our Contributing guide carefully before opening PRs, though. We do enjoy PRs, but any PRs that don't follow our contributing guidelines will probably be rejected :/
Thanks
Thanks for everyone at Labcodes for giving me the structure and time for me to work on this pet project of mine and giving me lots of awesome feedback! Bernardo Fontes, Luan Fonseca, Thulio Philipe, Mariana Bedran, Breno Chamie and Renato Oliveira, I'm really, really grateful for your input! <3