All Projects → MrHertal → react-admin-json-view

MrHertal / react-admin-json-view

Licence: MIT license
JSON field and input for react-admin.

Programming Languages

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

Projects that are alternatives of or similar to react-admin-json-view

Synapse Admin
https://hub.docker.com/r/awesometechnologies/synapse-admin
Stars: ✭ 179 (+539.29%)
Mutual labels:  react-admin
ra-input-markdown
A markdown editor for react-admin
Stars: ✭ 22 (-21.43%)
Mutual labels:  react-admin
react-admin-amplify
AWS Amplify data provider for react-admin.
Stars: ✭ 130 (+364.29%)
Mutual labels:  react-admin
Fashop Admin
微信小程序商城后台,微信小程序微店后台,接口基于FaShop
Stars: ✭ 198 (+607.14%)
Mutual labels:  react-admin
react-ant-admin
此框架使用与二次开发,前端框架使用react,UI框架使用ant-design,全局数据状态管理使用redux,ajax使用库为axios。用于快速搭建中后台页面。
Stars: ✭ 52 (+85.71%)
Mutual labels:  react-admin
ra-datetime-input
ra-datetime-input
Stars: ✭ 27 (-3.57%)
Mutual labels:  react-admin
Notus Nextjs
Notus NextJS: Free Tailwind CSS UI Kit and Admin
Stars: ✭ 152 (+442.86%)
Mutual labels:  react-admin
ant-back-server
🚀 react后台,后台管理系统——后端(Koa)实现
Stars: ✭ 26 (-7.14%)
Mutual labels:  react-admin
veact-admin
🔏 Admin client for surmon.me blog powered by React & @veactjs
Stars: ✭ 39 (+39.29%)
Mutual labels:  react-admin
OpenAdmin-client-React
OpenAdmin client based on React v16.2.0
Stars: ✭ 17 (-39.29%)
Mutual labels:  react-admin
Tomato Work
🍅 Tomato Work for React 个人事务管理系统
Stars: ✭ 223 (+696.43%)
Mutual labels:  react-admin
react-admin-boilerplate
React-admin-boilerplate: react+antd+hook
Stars: ✭ 33 (+17.86%)
Mutual labels:  react-admin
ra-language-japanese
Japanese messages for react-admin
Stars: ✭ 22 (-21.43%)
Mutual labels:  react-admin
Notus React
Notus React: Free Tailwind CSS UI Kit and Admin
Stars: ✭ 173 (+517.86%)
Mutual labels:  react-admin
amplify-material-ui
A Material-UI based implementation of aws amplify
Stars: ✭ 32 (+14.29%)
Mutual labels:  react-admin
React Admin Low Code
react-admin (via ra-data-hasura-graphql provider) + hasura = :)
Stars: ✭ 161 (+475%)
Mutual labels:  react-admin
ra-data-prisma
Packages to connect react-admin with prisma version 2
Stars: ✭ 73 (+160.71%)
Mutual labels:  react-admin
fastapi-starter
A FastAPI based low code starter: Async SQLAlchemy, Postgres, React-Admin, pytest and cypress
Stars: ✭ 97 (+246.43%)
Mutual labels:  react-admin
loki-admin
Admin app build by KokiUI
Stars: ✭ 13 (-53.57%)
Mutual labels:  react-admin
express-crud-router
Simply expose resource CRUD (Create Read Update Delete) routes for Express & Sequelize. Compatible with React Admin Simple Rest Data Provider
Stars: ✭ 109 (+289.29%)
Mutual labels:  react-admin

React Admin JSON view GitHub release (latest by date) GitHub Workflow Status

JSON field and input for react-admin. Built with react-json-view.

Field:

JSON show

Input:

JSON edit

Installation

npm install react-admin-json-view

Usage

import { JsonField, JsonInput } from "react-admin-json-view";

// ...

export const ExampleShow = (props) => (
  <Show {...props}>
    <SimpleShowLayout>
      <JsonField
        source="example"
        addLabel={true}
        jsonString={false} // Set to true if the value is a string, default: false
        reactJsonOptions={{
          // Props passed to react-json-view
          name: null,
          collapsed: true,
          enableClipboard: false,
          displayDataTypes: false,
        }}
      />
    </SimpleShowLayout>
  </Show>
);

export const ExampleEdit = (props) => (
  <Edit {...props}>
    <SimpleForm>
      <JsonInput
        source="example"
        validate={[required()]}
        jsonString={false} // Set to true if the value is a string, default: false
        reactJsonOptions={{
          // Props passed to react-json-view
          name: null,
          collapsed: true,
          enableClipboard: false,
          displayDataTypes: false,
        }}
      />
    </SimpleForm>
  </Edit>
);
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].