Files
wehub-resource-sync adf0d17497
publish / version_or_publish (push) Has been cancelled
storybook-build / changes (push) Has been cancelled
storybook-build / :storybook-build (push) Has been cancelled
Sync Gradio Skills to Hugging Face / sync-skills (push) Has been cancelled
functional / changes (push) Has been cancelled
functional / build-frontend (push) Has been cancelled
functional / functional-test-SSR=false (push) Has been cancelled
functional / functional-reload (push) Has been cancelled
js / changes (push) Has been cancelled
js / js-test (push) Has been cancelled
docs-build / changes (push) Has been cancelled
docs-build / docs-build (push) Has been cancelled
docs-build / website-build (push) Has been cancelled
functional / functional-test-SSR=true (push) Has been cancelled
hygiene / hygiene-test (push) Has been cancelled
python / changes (push) Has been cancelled
python / build (push) Has been cancelled
python / test-ubuntu-latest-flaky (push) Has been cancelled
python / test-ubuntu-latest-not-flaky (push) Has been cancelled
python / test-windows-latest-flaky (push) Has been cancelled
python / test-windows-latest-not-flaky (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:17:32 +08:00

181 lines
8.7 KiB
Python

"""gr.JSON() component."""
from __future__ import annotations
import warnings
from collections.abc import Callable, Sequence
from typing import (
TYPE_CHECKING,
Any,
Literal,
)
import orjson
from gradio_client.documentation import document
from gradio.components.base import Component
from gradio.components.button import Button
from gradio.data_classes import JsonData
from gradio.events import Events
from gradio.exceptions import Error
from gradio.i18n import I18nData
from gradio.utils import parse_escaped_json, set_default_buttons
if TYPE_CHECKING:
from gradio.components import Timer
@document()
class JSON(Component):
"""
Used to display arbitrary JSON output prettily. As this component does not accept user input, it is rarely used as an input component.
Demos: zip_to_json, blocks_xray
"""
EVENTS = [Events.change]
def __init__(
self,
value: str | dict | list | Callable | None = None,
*,
label: str | I18nData | None = None,
every: Timer | float | None = None,
inputs: Component | Sequence[Component] | set[Component] | None = None,
show_label: bool | None = None,
container: bool = True,
scale: int | None = None,
min_width: int = 160,
visible: bool | Literal["hidden"] = True,
elem_id: str | None = None,
elem_classes: list[str] | str | None = None,
render: bool = True,
key: int | str | tuple[int | str, ...] | None = None,
preserved_by_key: list[str] | str | None = "value",
open: bool = False,
show_indices: bool = False,
height: int | str | None = None,
max_height: int | str | None = 500,
min_height: int | str | None = None,
buttons: list[Literal["copy"] | Button] | None = None,
):
"""
Parameters:
value: Default value as a valid JSON `str` -- or a `list` or `dict` that can be serialized to a JSON string. If a function is provided, the function will be called each time the app loads to set the initial value of this component.
label: the label for this component. Appears above the component and is also used as the header if there are a table of examples for this component. If None and used in a `gr.Interface`, the label will be the name of the parameter this component is assigned to.
every: Continuously calls `value` to recalculate it if `value` is a function (has no effect otherwise). Can provide a Timer whose tick resets `value`, or a float that provides the regular interval for the reset Timer.
inputs: Components that are used as inputs to calculate `value` if `value` is a function (has no effect otherwise). `value` is recalculated any time the inputs change.
show_label: if True, will display label.
container: If True, will place the component in a container - providing some extra padding around the border.
scale: relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. scale applies in Rows, and to top-level Components in Blocks where fill_height=True.
min_width: minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first.
visible: If False, component will be hidden. If "hidden", component will be visually hidden and not take up space in the layout but still exist in the DOM
elem_id: An optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.
elem_classes: An optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.
render: If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.
key: in a gr.render, Components with the same key across re-renders are treated as the same component, not a new component. Properties set in 'preserved_by_key' are not reset across a re-render.
preserved_by_key: A list of parameters from this component's constructor. Inside a gr.render() function, if a component is re-rendered with the same key, these (and only these) parameters will be preserved in the UI (if they have been changed by the user or an event listener) instead of re-rendered based on the values provided during constructor.
open: If True, all JSON nodes will be expanded when rendered. By default, node levels deeper than 3 are collapsed.
show_indices: Whether to show numerical indices when displaying the elements of a list within the JSON object.
height: Height of the JSON component in pixels if a number is passed, or in CSS units if a string is passed. Overflow will be scrollable. If None, the height will be automatically adjusted to fit the content.
buttons: A list of buttons to show for the component. Valid options are "copy" or a gr.Button() instance. The "copy" button allows users to copy the JSON to the clipboard. Custom gr.Button() instances will appear in the toolbar with their configured icon and/or label, and clicking them will trigger any .click() events registered on the button. By default, the copy button is shown.
"""
super().__init__(
label=label,
every=every,
inputs=inputs,
show_label=show_label,
container=container,
scale=scale,
min_width=min_width,
visible=visible,
elem_id=elem_id,
elem_classes=elem_classes,
render=render,
key=key,
preserved_by_key=preserved_by_key,
value=value,
)
self.show_indices = show_indices
self.open = open
self.height = height
self.max_height = max_height
self.min_height = min_height
self.buttons = set_default_buttons(buttons, ["copy"])
def preprocess(self, payload: dict | list | None) -> dict | list | None:
"""
Parameters:
payload: JSON value as a `dict` or `list`
Returns:
Passes the JSON value as a `dict` or `list` depending on the value.
"""
return payload
def postprocess(self, value: dict | list | str | None) -> JsonData | None:
"""
Parameters:
value: Expects a valid JSON `str` -- or a `list` or `dict` that can be serialized to a JSON string. The `list` or `dict` value can contain numpy arrays.
Returns:
Returns the JSON as a `list` or `dict`.
"""
def default_json(o):
"""
Check if the string representation of the object is already a valid JSON string. If it is,
parse it as JSON without the need to double quote it as string.
"""
try:
return orjson.loads(str(o))
except orjson.JSONDecodeError:
return str(o)
if value is None:
return None
if not isinstance(value, (str, dict, list, Callable)):
warnings.warn(
f"JSON component received unexpected type {type(value)}. "
"Expected a string (including a valid JSON string), dict, list, or Callable.",
UserWarning,
)
if isinstance(value, str):
try:
return JsonData(root=orjson.loads(value))
except orjson.JSONDecodeError as e:
raise Error(f"Invalid JSON string: {e}") from e
else:
# Use orjson to convert NumPy arrays and datetime objects to JSON.
# This ensures a backward compatibility with the previous behavior.
# See https://github.com/gradio-app/gradio/pull/8041
return JsonData(
root=orjson.loads(
orjson.dumps(
value,
option=orjson.OPT_SERIALIZE_NUMPY
| orjson.OPT_PASSTHROUGH_DATETIME,
default=default_json,
)
)
)
def example_payload(self) -> Any:
return {"foo": "bar"}
def example_value(self) -> Any:
return {"foo": "bar"}
def read_from_flag(self, payload: Any):
return parse_escaped_json(payload)
def api_info(self) -> dict[str, Any]:
return {"type": {}, "description": "any valid json"}
def as_example(self, value) -> Any:
val = self.postprocess(value)
if val:
val = val.model_dump()
return val