All Projects → raphiniert-com → ra-data-postgrest

raphiniert-com / ra-data-postgrest

Licence: MIT license
react admin client for postgREST

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to ra-data-postgrest

React Antd Admin
一個简洁的 antd-react-admin 应用 -- React + Antd 后台管理系统
Stars: ✭ 99 (+23.75%)
Mutual labels:  react-admin
Fashop Admin
微信小程序商城后台,微信小程序微店后台,接口基于FaShop
Stars: ✭ 198 (+147.5%)
Mutual labels:  react-admin
PostgREST-writeAPI
Translate your OpenAPI specification into a NGinx config-file to implement your PostgREST system
Stars: ✭ 31 (-61.25%)
Mutual labels:  postgrest
Ra Data Feathers
A feathers rest client for react-admin
Stars: ✭ 135 (+68.75%)
Mutual labels:  react-admin
Synapse Admin
https://hub.docker.com/r/awesometechnologies/synapse-admin
Stars: ✭ 179 (+123.75%)
Mutual labels:  react-admin
simple-rest-api
😎 A simple RESTful API in three easy steps.
Stars: ✭ 25 (-68.75%)
Mutual labels:  postgrest
Express Sequelize Crud
Simply expose resource CRUD (Create Read Update Delete) routes for Express & Sequelize. Compatible with React Admin Simple Rest Data Provider
Stars: ✭ 65 (-18.75%)
Mutual labels:  react-admin
Supabase
The open source Firebase alternative. Follow to stay updated about our public Beta.
Stars: ✭ 25,142 (+31327.5%)
Mutual labels:  postgrest
Notus React
Notus React: Free Tailwind CSS UI Kit and Admin
Stars: ✭ 173 (+116.25%)
Mutual labels:  react-admin
postgrest-swift
Swift client for PostgREST
Stars: ✭ 23 (-71.25%)
Mutual labels:  postgrest
Ra Data Opencrud
A react-admin data provider for Prisma and GraphCMS
Stars: ✭ 142 (+77.5%)
Mutual labels:  react-admin
React Admin Low Code
react-admin (via ra-data-hasura-graphql provider) + hasura = :)
Stars: ✭ 161 (+101.25%)
Mutual labels:  react-admin
docker-postgrest
REST API for any Postgres database (PostgREST Docker Image)
Stars: ✭ 22 (-72.5%)
Mutual labels:  postgrest
Symfony Demo App
A Symfony demo application with basic user management
Stars: ✭ 122 (+52.5%)
Mutual labels:  react-admin
effective
Effective: end-to-end encrypted project management for activists and human rights organizations. Making activists 10x more powerful via ultra effective communities of action and autonomous software. [deprecated]
Stars: ✭ 75 (-6.25%)
Mutual labels:  postgrest
Ant Back
🚀 react后台,后台管理系统
Stars: ✭ 90 (+12.5%)
Mutual labels:  react-admin
Tomato Work
🍅 Tomato Work for React 个人事务管理系统
Stars: ✭ 223 (+178.75%)
Mutual labels:  react-admin
postgrest-csharp
A C# Client library for Postgrest
Stars: ✭ 62 (-22.5%)
Mutual labels:  postgrest
Postgrest
REST API for any Postgres database
Stars: ✭ 18,166 (+22607.5%)
Mutual labels:  postgrest
general-angular
Realtime Angular Admin/CRUD Front End App
Stars: ✭ 24 (-70%)
Mutual labels:  postgrest

PostgREST Data Provider For React-Admin

PostgREST Data Provider for react-admin, the frontend framework for building admin applications on top of REST/GraphQL services.

Installation

npm install --save @promitheus/ra-data-postgrest

NOTE: When using RA 3.x.x, use the data-provider 1.x.x. For RA >= 4.1.x use the data-provider starting from 1.2.x.

REST Dialect

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.value
getOne GET http://my.api.url/posts?id=eq.123
getMany GET http://my.api.url/posts?id=in.(123,456,789)
getManyReference GET http://my.api.url/posts?author_id=eq.345
create POST http://my.api.url/posts
update PATCH http://my.api.url/posts?id=eq.123
updateMany PATCH http://my.api.url/posts?id=in.(123,456,789)
delete DELETE http://my.api.url/posts?id=eq.123
deleteMany 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

Usage

// 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 = () => (
    <Admin dataProvider={postgrestRestProvider('http://path.to.my.api/')}>
        <Resource name="posts" list={PostList} />
    </Admin>
);

export default App;

Adding Custom Headers

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:

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(
    <Admin dataProvider={dataProvider} title="Example Admin">
        ...
    </Admin>,
    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:

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.

Using authProvider

This package also comes with an authProvider for react-admin which enables you to enable authentification. The provider is designed to work together with subzero-starter-kit. This starter kit sends the JWT within a session cookie. The authProvider expects that. If you want to use postgREST without the starter kit you'll need to write your own. Feel free to contribute!

With one of the starter kits it is very easy to use the authProvider:

// 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 = () => (
    <Admin
        dataProvider={postgrestRestProvider('http://path.to.my.api/')}
        authProvider={authProvider}
    >
        <Resource name="posts" list={PostList} />
    </Admin>
);

export default App;

Special Filter Feature

As postgRest allows several comparators, e.g. ilike, like, eq... The dataProvider is designed to enable you to specify the comparator in your react filter component:

<Filter {...props}>
    <TextInput label="Search" source="post_title@ilike" alwaysOn />
    <TextInput label="Search" source="post_author" alwaysOn />
    // some more filters
</Filter>

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:

<Filter {...props}>
    <TextInput label="Search" source="post_author@" alwaysOn />
    // some more filters
</Filter>

Compound primary keys

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:

const dataProvider = postgrestRestProvider(
    API_URL,
    fetchUtils.fetchJson,
    'eq',
    new Map([
        ['some_table', ['custom_id']],
        ['another_table', ['first_column', 'second_column']],
    ])
);

Developers notes

The current development of this library was done with node v19.10 and npm 8.19.3. In this version the unit tests and the development environment should work.

License

This data provider is licensed under the MIT License and sponsored by raphiniert.com.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].