hermes-web-cli/wwwroot/edit_service.ui
yumoqing 5d4e70da8e feat: complete missing UI files and API endpoints for hermes-web-cli
- Added all missing .ui files referenced in index.ui:
  * new_session.ui
  * sessions.ui
  * services.ui
  * settings.ui
  * session_detail.ui
  * add_service.ui
  * edit_service.ui

- Created corresponding .dspy API endpoints with proper directory structure:
  * /hermes-web-cli/services → services/index.dspy
  * /hermes-web-cli/services/list → services/list/index.dspy
  * /hermes-web-cli/services/{id} → services/id/index.dspy
  * /hermes-web-cli/services/test?id={id} → services/test/index.dspy
  * /hermes-web-cli/sessions (POST) → sessions/index.dspy
  * /hermes-web-cli/sessions/messages?session_id={id} → sessions/messages/index.dspy
  * /hermes-web-cli/settings → settings/index.dspy
  * /hermes-web-cli/settings/reset → settings/reset/index.dspy

- Fixed UI styling to comply with bricks-framework (removed nested style objects)
- Updated URL references to use query parameters instead of path parameters for dynamic routes
- All files follow production-ready module development specifications
2026-04-22 11:22:44 +08:00

113 lines
3.0 KiB
XML

{
"widgettype": "VBox",
"options": {
"width": "100%",
"height": "100%",
"style": {
"padding": "20px"
}
},
"subwidgets": [
{
"widgettype": "Text",
"options": {
"text": "Edit Service",
"fontSize": "24px",
"fontWeight": "bold",
"style": {
"marginBottom": "20px",
"color": "#F8FAFC"
}
}
},
{
"widgettype": "Form",
"id": "edit-service-form",
"options": {
"fields": [
{
"name": "name",
"label": "Service Name",
"uitype": "str",
"required": true,
"placeholder": "Enter service name"
},
{
"name": "url",
"label": "Service URL",
"uitype": "str",
"required": true,
"placeholder": "http://localhost:8080"
},
{
"name": "description",
"label": "Description",
"uitype": "str",
"placeholder": "Optional description"
}
],
"data_url": "/hermes-web-cli/services/{{query.service_id}}"
}
},
{
"widgettype": "HBox",
"options": {
"width": "100%",
"height": "auto",
"style": {
"marginTop": "20px",
"gap": "10px"
}
},
"subwidgets": [
{
"widgettype": "Button",
"options": {
"text": "Update Service",
"icon": "fa fa-save",
"style": {
"backgroundColor": "#3B82F6",
"color": "#FFFFFF",
"border": "none",
"borderRadius": "6px",
"padding": "10px 20px"
}
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "script",
"script": "const formData = bricks.app.get_widget('edit-service-form').get_data(); const serviceId = '{{query.service_id}}'; if (formData.name && formData.url) { fetch(`/hermes-web-cli/services/${serviceId}`, { method: 'PUT', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(formData) }).then(() => { bricks.app.load_widget('{{entire_url(\"services.ui\")}}', 'main-content', 'replace'); }); }"
}
]
},
{
"widgettype": "Button",
"options": {
"text": "Cancel",
"style": {
"backgroundColor": "#64748B",
"color": "#FFFFFF",
"border": "none",
"borderRadius": "6px",
"padding": "10px 20px"
}
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "urlwidget",
"target": "main-content",
"options": {
"url": "{{entire_url('services.ui')}}"
},
"mode": "replace"
}
]
}
]
}
]
}