postgREST data provider for react-admin
npm install @promitheus/ra-data-postgrestPostgREST Data Provider for react-admin, the frontend framework for building admin applications on top of REST/GraphQL services.
``sh`
npm install --save @promitheus/ra-data-postgrest
This Data Provider fits REST APIs using simple GET parameters for filters and sorting. This is the dialect used for instance in PostgREST.
| Method | API calls
|--------------------|----------------------------------------------------------------
| getList | GET http://my.api.url/posts?order=title.asc&offset=0&limit=24&filterField=eq.valuegetOne
| | GET http://my.api.url/posts?id=eq.123getMany
| | GET http://my.api.url/posts?id=in.(123,456,789)getManyReference
| | GET http://my.api.url/posts?author_id=eq.345create
| | POST http://my.api.url/postsupdate
| | PATCH http://my.api.url/posts?id=eq.123updateMany
| | PATCH http://my.api.url/posts?id=in.(123,456,789)delete
| | DELETE http://my.api.url/posts?id=eq.123deleteMany
| | DELETE http://my.api.url/posts?id=in.(123,456,789)
Note: The PostgREST data provider expects the API to include a Content-Range header in the response to getList calls. The value must be the total number of resources in the collection. This allows react-admin to know how many pages of resources there are in total, and build the pagination controls.
``
Content-Range: posts 0-24/319
If your API is on another domain as the JS code, you'll need to whitelist this header with an Access-Control-Expose-Headers CORS header.
``
Access-Control-Expose-Headers: Content-Range
`jsx
// in src/App.js
import React from 'react';
import { Admin, Resource } from 'react-admin';
import postgrestRestProvider from '@promitheus/ra-data-postgrest';
import { PostList } from './posts';
const App = () => (
);
export default App;
`
The provider function accepts an HTTP client function as second argument. By default, they use react-admin's fetchUtils.fetchJson() as HTTP client. It's similar to HTML5 fetch(), except it handles JSON decoding and HTTP error codes automatically.
That means that if you need to add custom headers to your requests, you just need to wrap the fetchJson() call inside your own function:
`jsx
import { fetchUtils, Admin, Resource } from 'react-admin';
import postgrestRestProvider from '@promitheus/ra-data-postgrest';
const httpClient = (url, options = {}) => {
if (!options.headers) {
options.headers = new Headers({ Accept: 'application/json' });
}
// add your own headers here
options.headers.set('X-Custom-Header', 'foobar');
return fetchUtils.fetchJson(url, options);
};
const dataProvider = postgrestRestProvider('http://localhost:3000', httpClient);
render(
...
document.getElementById('root')
);
`
Now all the requests to the REST API will contain the X-Custom-Header: foobar header.
Tip: The most common usage of custom headers is for authentication. fetchJson has built-on support for the Authorization token header:
`js`
const httpClient = (url, options = {}) => {
options.user = {
authenticated: true,
token: 'SRTRDFVESGNJYTUKTYTHRG'
};
return fetchUtils.fetchJson(url, options);
};
Now all the requests to the REST API will contain the Authorization: SRTRDFVESGNJYTUKTYTHRG header.
With one of the starter kits it is very easy to use the authProvider:
`jsx
// in src/App.js
import React from 'react';
import { Admin, Resource } from 'react-admin';
import postgrestRestProvider, { authProvider } from '@promitheus/ra-data-postgrest';
import { PostList } from './posts';
const App = () => (
);
export default App;
`
, like, eq...
The dataProvider is designed to enable you to specify the comparator in your react filter component:`jsx
// some more filters
`One can simply append the comparator with an
@ to the source. In this example the field post_title would be filtered with ilike whereas post_author would be filtered using eq which is the default if no special comparator is specified.#### RPC Functions
Given a RPC call as
`GET /rpc/add_them?post_author=Herbert HTTP/1.1`, the dataProvider allows you to filter such endpoints. As they are no view, but a SQL procedure, several postgREST features do not apply. I.e. no comparators such as ilike, like, eq are applicable. Only the raw value without comparator needs to be send to the API. In order to realize this behavior, just add an "empty" comparator to the field, i.e. end source with an @ as in the example:`jsx
// some more filters
`$3
If one has data resources without primary keys named id, one will have to define this specifically. Also, if there is a primary key, which is defined over multiple columns:`jsx
const dataProvider = postgrestRestProvider(API_URL, fetchUtils.fetchJson, 'eq', new Map([
['some_table', ['custom_id']],
['another_table', ['first_column', 'second_column']],
]));
``This data provider is licensed under the MIT License