hermes-web-cli/wwwroot/session_chat.ui
yumoqing c158573a39 fix: replace backgroundColor with bgcolor in all UI files and add missing scripts
- Replace all 'backgroundColor' properties with 'bgcolor' to comply with bricks-framework specification
- Add missing UI files: new_session.ui, sessions.ui, services.ui, settings.ui
- Create scripts/main.dspy with all required functions for UI interactions
- Fix layout using css: 'filler' for main-content to properly fill remaining width
- Ensure all referenced links have corresponding script implementations
2026-04-22 14:15:54 +08:00

125 lines
3.1 KiB
XML

{
"widgettype": "VBox",
"options": {
"width": "100%",
"height": "100%",
"padding": "20px"
},
"subwidgets": [
{
"widgettype": "HBox",
"options": {
"width": "100%",
"height": "auto",
"marginBottom": "24px"
},
"subwidgets": [
{
"widgettype": "Text",
"options": {
"text": "Session Chat",
"fontSize": "24px",
"fontWeight": "bold",
"color": "#F8FAFC"
}
},
{
"widgettype": "Filler"
},
{
"widgettype": "Button",
"options": {
"icon": "fa fa-arrow-left",
"label": "Back to Sessions",
"bgcolor": "#1E293B",
"color": "#F8FAFC",
"border": "1px solid #334155",
"borderRadius": "6px",
"padding": "8px 16px"
},
"binds": [
{
"wid": "self",
"event": "click",
"actiontype": "urlwidget",
"target": "app.main-content",
"options": {
"url": "{{entire_url('sessions.ui')}}"
},
"mode": "replace"
}
]
}
]
},
{
"widgettype": "VBox",
"options": {
"width": "100%",
"height": "calc(100% - 100px)",
"bgcolor": "#1E293B",
"borderRadius": "8px",
"padding": "20px",
"border": "1px solid #334155",
"overflow": "auto"
},
"subwidgets": [
{
"widgettype": "DataViewer",
"id": "chat-messages",
"options": {
"data_url": "/hermes-web-cli/session_messages/?session_id={{params_kw.get('session_id')}}",
"page_rows": 50,
"row_options": {
"fields": [
{
"name": "role",
"label": "Role",
"uitype": "str"
},
{
"name": "content",
"label": "Message",
"uitype": "str"
},
{
"name": "timestamp",
"label": "Time",
"uitype": "date"
}
]
},
"toolbar": {
"tools": []
}
}
}
]
},
{
"widgettype": "Form",
"options": {
"fields": [
{
"name": "message",
"label": "Your Message",
"uitype": "text",
"required": true,
"placeholder": "Type your message here..."
}
],
"notoolbar": true,
"submit_url": "/hermes-web-cli/session_messages/?session_id={{params_kw.get('session_id')}}",
"method": "POST"
},
"binds": [
{
"wid": "self",
"event": "submited",
"actiontype": "script",
"script": "bricks.show_resp_message_or_error(event.params).then(() => { document.querySelector('#chat-messages').refresh(); });"
}
]
}
]
}