What's New in V4
Changes in Naming
The naming used in the Data Model XML, Views XML and some JavaScript functions are changed to be more consistent and intuitive.
For the complete list, see the Naming Details section.
The data model and view XML changes are handled automatically by the migration process. However, the JavaScript changes have to be performed manually.
No More Explicit Links
It is now longer required to define link
elements explicitly. Instead, call the links by path with link.link_path(). The same function can now also be called directly from the on-press
attribute in the view XML, optionally passing view variables as arguments. This replaces the need for the link
attribute on buttons.
It is no longer required to use return link.some_view()
- instead just use link.some_view()
. The link function now throws an exception, that is used for navigation.
For details, see the Linking Views section.
New ‘resume’ Callback
Instead of defining ondismiss
actions on links, you can now define a single resume
function per view. If defined, this is called whenever the user returns to the view, both via a dismiss call and via the back button.
For details, see the Linking Views section.
New Choice Types
enum
has been renamed to single-choice-integer
, and enum_set
has been renamed to multiple-choice-integer
. Additionally, these types now take explicit keys for each option.
There are also three new choice types:
single-choice
Like single-choice-integer
, but takes string keys. This is recommended over single-choice-integer
.
boolean
Like single-choice-integer
, but has exactly two boolean options.
multiple-choice
Like multiple-choice-integer
, but takes string keys. This is recommended over multiple-choice-integer
.
‘Day’ Objects
date
fields now use a Day
object instead of Date
object to represent the value. The Day
object represents only the Gregorian day, with no time or timezone.
New Label Behavior
If no label is specified on an input component, it is now inferred from the Data Model. Will be blank for direct view variables, since they do not have any label. This that you can have more concise view components, for example:
To explicitly create an input without any label, use label=""
. This will remove it completely (no whitespace). To still have some whitespace, use label=" "
(a single space in the label).
The placeholder text of text inputs may now be customized by specifying placeholder="My placeholder"
. This may be used to create more compact forms, for example:
New V4 JourneyApps API
The JourneyApps API has been upgraded significantly, and is now available in V4.
Please see the documentation for the Backend API or refer to the section about Updating to the V4 API.
Naming Details
Data Model
These changes are automatically applied by the migration process.
For details, see the syntax section under What is the data model?
Field Types
These changes are automatically applied by the migration process.
Component Names
These changes are automatically applied by the migration process.
JavaScript Functions
These changes are not automatically applied by the migration process, and have to be applied manually.
Last updated