A TinaCMS field suite for making conditional field logic in forms
This plugin expects you to already have a working TinaCMS project.
You can install the plugin package by running:
npm install react-tinacms-field-condition
In your code, register the plugin:
import { ConditionalFieldPlugin, ConditionalGroupFieldPlugin } from 'react-tinacms-field-condition'
const cms = new TinaCMS();
cms.plugins.add(ConditionalFieldPlugin);
cms.plugins.add(ConditionalGroupFieldPlugin);
In a form config, you can use the condition
field like any other field, providing it a child field to render when its condition returns true.
const fields = [
{ name: "type", label: "Type", component: "select", options: ["image", "Video"] }
{
name: "image",
label: "Image",
component: "condition",
condition: (value, values) => values.type === "image"
field: { component: "image" }
},
{
name: "video",
label: "Video",
component: "condition",
condition: (value, values) => values.type === "video"
field: { component: "video" }
}
]
- The nested field will share the same
name
as the condition field if noname
is specified for the nested field
In a form config, you can use the condition-group
field like any other field, providing it a child fields to render when its condition returns true.
const fields = [
{ name: "type", label: "Type", component: "select", options: ["image", "Video"] }
{
name: "image",
label: "Image Fields",
component: "condition-group",
condition: (value, values) => values.type === "image"
fields: [
{ name: "src", label: "Image", component: "image" },
{ name: "alt", label: "Alternative Text", description: "Displayed if the image fails to load and to screen readers", component: "image" }
]
},
{
name: "video",
label: "Video",
component: "condition-group",
condition: (value, values) => values.type === "video"
fields: [
{ name: "src", label: "Video", component: "video" },
{ name: "thumbnail", label: "Thumbnail Image", component: "image" }
]
}
]
- Unlike the
condition
field, the child fields of acondition-group
must have their own name. However, thecondition-group
field does not require aname
.