1.1.3 • Published 9 months ago

ra-data-eicrud v1.1.3

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

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>
  );
}
1.1.3

9 months ago

1.1.2

9 months ago

1.1.1

9 months ago

1.1.0

9 months ago