0.1.0 • Published 8 years ago
react-get-data v0.1.0
React get data [
] [
)(https://img.shields.io/npm/v/react-get-data.svg)]
A small react wrapper for fetching data from remote services.
Each service is a class:
const services = {
account: {
async getAccount(accountId) {
const { data } = await axios.get(`/accounts/${accountId}`)
return data
}
}
}Full example:
import { GetData, ServiceProvider } from 'react-get-data'
<ServiceProvider services={services}>
<GetData
service="account"
method="getAccount"
args={['id0']}
whilePending={GetAccountSpinner}
>{(account, error) =>
error
? <GetAccountError error={error} />
: <DisplayAccount account={account} />
}
</GetData>
</ServiceProvider>Minimal example:
import { GetData, ServiceProvider } from 'react-get-data'
<ServiceProvider services={services}>
<GetData
service="account"
method="getAccount"
args={['id0']}
>{
account => <DisplayAccount account={account} />
}</GetData>
</ServiceProvider>GetData
Is a render-prop-enabled component which represents a call for a remote service.
It hooks on componentWillMount and call service's member method with args, and renders whilePending while waiting response.
- Parameters:
service- Required, name of service to pick from context
method- Required, name of service's method to call
args- Optional, list of arguments of methods
whilePending- Optional, this component will be displayed whileGetDatawaiting response from service
ServiceProvider
Is a context provider for a dictionary of services.
- Parameters:
services- Required, dictionary of services
0.1.0
8 years ago