expression ¤
Classes:
-
Operator
–Operator describes something that somehow changes the inputs
-
SpreadOperator
–Operator that inserts one or more kwargs at the specified location.
Functions:
-
process_aggregate_kwargs
–This function aggregates "prefixed" kwargs into dicts. "Prefixed" kwargs
Operator ¤
Bases: ABC
Operator describes something that somehow changes the inputs to template tags (the {% %}
).
For example, a SpreadOperator inserts one or more kwargs at the specified location.
SpreadOperator ¤
process_aggregate_kwargs ¤
This function aggregates "prefixed" kwargs into dicts. "Prefixed" kwargs start with some prefix delimited with :
(e.g. attrs:
).
Example:
process_component_kwargs({"abc:one": 1, "abc:two": 2, "def:three": 3, "four": 4})
# {"abc": {"one": 1, "two": 2}, "def": {"three": 3}, "four": 4}
We want to support a use case similar to Vue's fallthrough attributes. In other words, where a component author can designate a prop (input) which is a dict and which will be rendered as HTML attributes.
This is useful for allowing component users to tweak styling or add event handling to the underlying HTML. E.g.:
class="pa-4 d-flex text-black"
or @click.stop="alert('clicked!')"
So if the prop is attrs
, and the component is called like so:
then, if attrs
is:
and the component template is:
Then this renders:
However, this way it is difficult for the component user to define the attrs
variable, especially if they want to combine static and dynamic values. Because they will need to pre-process the attrs
dict.
So, instead, we allow to "aggregate" props into a dict. So all props that start with attrs:
, like attrs:class="text-red"
, will be collected into a dict at key attrs
.
This provides sufficient flexiblity to make it easy for component users to provide "fallthrough attributes", and sufficiently easy for component authors to process that input while still being able to provide their own keys.
Source code in src/django_components/expression.py
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 |
|