fork from https://github.com/tomberek/aor-postgrest-client and port to React-Admin ( new name for admin-on-rest version 2.0 )
thanks a lot to tomberek
For using PostgRest with react-admin, use the postgrestClient
function to convert React-Admin's REST dialect into one compatible with postgREST.
reference to postgrest-guide
in a new project, we try to replace Admin Panel with new React-Admin, this repo is bridge to PostgRest
- support React-Admin ( Admin-On-Rest 2.0 ) only
- support postgRest 4.4 with pgjwt ( generate JWT via pgplsql ) , and will add authProvider for postgRest soon
- support multiple item to delete
- support filters in react-admin well
yarn add ra-postgrest-client
// in src/App.js
import React from "react";
import {Admin, Resource, Delete} from "react-admin";
import postgrestClient from "ra-postgrest-client";
import {
CategoryList,
CategoryCreate,
CategoryEdit,
CategoryShow
} from "./cms/Category";
const App = () => (
<Admin
dataProvider={postgrestClient("http://localhost:3002/api")}>
<Resource
name="category"
list={CategoryList}
create={CategoryCreate}
edit={CategoryEdit}
show={CategoryShow}
/>
</Admin>
);
export default App;
clone the repo and build
git clone https://github.com/tsingson/ra-postgrest-client
cd ./ra-postgrest-client
make build
Do not use in production this repo is work in progress yet.......
This library is licensed under the MIT Licence