Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
react-jsonschema-form-extras
Advanced tools
This project provides light integration over established React components, trying to keep configurations compatible with original project. All configurations you can specify in original projects, can be reused here.
ui:field
> compositeArray
)ui:field
> collapsible
)ui:field
> altInput
)ui:field
> typeahead
)ui:field
> asyncTypeahead
)ui:field
> rte
)ui:field
> table
)This project uses internal react-jsonschema-form extension mechanism, through ui:field option in uiSchema. The simplest example of using it out of the box, is like this:
import Form from "react-jsonschema-form";
import fields from "react-jsonschema-form-extras";
ReactDOM.render(
<Form fields={fields}/>,
document.getElementById("app")
);
If you have additional extensions, that are not part of this project, you can enable them, like this
import Form from "react-jsonschema-form";
import otherFields from "other-fields";
import fields from "react-jsonschema-form-extras";
let allFields = Object.assign({}, fields, otherFields);
ReactDOM.render(
<Form fields={allFields}/>,
document.getElementById("app")
);
compositeArray
)This is a simple UI pattern, where you want to separate entering a new value to the array and working with existing values.
The simplest uiSchema
configuration would be:
{
"ui:field": "compositeArray",
"inputField": "typeahead",
"arrayField": "table",
"typeahead": { },
"table": { }
}
This means the final field will be presented in 2 parts
typeahead
fieldtable
formYou can specify configurations for each field representation independently.
There are only 2 properties needed for it to work
inputField
field from form registry to use as a new field input presentationarrayField
field from form registry to use to present existing array valuescollapsible
)Collapsible helps you to hide content, that might take up too much space on the screen an expand it if user wishes.
The simplest uiSchema
configuration would be:
{
"ui:field": "collapsible",
"collapse": {
"field": "table"
}
}
This is a hidden table
field configuration, which will be presented as collapsed schema
title
name.
You can customize presentation of collapsible field, with "collapse" object in uiSchema
field
string
an actual hidden field to usecollapsed
boolean
- indicating initial state (default true
)icon
object
icons configuration in enabled
and disabled
state
enabled
string
icon, when the field is shown (default glyphicon glyphicon-chevron-down
)disabled
string
icon, when field is hidden (default glyphicon glyphicon-chevron-right
)separate
boolean
enable true
)wrapClassName
string
class name to use on a parent collapse menu div (default lead
)Field schema
title
used as a header of the collapsible action.
altInput
)You want to enter the same field
in 2 different ways. For example if a field might be a string
and number
The simplest configuration would look something like this
{
"ui:field": "altInput",
"defInput": "typeahead",
"altInput": "asyncTypeahead",
"typeahead": { },
"asyncTypeahead": { }
}
In this case user would be able to enter the same field, either by using async typeahead or regular one.
In order to configure presentation there are few options
defInput
string
registry field to use as primary input methodaltInput
string
registry field to use as an alternative input methodaltInputSeparator
string
string to use in between those 2 presentationstypeahead
)This is a wrap of react-bootstrap-typeahead, which allows you to use this project in your jsonschema-form
The simplest configuration would be
{
"ui:field": "typeahead",
"typeahead": {
"options": [ { "state": "New York" }, { "code": "Washington" }],
"labelKey": "state"
}
}
In this case the typeahead would only have 2 options - New York
and Washigton
All properties that you specify under typeahead
will be used in the original project.
Additionally, there are few project specific properties
labelKey
have more flexibility in configurationlabelKey
string
used a labelKey in typeahead projectlabelKey
array
in this case array is a list of fields in original object, which are combined in a single string with a space separatorlabelKey
object
with fields
array
of fields to use, separator
string separator to use between fieldscleanAfterSelection
boolean
clean selection after component was selectedmapping
object
that maps selected object to schema objectFor complete list of configurations refer to react-bootstrap-typeahead
Here are some use case examples
With following options
[
{
"name": "Adventures of Huckleberry Finn", "author": "Mark Twain"
},
{
"name": "The Adventures of Tom Sawyer", "author": "Mark Twain"
}
]
With labelKey name
there will be 2 options
Adventures of Huckleberry Finn
The Adventures of Tom Sawyer
With labelKey [ "author", "name" ]
, options will be
Mark Twain Adventures of Huckleberry Finn
Mark Twain The Adventures of Tom Sawyer
With lableKey { fields: [ "author", "name" ], separator: " - " }
, options will be
Mark Twain - Adventures of Huckleberry Finn
Mark Twain - The Adventures of Tom Sawyer
Mapping can be specified like this
{
"mapping": {
"creator": "author",
"book": "name"
}
}
And it would generate 2 values
{ book: "Adventures of Huckleberry Finn", creator: "Mark Twain" }
{ book: "The Adventures of Tom Sawyer", creator: "Mark Twain" }
asyncTypeahead
)This is a wrap around async
functionality of typeahead, supporting some additional defaults.
The simplest configuration would be
{
"ui:field": "asyncTypeahead",
"asyncTypeahead": {
"url": "https://example.com/state"
}
}
This will result in typeahead search with https://example.com/state?query=${query}
Async typeahead extends default configuration list for typeahead
, by adding few properties
url
search url, that will be used during autocompletesearch
function that will be querying server for data, which takes 2 parameters, and must return a Promise with a json result
url
configured URLquery
typed query stringoptionsPath
path to options array in responseFor example, let's consider query with Was
on url
https://example.com/state
.
By default field will query results with - https://example.com/state?query=Was
.
Let's say we want to override it and query - https://example.com/state?name=Was&maxSize=1
.
Here is how we can do that:
let uiSchema = {
"ui:field": "asyncTypeahead",
asyncTypeahead: {
url: "https://example.com/state",
search: (url, query) => fetch(`${url}?name=${query}&maxSize=1`)
}
}
That is it.
For complete list of async typeahead configurations refer to react-bootstrap-typeahead
rte
)This is a simple field, that allows you to enter RTE text inside your string field.
The simplest configuration would be
{
"ui:field": "rte",
"rte": {
"format": "html"
}
}
The only property this field requires is format
format
string
an rte
output format (default html
)As with other projects, all configurations, that you'll configure unser uiSchema
rte
field will be transferred to the actual component.
table
)This component wraps react-bootstrap-table for array components, with smart default configurations.
The simplest configuration would be
{
"ui:field": "table"
}
You can use table
field without any predefined configurations, it will generate default table schema with columns.
tableCols
an array of react-bootstrap-table configurations, that override default generated configurations for the field.By default table component will generate table columns, based on an array schema, with editables, based on field types.
You can reuse react-jsonschema-form Components, in table column editing, to do that, you need to define
field
property in tableCols override section, with uiSchema
to use for the field.For example let's say we have allergy array, with allergyName
coming from server source,
we can enable asyncTypeahead
on allergyName field in tableCols
override like this:
let uiSchema = {
allergies: {
classNames: "col-md-12",
"ui:field": "table",
table: {
tableCols: [
{
dataField: "allergyName",
field: "asyncTypeahead",
uiSchema: {
"ui:field": "asyncTypeahead",
asyncTypeahead: {
bodyContainer: true,
url: "/allergies/typeahead"
},
},
},
],
},
},
};
If you are having issues, please let us know here or on StackOverflow.
The project is licensed under the Apache Licence 2.0.
FAQs
Extra widgets for Mozilla's react-jsonschema-form
The npm package react-jsonschema-form-extras receives a total of 336 weekly downloads. As such, react-jsonschema-form-extras popularity was classified as not popular.
We found that react-jsonschema-form-extras demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.