GithubHelp home page GithubHelp logo

underdogio / redux-rest-data Goto Github PK

View Code? Open in Web Editor NEW
0.0 9.0 0.0 2.6 MB

Redux store for managing data fetched from a REST API.

Home Page: https://underdogio.github.io/redux-rest-data/

License: MIT License

TypeScript 99.56% HTML 0.44%

redux-rest-data's Introduction

@underdogio/redux-rest-data

Redux store for managing data fetched from a REST API.

Table of contents

Installation

Install from npm:

yarn add @underdogio/redux-rest-data

Configure the middleware:

import {middleware} from '@underdogio/redux-rest-data'

const dataStoreMiddleware = middleware({
    baseUrl: 'http://endpoint.api'
  })
)

Create reducers for your data stores:

import { createDataStore } from '@underdogio/redux-rest-data'

interface DataType {
  id: string
  completed: boolean
  title: string
}

const todosStore = createDataStore<DataType>('todos', {
  baseUrl: '/todos'
})

Hook everything up to your Redux store:

import { applyMiddleware, combineReducers, createStore } from 'redux'

const reducer = combineReducers({
  data: combineReducers({
    todos: todosDataStore.reducer
  })
})

const store = createStore(reducer, applyMiddleware(dataStoreMiddleware))

Start making requests!

await store.dispatch(
  // Fetch all completed todos.
  todosStore.actions.fetchItems({
    params: {
      completed: true
    }
  })
)

const { todos } = store.getState().data
todos.ids.map(id => todos.byId[id].data)

Usage

You can check out /example/index.tsx if you want to see a working example.

Setting up the middleware

Before you can start making requests for data, you need to apply the middleware to your store and pass it information about your API.

import { middleware } from '@underdogio/redux-rest-data'

import { applyMiddleware, createStore } from 'redux'

const dataStoreMiddleware = middleware({
  // The base url for your API that you will be making requests to.
  baseUrl: 'http://endpoint.api',

  // Optional settings for all requests. Here we're gonna be including an
  // `Authorization` header with every request made to our API.
  requestOptions: {
    headers: {
      Authorization: 'Bearer token'
    }
  }
})

const store = createStore(appReducer, applyMiddleware(dataStoreMiddleware))

Creating a data store

In order to store data for a resource from your REST API, you need to create a data store for it.

import { createDataStore } from '@underdogio/redux-rest-data'

import { combineReducers } from 'redux'

// Initialize a new data store, which includes actions and a reducer for managing its state.
const todosStore = createDataStore('todos', {
  // The base url for todos. This is relative to the API endpoint you specified when initializing the middleware.
  baseUrl: '/todos'
})

// Add the reducer to your store. Here is an example that would make our todos store accessible from `store.getState().data.todos`.
const appReducer = combineReducers({
  data: combineReducers({
    todos: todosStore.reducer
  })
})

The todos data store would have the following initial state:

store.getState() === {
  data: {
    todos: {
      // A map of todos organized by id.
      byId: {
        [id: string]: {
          // The actual data for the todo that was fetched from the API.
          data: {},

          // Meta information about the request status of this todo.
          meta: {
            // Indicates if we are currently making a request for this todo.
            loading: false,

            // Populated with an error for the last request for this todo if the request failed.
            // Resets to null on the next successful request for this todo.
            error: null
          }
        }
      },

      // An array of ids of all the todos in the store.
      ids: [],

      // Information about the current request state for fetching multiple todos
      // with a GET request to the root endpoint (e.g. `GET /todos`).
      meta: {
        // Indicates if we are currently loading all todos or not.
        loading: false,

        // Populated with an error from the last request for all todos if the request failed.
        // Resets to null on the next successful request for all todos.
        error: null
      }
    }
  }
}

Retrieving a single item from the store

You can retrieve single items with their id:

const { todos } = store.getState().data
const todo = todos.byId['todo_id']
const { data, meta } = todo
const { loading, error } = meta

Retrieving all items in the store

If you want to get a list of all the items that are currently in the store, you can perform a map from ids to byId:

const { todos } = store.getState().data
todos.ids.map(id => todos.byId[id].data)

Fetching items

You can fetch a list of items with the fetchItems() action creator. Fetching items will populate the store with data retrieved from the API, and update any items that are already in the store.

// A Promise is returned after dispatching the action, so you can wait for the response if you want.
const promise = store.dispatch(
  // GET http://endpoint.api/todos?limit=10&page=2
  todosStore.actions.fetchItems({
    // Optionally include query parameters.
    params: {
      limit: 10,
      page: 2
    }
  })
)

// The store will be put in a loading state while we wait for a response.
store.getState().data.todos.meta ===
  {
    loading: true,
    error: null
  }

// Wait for the Promise of the request to resolve.
await promise

// The store will now be populated with data from the API.
store.getState().data.todos ===
  {
    byId: {
      todo_id_1: {
        data: {
          // ...
        },
        meta: {
          loading: false,
          error: null
        }
      }
      // Data for other todos...
    },
    ids: [
      'todo_id_1'
      // Ids of all the other todos that we got from the API...
    ],
    meta: {
      loading: false,
      error: null
    }
  }

Fetching a single item

You can also fetch a single item if you know its id. Fetching an item will add it to the store if it's not in there already, or update it if it is.

// A Promise is returned after dispatching the action, so you can wait for the response if you want.
const promise = store.dispatch(
  // GET http://endpoint.api/todos/todo_id
  todosStore.actions.fetchItem('todo_id')
)

// The state of the requested todo will be put in a loading state while we wait for a response.
// If we don't have the todo yet, we'll add it to the store.
// Example state for a newly added todo:
store.getState().data.todos === {
  byId: {
    todo_id: {
      // We don't have any data for this todo yet.
      data: null,
      meta: {
        loading: true,
        error: null
      }
    },
    // Data for other todos already in the store...
  },
  ids: {
    'todo_id',
    // Ids of other todos already in the store...
  },
  meta: {
    // We're only loading a single todo, so the loading flag for the entire store does not get updated.
    loading: false,
    error: null
  }
}

// Example state for a todo already in the store:
store.getState().data.todos === {
  byId: {
    todo_id: {
      data: {
        // The data that was fetched previously for this todo.
      },
      meta: {
        // The loading flag for this todo gets updated.
        loading: true,
        error: null
      }
    },
    // Data for other todos already in the store...
  },
  // ...
}

// Wait for the Promise of the request to resolve.
await promise

// The store will now be populated with data from the API.
store.getState().data.todos ===
  {
    byId: {
      todo_id: {
        data: {
          // The data that we just fetched
        },
        meta: {
          loading: false,
          error: null
        }
      }
      // Data for other todos already in the store...
    },
    ids: [
      'todo_id'
      // Ids of all the other todos aleady in the store...
    ],
  }

Updating an item

You can make requests to update items that are already in the store.

// A Promise is returned after dispatching the action, so you can wait for the response if you want.
const promise = store.dispatch(
  // PUT http://endpoint.api/todos/todo_id
  // Content-Type: application/json
  // { //* New todo data */ }
  todosStore.actions.updateItem('todo_id', {
    // New todo data
  })
)

// The state of the requested todo will be put in a loading state while we wait for a response.
store.getState().data.todos ===
  {
    byId: {
      todo_id: {
        data: {
          // The data that was fetched previously for this todo.
        },
        meta: {
          // The loading flag for this todo gets updated.
          loading: true,
          error: null
        }
      }
      // Data for other todos already in the store...
    }
    // ...
  }

// Wait for the Promise of the request to resolve.
await promise

// The store will now be populated with data from the API.
store.getState().data.todos ===
  {
    byId: {
      todo_id: {
        data: {
          // The data that we got back from the API
        },
        meta: {
          // The loading flag for this todo gets updated.
          loading: false,
          error: null
        }
      }
      // Data for other todos already in the store...
    },
    ids: [
      'todo_id'
      // Ids of all the other todos aleady in the store...
    ]
  }

You can also choose to update an item locally without making a request to the API, which would update its data in the store immediately:

store.dispatch(
  todosStore.actions.updateItem(
    'todo_id',
    {
      // New todo data
    },

    // Update this todo locally without making a request to the API.
    false
  )
)

Deleting an item

You can make requests to delete items that are already in the store.

// A Promise is returned after dispatching the action, so you can wait for the response if you want.
const promise = store.dispatch(
  // DELETE http://endpoint.api/todos/todo_id
  todosStore.actions.deleteItem('todo_id')
)

// The state of the requested todo will be put in a loading state while we wait for a response.
store.getState().data.todos ===
  {
    byId: {
      todo_id: {
        data: {
          // The data that was fetched previously for this todo.
        },
        meta: {
          loading: true,
          error: null
        }
      }
      // Data for other todos already in the store...
    }
    // ...
  }

// Wait for the Promise of the request to resolve.
await promise

// The todo will have been removed from the store.
store.getState().data.todos ===
  {
    byId: {
      // Data for other todos already in the store...
    },
    ids: [
      // Ids of all the other todos aleady in the store...
    ]
  }

API

For detailed API documentation, refer to the auto-generated docs, generated by Typedoc.

Developing

Install dependencies with Yarn:

yarn install

Running tests as files change:

yarn test/watch

Running the example in the browser:

yarn example

Publishing a new version

Follow these steps when publishing a new version of this library:

  1. Determine if the changes that are being published are part of either a major, minor, or patch release.

  2. Update the API documentation by running yarn docs, committing the changes, and pushing to master.

  3. Run yarn version --(major|minor|patch) with the release type determined in Step 1. For example, run yarn version --patch for a patch release.

  4. Push the newly created tag and updated package.json with git push && git push --tags.

  5. Run npm publish.

redux-rest-data's People

Contributors

realplatanopapi avatar restlessbit avatar chriscauley avatar

Watchers

Eric Budd avatar  avatar Chris Muir avatar  avatar James Cloos avatar Vincenzo Ferrara avatar Wojciech Łowiec avatar Piotr Ujazdowski avatar Paweł Nienałtowski avatar

redux-rest-data's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.