Skip to main content

Component | JSON Input

note

Introduced in SDK version 0.26.3

Render a JSON input with:

  • Syntax highlighting and formatting for the input data
  • Error checking to ensure well-formed JSON
  • Line numbers for better readability
ui.jsonInput("user-data", {
initialValue: { users: [ /* ... */ ] }, // Replace with actual JSON data.
onEnter: (value) => db.updateUserMetadata(value)
})

Learn more about working with inputs.

Change input height

You can change the height of the input element via the style property. For example, to render the input with a height of 800px:

ui.jsonInput("user-data", {
style: { height: "800px" }
})

API reference

Function signature

type ValidJson =
| string
| number
| boolean
| null
| ValidJson[]
| { [key: string]: ValidJson };

ui.jsonInput(
id: string,
properties?: Partial<{
label: string,
description: string,
required: boolean,
initialValue: ValidJson,
validate: (value: ValidJson) => string | void,
onEnter: (value: ValidJson) => void,
style: Style
}>
)

Parameters

id

required string
A unique identifier for the component. This is necessary so that Compose can properly pass user actions back to the component.

properties.label

optional string

The label to display above the JSON input. If not provided, the label will be inferred from the id.


properties.description

optional string

A description to display between the label and JSON input.


properties.required

optional boolean

Validate that the JSON input is not empty before submitting the form it's part of or calling it's onEnter hook. Defaults to true.


properties.initialValue

optional ValidJson

The initial value of the JSON input. Defaults to null. You can also update the value of the JSON input at any time using the page.setInputs() method.


properties.validate

optional (value: ValidJson) => string | void
Validate the JSON input value before submitting it. If the function returns a string, it will be displayed as an error message.

properties.onEnter

optional (value: ValidJson) => void
A callback function that is called when the user presses enter in the JSON input.

properties.style

optional Style

Directly style the underlying element using CSS. See the styling guide for more details on available style properties.