โExpression Editor
Create logical expressions directly in the UI, enabling conditional display, fallback values, concatenation, and more.
Last updated
Create logical expressions directly in the UI, enabling conditional display, fallback values, concatenation, and more.
Last updated
Expression Editor is available on every field when clicking the โ+โ button.
Most commonly used with Resources, Expression Editor has two primary features:
Binding (or โconnectingโ) external data to Webstudio fields. For example, connecting a blogโs featured image that exists in a headless CMS to the Image component in Webstudio.
Running logical expressions such as concatenating two or more values or conditionally displaying a section.
Hint: Expand Expression Editor to work within a larger window.
Binding is when you โconnectโ or โmapโ various values to fields within Webstudio. For example, when creating a Dynamic Page for a blog, only one page exists in Webstudio, but the values within that page dynamically change based on the URL viewed. The dynamic aspect is enabled by binding the various CMS fields to Webstudio components.
You will see Variables within the Expression Editor. You can click on the variable or type it in to bind its value to the field. But many times, the value you are looking for is a child within the variable.
Take, for example, the value of a custom Variable called CMS Data:
If you wanted to bind the title of the post to a header component, you need to do more than click on the โCMS Dataโ Variable. You need to โdrill downโ or access the children of the variable. This is simply done by typing a .
after the Variable, which will show the children in the autocomplete (i.e., title, slug, and image). For the title, you would enter CMS Data.title
, and the value โHello Worldโ would display. When viewing a different post, that postโs title would display.
For the image URL, you would type CMS Data.image.url
.
Expression Editor supports a simple subset of JavaScript, giving users a simple syntax without the footguns a complex programming language brings.
The following JavaScript expressions are supported:
Ternary operator โ Useful for conditions such as โIf the image is in my CMS, display it, otherwise hide it.โ The actual expression for this would look something like CMS Data.image ? true : false
and be bound to the โShowโ field.
Template literals โ Useful for inserting dynamic values inside templated text. For example, if you wanted to have โUpdated On <insert dynamic data>โ, it would look like `Updated On ${CMS Data.updatedOn}`
. Note the Expression starts and ends with backticks, and the dynamic values are within ${}
.
Expressions and operators โ Useful for concatenating two values (alternative solution to template literals). For example, "Updated on " + CMS Data.updatedOn
.