0.4.0 • Published 7 years ago

shaara-preset-react-native v0.4.0

Weekly downloads
13
License
ISC
Repository
-
Last release
7 years ago

shaara-preset-react-native

Preset to develop with react-native. It includes great utility tools to work in a mobile environment, yet it's purely Javascript.

Services

  • store : manage a redux store with persistence.
  • network.status : manage the network status
  • request.sender : allows to send HTTP request. It uses the bridge pattern to allow different fetch implementation given test or development|production environment. On test environment, it will use Faussaire to mock HTTP requests, and a service called faussaire will be added to add custom routes and handlers. See Faussaire documentation on github.
  • security.token : allows an authentification mechanism. It will rely on a getTokenImplementation method in the configuration to customize how to set and get a token (usually from the store)

Parameters

  • fetch : if provided, the request sender will use this function instead of the global fetch. Indeed this preset rely on the fetch method. If you want to use Axios or Frisbee or example, you can easily write an adapter that follows the same API as fetch. One day we will provide a function "requestImplementation" to allow changing it easily.

Configuration

getStoreConfiguration () => { reducers : {key: string: ReducerType, debounce : number }

Configure the store with reducers. Debounce is used for persistence. It ensures the store doesn't get persisted more often than this amount of time. Default is 500.

getTokenImplementation () => { setToken: (token : T) => void, getToken: () => T }

Configure the SecurityToken system.

0.4.0

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago