Lava
Reference to the Lava functionalities and in what context they are available.
Lava Filters
The Community page has a list of all the available filters. If a filter is available to run locally on the mobile shell (Process Lava On Client under Block Settings > Mobile Settings tab) it will be marked as such in the docs along with the compatible shell version.
Escape
It is recommended to always include the Escape filter when using Lava text strings in a mobile application. This will encode the string, in case there are special characters included in there that could break things. This often happens with URLs that include an ampersand (&
), or a Content Channel Item title with a single quote ('
). Anything that has been user-inputted should be escaped! You can also encode characters manually, for example replacing &
with &
works.
Whitespace Control
According to the official Lava Style Guide, adding hyphens (-
) to your Lava will strip whitespace from the output.
{{-
, -}}
, {%
, and %}
While this may be more visually valuable on the web to keep the DOM clean inside the inspector/source, it has merit in Rock Mobile as well. Every line of Lava mixed into your XAML takes up space, which increases the size of the page. In nearly all cases this is insignificant, but at scale, many items may have a larger impact.
Using a for loop can also introduce issues without stripping whitespace. Each iteration of the loop leaves behind some artifacts in the DOM, and with enough items, this can throw an error.
We're not saying you should always add hyphens to your Lava, but if you have a long or complex Lava page, or you're running into an error you can't explain, it may be worth adding them.
Shell Lava Variables
When executing Lava on the mobile application shell, the following variables and properties are available in all Lava contexts.
PageParameter
CurrentPerson
Device
PageValues
AppValues
CurrentTheme
PageParameter
To access a page parameter (also known as query strings), follow the syntax below:
{% assign itemId = PageParameter.Id %}
Page parameters can be passed directly within a CommandParameter
or a Parameter control:
CurrentPerson
The CurrentPerson
object available on the mobile shell is a stripped-down version of what you are used to using on the Server side. It does not support all the same properties, but most of the ones you are most likely to use should be available.
When editing the application settings, there's a selection for Person Attribute Categories that can bring down additional attributes to the local CurrentPerson object.
To access these attributes in Lava, ensure that Process Lava On Client is enabled in the block settings and follow this syntax: {{ CurrentPerson.AttributeValues.AttributeKey }}
Each attribute has two properties within − Value and FormattedValue. In some cases, you may need to target these directly which you can do with the Property filter in Lava.
{{ CurrentPerson.AttributeValues.AttributeKey | Property:'FormattedValue' }}
Device
The Device variable gives you access to the type of device used by the user:
PageValues
Page values are used along with Page Events to allow you to customize your user experience. The PageValues
object is just a dictionary of string/object pairs that you can use any way you want. There is no defined structure to them. You can read more about their use in the Page Events section.
AppValues
Similar to PageValues
, the AppValues
is a simple dictionary that you can store custom data into. However, the major difference is that AppValues
will persist between application restarts. One simple usage might be to store a preference in how a page is displayed. You might present the user with a show/hide option that shows or hides certain elements on the page - all processed on the mobile shell. You can use AppValues
for this and the value will persist between different visits to the page as well as a full restart of the application.
DeviceTheme
Returns the requested OS theme of the current device. Will be either Dark
, Light
or Unspecified
.
Server Lava Variables
When you are using Lava to customize the experience from the server side, for example in a Content block set to server-side Lava rendering, the following variables are available to you.
PageParameter
CurrentPerson
In addition, the Content block defines these additional variables when processing a callback event. You can check out the Advanced: Dynamic Content page for more details on their contents.
Command
Parameters
Lava Commands
The mobile application provides a few additional Lava commands that you can use in different circumstances.
setpagevalue
This command allows you to set a specific value in the PageValues dictionary.
Both key
and value
can either be specified as literal values or as variable references, so both of the following are functionally the same.
You can then access your PageValue by simply accessing it like any other Lava object, for example:
You can even access PageValues by way of bindings in your XAML:
setappvalue
This command allows you to set a specific value in the AppValues dictionary.
Both key
and value
can either be specified as literal values or as variable references, so both of the following are functionally the same.
You can then access your AppValue by simply accessing it like any other Lava object, for example:
You can even access AppValues by way of bindings in your XAML:
These application values are persisted in the local database, so you should keep them limited to simple primitive types, such as numbers, strings, and booleans. Any other more complex object or array types may or may not restore from the database as you expect.
Entity Command Attributes
Having the ability to utilize attributes when building an entity command is a powerful tool. Be cautious when naming the attributes, as the entity command you generate will pull all attributes with that same attribute key, regardless of where it is in the database.
Although the entity command pulls items from content channel 10, the attribute 'Campus' could be used in many other places. Because of this, the information being returned within the entity command could be inaccurate and produce an unwanted result.
Create a unique attribute when planning to check it within an entity command. Creating the unique attribute then limits entity command's check to one value.
Last updated