Future
Future plans for SA5 dynamic attributes
Smart options
Force overwrite
Overwrite only if non-blank
Change to x:
prefix
x:
prefixCurrently we prefix attributes with x-
however this convention is already used in Alpine JS. While this is unlikely to create conflicts, we'd like to avoid the possibility of confusion as well.
Removing Attributes After processing
Default false, but can enable this as a lib config option.
Prefix and Postfix
x:pre:(name)
= ( value )
x:post:(name)
= ( value )
x:format:(name)
= ( value )
x:pre:(attribute)
= ( value )
x:post:(attribute)
= ( value )
Would result in;
Use cases;
In a CMS-bound link, append
#hash
or?query=foo
data.Append classes to your class list without overwriting them
Result;
Use cases;
Smart Attributes
<script> based transforms
Generate an attribute from a specially-typed script block within it, with the purpose being to;
Easily mix static text and dynamic attributes
Support larger strings, e.g. JSON chunks
Resolve attribute content limitations in Webflow
Inability to include double-quotes
"
in content
Resolve attribute name limitations in Webflow
Targeting can be parent, prev sibling or next sibling, or a target element(?) with an SA5 identifier
https://discourse.webflow.com/t/embed-cal-com-pop-up-via-element-click/277487/3
Supporting JSON chunks in the designer
"
/x0022
Ideally design this so that it can also support Hyperflow processing.
Transforms
Dynamic Attributes are likely to become a facet of a larger SA5 concept we'll call DOM Transforms. Transforms allow for broad changes to happen, and have a specific instructional paradigm;
What to target, relative to the transform's position- useful for collection lists.
What kind of transformation to do.
The data needed for the transformation
For example
sa5:transform:attr
Targeting
target
selector
attr
Transform
transform = append | replace | prepend, etc
Data
val = (value)
Typically a field embed. This would be HTML encoded
decode
= html | noneencode
We're looking at adding
Last updated