dleitee / react-fetches

🐙React Fetches a new way to make requests into your REST API's.
249 stars 11 forks source link
api fetch react rest

react-fetches

Greenkeeper badge codecov CircleCI

React Fetches is a simple and efficient way to make requests into your REST API's.

Table of Contents

Motivation

Me and my friends were tired to use a lot of boilerplate code to do our requests.

We used to build our projects with a set of libraries as listed below:

We needed to make a request, normalize the response, put it into a reducer, listen to the reducer, unnormalize the data came from reducer, show it on the view.

OMG!!!

So I created the react-fetches.

PS: Thank you for all of these libraries that helped us until now to build awesome projects.

Install

npm install --save fetches react-fetches

Basic Example

app.js

import React from 'react'
import { render } from 'react-dom'
import { createClient } from 'fetches'
import { Provider } from 'react-fetches'

import View from './view'

const client = createClient('https://your-api.com/api/v1/')

const Root = () => (
  <Provider client={client}>
    <View />
  </Provider>
)

render(<Root />, document.getElementById('root'))

view.js

import React, { Component, Fragment } from 'react'
import { connect } from 'react-fetches'

const mapRequestsToProps = (http, map) => ({
  userID: map(http.get('user'), (user) => user.id),
  groups: http.get('groups'),
})

const mapDispatchToProps = (http, dispatch) => ({
  addGroup: dispatch(http.post('group'))
})

class View extends Component {

  constructor(props) {
    super(props)
    this.state = {
      addedGroups: [],
    }
  }

  addGroup() {
    this.props.addGroup({ name: 'Name of Group' }).then(({data}) => {
      this.setState((prevState) => ({
        addedGroups: [...prevState.addedGroupd, data]
      }))
    })
  }

  render() {
    if (this.props.loading) {
      return 'Loading...'
    }

    const groups = [...this.props.groups, ...this.state.addedGroups]

    return (
      <Fragment>
        <ul>
          {groups.map((group) => (
            <li key={group.id}>{group.name}</li>
           ))}
        </ul>
        <button onClick={this.addGroup}>Add group</button>
      </Fragment>
    )
  }

}

export default connect(mapRequestsToProps, mapDispatchToProps)(View)

API Reference

connect(mapRequestToProps, mapDispatchToProps)(Component)

Adds some props, came from mapRequestToProps and mapDispatchToProps, into your component.

const data = { name: 'param name' } exampleFunction(data, (response) => response.id)


### mapRequestToProps = (http, map) => Object

Should be a function that receive two arguments **http** and **map**, and should return an object with the props.

```es6
const mapRequestsToProps = (http, map) => ({
  groups: http.get('groups'),
  userID: map(http.get('user'), (user) => user.id),
})

mapDispatchToProps = (http, dispatch) => Object

Should be a function that receive two arguments http and dispatch, and should return an object with the props.

NOTE: Here the http is a bit different of the mapRequestToProps http.

const mapDispatchToProps = (http, dispatch) => ({
  addGroup: dispatch(http.post('group'))
})

NOTE: The function returned as a prop can receive two parameters data and map

Inspirations

Support

React 16+

Fetches is based on Fetch API, which the most of modern browsers already are compatible, but if you need to be compatible with an older browser, you may use this polyfill

How to Contribute

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -m 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :)

License

MIT License

Copyright (c) 2018 Daniel Leite de Oliveira

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.