Spaces:
Paused
Paused
File size: 23,623 Bytes
dff1e71 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 | const settingsModalProxy = {
isOpen: false,
settings: {},
resolvePromise: null,
activeTab: 'agent', // Default tab
provider: 'cloudflared',
// Computed property for filtered sections
get filteredSections() {
if (!this.settings || !this.settings.sections) return [];
const filteredSections = this.settings.sections.filter(section => section.tab === this.activeTab);
// If no sections match the current tab (or all tabs are missing), show all sections
if (filteredSections.length === 0) {
return this.settings.sections;
}
return filteredSections;
},
// Switch tab method
switchTab(tabName) {
// Update our component state
this.activeTab = tabName;
// Update the store safely
const store = Alpine.store('root');
if (store) {
store.activeTab = tabName;
}
localStorage.setItem('settingsActiveTab', tabName);
// Auto-scroll active tab into view after a short delay to ensure DOM updates
setTimeout(() => {
const activeTab = document.querySelector('.settings-tab.active');
if (activeTab) {
activeTab.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'center' });
}
// When switching to the scheduler tab, initialize Flatpickr components
if (tabName === 'scheduler') {
console.log('Switching to scheduler tab, initializing Flatpickr');
const schedulerElement = document.querySelector('[x-data="schedulerSettings"]');
if (schedulerElement) {
const schedulerData = Alpine.$data(schedulerElement);
if (schedulerData) {
// Start polling
if (typeof schedulerData.startPolling === 'function') {
schedulerData.startPolling();
}
// Initialize Flatpickr if editing or creating
if (typeof schedulerData.initFlatpickr === 'function') {
// Check if we're creating or editing and initialize accordingly
if (schedulerData.isCreating) {
schedulerData.initFlatpickr('create');
} else if (schedulerData.isEditing) {
schedulerData.initFlatpickr('edit');
}
}
// Force an immediate fetch
if (typeof schedulerData.fetchTasks === 'function') {
schedulerData.fetchTasks();
}
}
}
}
}, 10);
},
async openModal() {
console.log('Settings modal opening');
const modalEl = document.getElementById('settingsModal');
const modalAD = Alpine.$data(modalEl);
// First, ensure the store is updated properly
const store = Alpine.store('root');
if (store) {
// Set isOpen first to ensure proper state
store.isOpen = true;
}
//get settings from backend
try {
const set = await sendJsonData("/settings_get", null);
// First load the settings data without setting the active tab
const settings = {
"title": "Settings",
"buttons": [
{
"id": "save",
"title": "Save",
"classes": "btn btn-ok"
},
{
"id": "cancel",
"title": "Cancel",
"type": "secondary",
"classes": "btn btn-cancel"
}
],
"sections": set.settings.sections
}
// Update modal data
modalAD.isOpen = true;
modalAD.settings = settings;
// Now set the active tab after the modal is open
// This ensures Alpine reactivity works as expected
setTimeout(() => {
// Get stored tab or default to 'agent'
const savedTab = localStorage.getItem('settingsActiveTab') || 'agent';
console.log(`Setting initial tab to: ${savedTab}`);
// Directly set the active tab
modalAD.activeTab = savedTab;
// Also update the store
if (store) {
store.activeTab = savedTab;
}
localStorage.setItem('settingsActiveTab', savedTab);
// Add a small delay *after* setting the tab to ensure scrolling works
setTimeout(() => {
const activeTabElement = document.querySelector('.settings-tab.active');
if (activeTabElement) {
activeTabElement.scrollIntoView({ behavior: 'smooth', block: 'nearest', inline: 'center' });
}
// Debug log
const schedulerTab = document.querySelector('.settings-tab[title="Task Scheduler"]');
console.log(`Current active tab after direct set: ${modalAD.activeTab}`);
console.log('Scheduler tab active after direct initialization?',
schedulerTab && schedulerTab.classList.contains('active'));
// Explicitly start polling if we're on the scheduler tab
if (modalAD.activeTab === 'scheduler') {
console.log('Settings opened directly to scheduler tab, initializing polling');
const schedulerElement = document.querySelector('[x-data="schedulerSettings"]');
if (schedulerElement) {
const schedulerData = Alpine.$data(schedulerElement);
if (schedulerData && typeof schedulerData.startPolling === 'function') {
schedulerData.startPolling();
// Also force an immediate fetch
if (typeof schedulerData.fetchTasks === 'function') {
schedulerData.fetchTasks();
}
}
}
}
}, 10); // Small delay just for scrolling
}, 5); // Keep a minimal delay for modal opening reactivity
// Add a watcher to disable the Save button when a task is being created or edited
const schedulerComponent = document.querySelector('[x-data="schedulerSettings"]');
if (schedulerComponent) {
// Watch for changes to the scheduler's editing state
const checkSchedulerEditingState = () => {
const schedulerData = Alpine.$data(schedulerComponent);
if (schedulerData) {
// If we're on the scheduler tab and creating/editing a task, disable the Save button
const saveButton = document.querySelector('.modal-footer button.btn-ok');
if (saveButton && modalAD.activeTab === 'scheduler' &&
(schedulerData.isCreating || schedulerData.isEditing)) {
saveButton.disabled = true;
saveButton.classList.add('btn-disabled');
} else if (saveButton) {
saveButton.disabled = false;
saveButton.classList.remove('btn-disabled');
}
}
};
// Add a mutation observer to detect changes in the scheduler component's state
const observer = new MutationObserver(checkSchedulerEditingState);
observer.observe(schedulerComponent, { attributes: true, subtree: true, childList: true });
// Also watch for tab changes to update button state
modalAD.$watch('activeTab', checkSchedulerEditingState);
// Initial check
setTimeout(checkSchedulerEditingState, 100);
}
return new Promise(resolve => {
this.resolvePromise = resolve;
});
} catch (e) {
window.toastFetchError("Error getting settings", e)
}
},
async handleButton(buttonId) {
if (buttonId === 'save') {
const modalEl = document.getElementById('settingsModal');
const modalAD = Alpine.$data(modalEl);
try {
resp = await window.sendJsonData("/settings_set", modalAD.settings);
} catch (e) {
window.toastFetchError("Error saving settings", e)
return
}
document.dispatchEvent(new CustomEvent('settings-updated', { detail: resp.settings }));
this.resolvePromise({
status: 'saved',
data: resp.settings
});
} else if (buttonId === 'cancel') {
this.handleCancel();
}
// Stop scheduler polling if it's running
this.stopSchedulerPolling();
// First update our component state
this.isOpen = false;
// Then safely update the store
const store = Alpine.store('root');
if (store) {
// Use a slight delay to avoid reactivity issues
setTimeout(() => {
store.isOpen = false;
}, 10);
}
},
async handleCancel() {
this.resolvePromise({
status: 'cancelled',
data: null
});
// Stop scheduler polling if it's running
this.stopSchedulerPolling();
// First update our component state
this.isOpen = false;
// Then safely update the store
const store = Alpine.store('root');
if (store) {
// Use a slight delay to avoid reactivity issues
setTimeout(() => {
store.isOpen = false;
}, 10);
}
},
// Add a helper method to stop scheduler polling
stopSchedulerPolling() {
// Find the scheduler component and stop polling if it exists
const schedulerElement = document.querySelector('[x-data="schedulerSettings"]');
if (schedulerElement) {
const schedulerData = Alpine.$data(schedulerElement);
if (schedulerData && typeof schedulerData.stopPolling === 'function') {
console.log('Stopping scheduler polling on modal close');
schedulerData.stopPolling();
}
}
},
async handleFieldButton(field) {
console.log(`Button clicked: ${field.id}`);
if (field.id === "mcp_servers_config") {
openModal("settings/mcp/client/mcp-servers.html");
} else if (field.id === "backup_create") {
openModal("settings/backup/backup.html");
} else if (field.id === "backup_restore") {
openModal("settings/backup/restore.html");
} else if (field.id === "show_a2a_connection") {
openModal("settings/external/a2a-connection.html");
} else if (field.id === "external_api_examples") {
openModal("settings/external/api-examples.html");
} else if (field.id === "memory_dashboard") {
openModal("settings/memory/memory-dashboard.html");
}
}
};
// function initSettingsModal() {
// window.openSettings = function () {
// proxy.openModal().then(result => {
// console.log(result); // This will log the result when the modal is closed
// });
// }
// return proxy
// }
// document.addEventListener('alpine:init', () => {
// Alpine.store('settingsModal', initSettingsModal());
// });
document.addEventListener('alpine:init', function () {
// Initialize the root store first to ensure it exists before components try to access it
Alpine.store('root', {
activeTab: localStorage.getItem('settingsActiveTab') || 'agent',
isOpen: false,
toggleSettings() {
this.isOpen = !this.isOpen;
}
});
// Then initialize other Alpine components
Alpine.data('settingsModal', function () {
return {
settingsData: {},
filteredSections: [],
activeTab: 'agent',
isLoading: true,
async init() {
// Initialize with the store value
this.activeTab = Alpine.store('root').activeTab || 'agent';
// Watch store tab changes
this.$watch('$store.root.activeTab', (newTab) => {
if (typeof newTab !== 'undefined') {
this.activeTab = newTab;
localStorage.setItem('settingsActiveTab', newTab);
this.updateFilteredSections();
}
});
// Load settings
await this.fetchSettings();
this.updateFilteredSections();
},
switchTab(tab) {
// Update our component state
this.activeTab = tab;
// Update the store safely
const store = Alpine.store('root');
if (store) {
store.activeTab = tab;
}
},
async fetchSettings() {
try {
this.isLoading = true;
const response = await fetchApi('/api/settings_get', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
}
});
if (response.ok) {
const data = await response.json();
if (data && data.settings) {
this.settingsData = data.settings;
} else {
console.error('Invalid settings data format');
}
} else {
console.error('Failed to fetch settings:', response.statusText);
}
} catch (error) {
console.error('Error fetching settings:', error);
} finally {
this.isLoading = false;
}
},
updateFilteredSections() {
// Filter sections based on active tab
if (this.activeTab === 'agent') {
this.filteredSections = this.settingsData.sections?.filter(section =>
section.tab === 'agent'
) || [];
} else if (this.activeTab === 'external') {
this.filteredSections = this.settingsData.sections?.filter(section =>
section.tab === 'external'
) || [];
} else if (this.activeTab === 'developer') {
this.filteredSections = this.settingsData.sections?.filter(section =>
section.tab === 'developer'
) || [];
} else if (this.activeTab === 'mcp') {
this.filteredSections = this.settingsData.sections?.filter(section =>
section.tab === 'mcp'
) || [];
} else if (this.activeTab === 'backup') {
this.filteredSections = this.settingsData.sections?.filter(section =>
section.tab === 'backup'
) || [];
} else {
// For any other tab, show nothing since those tabs have custom UI
this.filteredSections = [];
}
},
async saveSettings() {
try {
// First validate
for (const section of this.settingsData.sections) {
for (const field of section.fields) {
if (field.required && (!field.value || field.value.trim() === '')) {
showToast(`${field.title} in ${section.title} is required`, 'error');
return;
}
}
}
// Prepare data
const formData = {};
for (const section of this.settingsData.sections) {
for (const field of section.fields) {
formData[field.id] = field.value;
}
}
// Send request
const response = await fetchApi('/api/settings_save', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(formData)
});
if (response.ok) {
showToast('Settings saved successfully', 'success');
// Refresh settings
await this.fetchSettings();
} else {
const errorData = await response.json();
throw new Error(errorData.error || 'Failed to save settings');
}
} catch (error) {
console.error('Error saving settings:', error);
showToast('Failed to save settings: ' + error.message, 'error');
}
},
// Handle special button field actions
handleFieldButton(field) {
if (field.action === 'test_connection') {
this.testConnection(field);
} else if (field.action === 'reveal_token') {
this.revealToken(field);
} else if (field.action === 'generate_token') {
this.generateToken(field);
} else {
console.warn('Unknown button action:', field.action);
}
},
// Test API connection
async testConnection(field) {
try {
field.testResult = 'Testing...';
field.testStatus = 'loading';
// Find the API key field
let apiKey = '';
for (const section of this.settingsData.sections) {
for (const f of section.fields) {
if (f.id === field.target) {
apiKey = f.value;
break;
}
}
}
if (!apiKey) {
throw new Error('API key is required');
}
// Send test request
const response = await fetchApi('/api/test_connection', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
service: field.service,
api_key: apiKey
})
});
const data = await response.json();
if (response.ok && data.success) {
field.testResult = 'Connection successful!';
field.testStatus = 'success';
} else {
throw new Error(data.error || 'Connection failed');
}
} catch (error) {
console.error('Connection test failed:', error);
field.testResult = `Failed: ${error.message}`;
field.testStatus = 'error';
}
},
// Reveal token temporarily
revealToken(field) {
// Find target field
for (const section of this.settingsData.sections) {
for (const f of section.fields) {
if (f.id === field.target) {
// Toggle field type
f.type = f.type === 'password' ? 'text' : 'password';
// Update button text
field.value = f.type === 'password' ? 'Show' : 'Hide';
break;
}
}
}
},
// Generate random token
generateToken(field) {
// Find target field
for (const section of this.settingsData.sections) {
for (const f of section.fields) {
if (f.id === field.target) {
// Generate random token
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
let token = '';
for (let i = 0; i < 32; i++) {
token += chars.charAt(Math.floor(Math.random() * chars.length));
}
// Set field value
f.value = token;
break;
}
}
}
},
closeModal() {
// Stop scheduler polling before closing the modal
const schedulerElement = document.querySelector('[x-data="schedulerSettings"]');
if (schedulerElement) {
const schedulerData = Alpine.$data(schedulerElement);
if (schedulerData && typeof schedulerData.stopPolling === 'function') {
console.log('Stopping scheduler polling on modal close');
schedulerData.stopPolling();
}
}
this.$store.root.isOpen = false;
}
};
});
});
// Show toast notification - now uses new notification system
function showToast(message, type = 'info') {
// Use new frontend notification system based on type
if (window.Alpine && window.Alpine.store && window.Alpine.store('notificationStore')) {
const store = window.Alpine.store('notificationStore');
switch (type.toLowerCase()) {
case 'error':
return store.frontendError(message, "Settings", 5);
case 'success':
return store.frontendInfo(message, "Settings", 3);
case 'warning':
return store.frontendWarning(message, "Settings", 4);
case 'info':
default:
return store.frontendInfo(message, "Settings", 3);
}
} else {
// Fallback if Alpine/store not ready
console.log(`SETTINGS ${type.toUpperCase()}: ${message}`);
return null;
}
}
|