New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@codegouvfr/rjsf-dsfr

Package Overview
Dependencies
Maintainers
0
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codegouvfr/rjsf-dsfr

react-jsonschema-form with the DSFR

  • 0.1.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
0
Weekly downloads
 
Created
Source

React JSON Schema Form with the DSFR

This is a wrapper around the react-jsonschema-form with the components from react-dsfr.

[!IMPORTANT] For now, this is simply extracted code from catala-dsfr. Therefore, the API is not yet defined and and is likely to be not flexible enough for your use case.

If you want to use this library, please open an issue to discuss your needs!

Installation

yarn add @codegouvfr/rjsf-dsfr

Usage

For now, the API matches the one from react-jsonschema-form and you can overrides some widgets (resp. templates) by specifying them in the props.

import { RJSFSchema } from '@rjsf/utils'
import FormDSFR from '@codegouvfr/rjsf-dsfr'
import { customizeValidator } from '@rjsf/validator-ajv8'
import frenchLocalizer from 'ajv-i18n/localize/fr'

const validator = customizeValidator({}, frenchLocalizer)

const schema: RJSFSchema = {
  type: 'object',
  properties: {
    nom: { title: 'Nom', type: 'string', minLength: 2 },
    prenom: { title: 'Prénom', type: 'string' },
    ddn: { title: 'Date de naissance', type: 'string', format: 'date' },
  },
  required: ['nom'],
}

export default function Form() {
  return <FormDSFR schema={schema} validator={validator} />
}

Notes on writing schemas

Title

The titles must not be defined inside "kind" properties of the object definition but just before the "$ref" of the calling parent:

"categorieEquivalenceLoyerD84216": {
  "title": "Catégorie de personnes résidant en logement-foyer",
  "$ref": "#/definitions/categorie_equivalence_loyer_allocation_logement_foyer"
}

UI Options

As described in the react-jsonschema-form documentation, you can customize the form by providing a uiSchema. In addition to the standard options, you can use the following specific options for rjsf-dsfr.

[!TIP] You can have a look to a real world example here

Global field options

The following options can be set for any field in the uiSchema:

  • ui:heading: set the heading level for the field's title (available values: h2, h3, h4, h5, h6)
  • ui:hideTitle: hide the field's title.
Specific field options
Array fields

The following options can be set for fields of type array:

  • ui:addIcon: set the DSFR icon id for the Add button
  • ui:removeIcon: set the DSFR icon id for the Remove button
  • ui:tabLabel: set the label for the tab in the array field (it needs to be defined at the root of the array field)

[!NOTE] By default, array fields are displayed in a Tabs component. Each tab is labeled with the ui:tabLabel value and the last tab contains the Add button.

[!IMPORTANT] The ui:hideTitle option it's needed for items of type object inside a field of type array to hide the unique title of the array's items.

Example:

"personnesACharge": {
   "ui:tabLabel": "Personne",
   "items": {
       "ui:hideTitle": true,
...

Development

Launch the playground to play with the DSFR theme :

cd demo
yarn
yarn start

Keywords

FAQs

Package last updated on 11 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc