Files
divkit/test_data/ui_test_data/actions/scoped_actions.json
T
gulevsky 3e2e12d898 support 'scope_id' for set_variable actions
commit_hash:86fd118ac6ef2eed66a544a5c95f4e367e548f44
2024-09-20 17:11:07 +03:00

134 lines
3.4 KiB
JSON

{
"templates": {
"title": {
"type": "text",
"font_size": 24,
"font_weight": "bold",
"text_alignment_horizontal": "center",
"text_alignment_vertical": "center",
"text_color": "#586E75"
},
"base_text": {
"type": "text",
"font_size": 18,
"font_weight": "medium",
"text_color": "#002B36"
},
"button": {
"type": "text",
"height": {
"type": "fixed",
"value": 48
},
"paddings": {
"left": 8,
"top": 8,
"right": 8,
"bottom": 8
},
"background": [
{
"type": "solid",
"$color": "background_color"
}
],
"border": {
"corner_radius": 8
},
"font_size": 20,
"font_weight": "medium",
"text_alignment_horizontal": "center",
"text_alignment_vertical": "center",
"text_color": "#FDF6E3"
}
},
"card": {
"log_id": "scoped_actions",
"states": [
{
"state_id": 0,
"div": {
"type": "container",
"orientation": "vertical",
"paddings": {
"left": 16,
"top": 16,
"right": 16,
"bottom": 16
},
"background": [
{
"type": "solid",
"color": "#EEE8D5"
}
],
"items": [
{
"type": "title",
"id": "title",
"text": "@{title_text}",
"margins": {
"bottom": 16
},
"variables": [
{
"name": "title_text",
"type": "string",
"value": "Lorem ipsum"
}
]
},
{
"type": "base_text",
"id": "content",
"text": "@{content_text}",
"margins": {
"bottom": 16
},
"variables": [
{
"name": "content_text",
"type": "string",
"value": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
}
]
},
{
"type": "container",
"orientation": "horizontal",
"items": [
{
"type": "button",
"margins": {
"right": 16
},
"background_color": "#2AA198",
"text": "Scoped",
"actions": [
{
"log_id": "change_title",
"scope_id": "title",
"url": "div-action://set_variable?name=title_text&value=Title%20has%20been%20changed"
}
]
},
{
"type": "button",
"background_color": "#B58900",
"text": "Not scoped",
"actions": [
{
"log_id": "change_title",
"url": "div-action://set_variable?name=title_text&value=Title%20has%20been%20changed"
}
]
}
]
}
]
}
}
]
}
}