iptv/wwwroot/n/show_channels.ui
2025-07-16 15:07:06 +08:00

97 lines
1.9 KiB
XML

{
"id":"search_result",
"widgettype":"Container",
"options":{
"loader":{
"dataurl":"{{entire_url('./channel_search.dspy')}}",
"rows":60
},
"idField":"id",
"do_scroll_x":false,
"layout":{
"widgettype":"StackBox",
"options":{
"size_hint":[1,null]
}
},
"viewer":{
"widgettype":"PressableBoxLayout",
"options":{
"orientation":"vertical",
"height":240,
"size_hint_x":1,
"size_hint_y":null
},
"subwidgets":[
{
"widgettype":"Image",
"options":{
"source":"{% raw -%}{{logo_url}}{%- endraw %}"
}
},
{
"widgettype":"Text",
"options":{
"otext":"{% raw -%}{{tv_name}}{%- endraw %}",
"i18n":false,
"wrap":true,
"halign":"left"
}
},
{
"widgettype":"HBox",
"options":{
"height":"50",
"size_hint_y":null
},
"subwidgets":[
{
"widgettype":"PressableImage",
"options":{
"source":"{{entire_url('imgs/like.png')}}",
"size_hint_y":null,
"height":30
},
"binds":[
{
"wid":"self",
"event":"on_press",
"target":"app",
"actiontype":"script",
"script":"self.like('{% raw -%}{{id}}{%- endraw %}')"
}
]
},
{
"widgettype":"PressableImage",
"options":{
"source":"{{entire_url('imgs/delete.png')}}",
"size_hint_y":null,
"height":30
},
"binds":[
{
"wid":"self",
"event":"on_press",
"target":"app",
"actiontype":"script",
"script":"self.delete('{% raw -%}{{id}}{%- endraw %}')"
}
]
}
]
}
],
"binds":[
{
"wid":"self",
"event":"on_press",
"actiontype":"script",
"target":"app",
"script":"{% raw -%}self.play('{{url}}'){%- endraw %}"
}
]
}
}
}