ra-data-eicrud
v1.1.3
Published
`ra-data-eicrud` is a **data provider** for integrating the **<a href="https://eicrud.com">EiCRUD backend</a>** (<a href="https://www.npmjs.com/package/@eicrud/core">npm<a/>) with the **<a href="https://marmelab.com/react-admin/">React Admin frontend<a/>*
Downloads
263
Maintainers
Readme
ra-data-eicrud
ra-data-eicrud
is a data provider for integrating the EiCRUD backend (npm) with the React Admin frontend (npm).
This library leverages EiCRUD’s powerful backend services and uses the Super Client to handle API requests seamlessly.
Features
- Easy integration between React Admin and EiCRUD backend.
- Handles CRUD operations (Create, Read, Update, Delete) efficiently.
- Supports React Admin’s data provider interface.
- Works with the Super Client for consistent API communication.
Installation
You can install the library via npm:
npm install ra-data-eicrud
Usage
To use the library, you need to create an instance of the EiCRUDDataProvider
class and pass it to the DataProvider
component of React Admin. Here's an example:
// client.ts
import { SuperClient } from "../../eicrud_exports/super_client";
export const sp = new SuperClient({ url: "http://localhost:3000" });
...
// App.tsx
import { sp } from "./client";
import EicrudDataProvider from "ra-data-eicrud";
function App() {
const provider = EicrudDataProvider(sp);
return (
<Admin dataProvider={provider}>
<Resource
name="blog"
list={<BlogList />}
create={<BlogCreate />}
show={<BlogShow />}
edit={<BlogEdit />}
/>
</Admin>
);
}