104 lines
3.5 KiB
XML
104 lines
3.5 KiB
XML
{
|
|
"widgettype": "VBox",
|
|
"options": {
|
|
"width": "100%",
|
|
"height": "100%",
|
|
"css": "ios-scroll-area"
|
|
},
|
|
"subwidgets": [
|
|
{
|
|
"widgettype": "Toolbar",
|
|
"options": {
|
|
"css": "ios-navbar",
|
|
"items": [
|
|
{
|
|
"text": "Deploy Skill",
|
|
"icon": "upload-cloud",
|
|
"css": "ios-navbar-title",
|
|
"disabled": true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"widgettype": "VBox",
|
|
"options": {
|
|
"css": "ios-card",
|
|
"width": "100%",
|
|
"padding": "16px"
|
|
},
|
|
"subwidgets": [
|
|
{
|
|
"widgettype": "Form",
|
|
"id": "deploy_form",
|
|
"options": {
|
|
"css": "ios-group",
|
|
"fields": [
|
|
{"name": "skill_id", "label": "Skill ID", "readonly": true, "hidden": true},
|
|
{"name": "skill_content", "label": "Skill Content (SKILL.md)", "type": "textarea", "height": "250px", "required": true}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"widgettype": "ButtonBar",
|
|
"options": {
|
|
"buttons": [
|
|
{
|
|
"id": "deploy_submit",
|
|
"text": "Deploy",
|
|
"icon": "upload-cloud",
|
|
"css": "ios-btn"
|
|
},
|
|
{
|
|
"id": "deploy_cancel",
|
|
"text": "Cancel",
|
|
"icon": "x",
|
|
"css": "ios-btn ios-btn-secondary"
|
|
}
|
|
]
|
|
},
|
|
"binds": [
|
|
{
|
|
"wid": "deploy_submit",
|
|
"event": "click",
|
|
"actiontype": "callfunction",
|
|
"fname": "hermes_manage_remote_skills",
|
|
"params": {
|
|
"action": "deploy",
|
|
"skill_id": "${skill_id}$",
|
|
"skill_content": "${skill_content}$"
|
|
},
|
|
"target": "deploy_result",
|
|
"method": "set_text"
|
|
},
|
|
{
|
|
"wid": "deploy_cancel",
|
|
"event": "click",
|
|
"actiontype": "close_dialog"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"widgettype": "Label",
|
|
"id": "deploy_result",
|
|
"options": {
|
|
"text": "",
|
|
"height": "60px",
|
|
"overflow": "auto",
|
|
"css": "ios-card-subtitle"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"binds": [
|
|
{
|
|
"wid": "self",
|
|
"event": "loaded",
|
|
"actiontype": "load_url_params",
|
|
"target": "deploy_form",
|
|
"method": "load_data"
|
|
}
|
|
]
|
|
}
|