iptv/wwwroot/w/channels.ui
2025-07-16 15:07:06 +08:00

116 lines
1.9 KiB
XML

{
"id":"channel_list",
"widgettype":"Tabular",
"options":{
"data_url":"{{entire_url('/api/channels.dspy')}}",
"noheader":true,
"content_view":{
"widgettype":"VBox",
"options":{
"overflow":"auto",
"width":"100%",
"height":"100%"
},
"subwidgets":[
{
"id":"toolbar",
"widgettype":"Toolbar",
"options":{
"orientation":"horizontal",
"tool_margin":"15px",
"tools":[
{
"name":"favour",
"icon":"{{entire_url('/imgs/favour.png')}}",
"label":"Favour"
}
]
}
},
{
"id":"myplayer",
"widgettype":"Video",
"options":{
"type":"application/x-mpegURL",
"url":"${url}"
}
}
],
"binds":[
{
"wid":"toolbar",
"event":"favour",
"target":"self",
"actiontype":"urlwidget",
"options":{
"url":"{{entire_url('/api/favour_channel.dspy')}}",
"params":{
"id":"${id}"
}
}
},
{
"wid":"self",
"event":"on_parent",
"actiontype":"method",
"target":"myplayer",
"method":"destroy_resource"
}
]
},
"row_options":{
"toolbar":{
"tools":[
{
"name":"like",
"icon":"{{entire_url('/imgs/like.png')}}"
},
{
"name":"tagit",
"icon":"{{entire_url('/imgs/tag.png')}}"
}
]
},
"fields":[
{
"name":"logo_url",
"cwidth":2,
"cheight":2,
"uitype":"icon",
"label":"Icon",
"value":"${logo_url}"
},
{
"name":"tv_name",
"uitype":"str",
"lable":"Channel",
"cwidth":50,
"value":"${tv_name}"
}
],
"cwidth":{
"logo_url":2,
"tv_name":30
},
"cheight":2.5,
"width":"100%"
},
"page_rows":80,
"cache_limit":5
},
"binds":[
{
"wid":"self",
"event":"like",
"actiontype":"urlwidget",
"target":"self",
"options":{
"url":"{{entire_url('/api/like.dspy')}}",
"params":{
"id":"${id}"
}
}
}
]
}