- Simplified task detail opening logic by integrating it into the `settingsModalStore`
- Updated the visibility condition for the task detail view in `scheduler-task-detail.html` to rely solely on the selected task state
rm attributes from components
simplify task display logic
settings components init
scheduler componentize
- Removed the inline scheduler settings script from `index.html` and replaced it with a new component structure in `scheduler-settings.html`, `scheduler-task-editor.html`, `scheduler-task-list.html`, and `scheduler-task-detail.html`.
- Introduced a dedicated `scheduler-store.js` to manage state and logic for the scheduler, enhancing maintainability and separation of concerns.
- Updated the `index.js` to remove the now obsolete `openTaskDetail` function, integrating task detail handling within the new store.
- Removed the deprecated `scheduler.js` file, consolidating functionality into the new component architecture.
settings modal store rename
- Replaced all instances of `$store.settingsModalStore` with `$store.settingsStore` across various settings components.
scheduler tab content x-if
- Simplified task detail opening logic by integrating it into the `settingsModalStore`
- Updated the visibility condition for the task detail view in `scheduler-task-detail.html` to rely solely on the selected task state
rm attributes from components
simplify task display logic
settings components init
scheduler componentize
- Removed the inline scheduler settings script from `index.html` and replaced it with a new component structure in `scheduler-settings.html`, `scheduler-task-editor.html`, `scheduler-task-list.html`, and `scheduler-task-detail.html`.
- Introduced a dedicated `scheduler-store.js` to manage state and logic for the scheduler, enhancing maintainability and separation of concerns.
- Updated the `index.js` to remove the now obsolete `openTaskDetail` function, integrating task detail handling within the new store.
- Removed the deprecated `scheduler.js` file, consolidating functionality into the new component architecture.
settings modal store rename
- Replaced all instances of `$store.settingsModalStore` with `$store.settingsStore` across various settings components.
scheduler tab content x-if
Replace plain text copy buttons with modern icon-based action buttons featuring:
- Material Design icons for copy and text-to-speech actions
- Responsive behavior: hover on desktop, tap on mobile
- Visual feedback for success/error states
- Speech synthesis integration with existing speech store
- Viewport-aware positioning for long messages
- Modern Clipboard API with execCommand fallback
- Full accessibility support with ARIA labels and keyboard navigation
Files added:
- webui/components/messages/action-buttons/message-action-buttons.js
- webui/components/messages/action-buttons/message-action-buttons.css
- webui/components/messages/action-buttons/README.md
- webui/js/message-interactions.js
Files modified:
- webui/js/messages.js (integrate new component, remove legacy functions)
- webui/css/messages.css (deprecate old copy button styles)
- webui/index.html (add component CSS import)
The implementation follows Agent Zero's modular component architecture and maintains backward compatibility during the transition period.