react-admin-nestjsx-crud-dataprovider

Data provider which integrates React Admin with NestJS CRUD library

  • 所有者: FusionWorks/react-admin-nestjsx-crud-dataprovider
  • 平台:
  • 许可证:
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

@FusionWorks/ra-data-nest-crud

GitHub package.json version
NPM

@FusionWorks/ra-data-nest-crud is a dataprovider for react-admin, that has been designed to make easier communication between a frontend application built with react-admin,
and a backend application built with nestjs framework and nestjsx/crud.

Install

Using npm:
npm i @fusionworks/ra-data-nest-crud

Using yarn:
yarn add @fusionworks/ra-data-nest-crud

Usage

// in app.js file

import React from 'react';
import { Admin, Resource, ShowGuesser } from 'react-admin';
import crudProvider from '@fusionworks/ra-data-nest-crud'
import { UsersList, UserCreate, UserEdit } from './Users'

const dataProvider = crudProvider('http://localhost:3000');
const App = () => (
  <Admin dataProvider={dataProvider}>
    <Resource name="users" list={UsersList} create={UserCreate} edit={UserEdit} show={ShowGuesser} />
  </Admin>
);
export default App;

Note: In case of REST verb "CREATE" consider that the response body is the same as the request body but with the object ID injected .

case CREATE:
return { data: { ...params.data, id: json.id } };

This is because of backwards compatibility compliance.

Example

You can find an example of a project that uses nestjs and nestjsx/crud on backend and admin-ui with @fusionworks/ra-data-nest-crud data provider.

If you need to run it, you need to go to api folder, install dependencies,
change by your needs the config file for nestjs that is located in example/api/src/config/, and run application.

  • cd api
  • npm i
  • npm run start:dev

For frontend part you need just to go to admin-ui folder, install dependencies, and run the app:

  • cd admin-ui
  • npm i
  • npm start

主要指标

概览
名称与所有者FusionWorks/react-admin-nestjsx-crud-dataprovider
主编程语言JavaScript
编程语言JavaScript (语言数: 5)
平台
许可证
所有者活动
创建于2019-04-09 13:01:46
推送于2023-01-12 01:42:09
最后一次提交2019-11-27 16:09:21
发布数0
用户参与
星数132
关注者数6
派生数26
提交数33
已启用问题?
问题数12
打开的问题数8
拉请求数5
打开的拉请求数33
关闭的拉请求数9
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?