304fa24389
Safety & Correctness: - Add confirmation dialogs to Stop All, turnOffDevice - i18n confirm dialog (title, yes, no buttons) - Fix duplicate tutorial-overlay ID - Define missing CSS variables (--radius, --text-primary, --hover-bg, --input-bg) - Fix toast z-index conflict with confirm dialog (2500 → 3000) UX Consistency: - Add backdrop-close to test modals - Add device clone feature (only entity without it) - Add sync clocks to command palette - Replace 20+ hardcoded accent colors with CSS vars/color-mix() - Remove dead .badge duplicate from components.css - Make calibration elements keyboard-accessible (div → button) - Add aria-labels to color picker swatches - Fix pattern canvas mobile horizontal scroll - Fix graph editor mobile bottom clipping Polish: - Add empty-state messages to all CardSection instances - Convert 21 px font-sizes to rem - Add scroll-behavior: smooth with reduced-motion override - Add @media print styles - Add :focus-visible to 4 missing interactive elements - Fix settings modal close label (Cancel → Close) - Fix api-key submit button i18n New Features: - Command palette actions: start/stop targets, activate scenes, enable/disable - Bulk start/stop API endpoints (POST /output-targets/bulk/start|stop) - OS notification history viewer modal - Scene "used by" automation reference count on cards - Clock elapsed time display on Streams tab cards - Device "last seen" relative timestamp on cards - Audio device refresh button in edit modal - Composite layer drag-to-reorder - MQTT settings panel (broker config with JSON persistence) - WebSocket log viewer with level filtering and ring buffer - Runtime log-level adjustment (GET/PUT endpoints + settings UI) - Animated value source waveform canvas preview - Gradient custom preset save/delete (localStorage) - API key read-only display in settings - Backup metadata (file size, auto/manual badges) - Server restart button with confirm + overlay - Partial config export/import per entity type - Progressive disclosure in target editor (Advanced section) CSS Architecture: - Define radius scale tokens (--radius-sm/md/lg/pill) - Scope .cs-filter selectors to remove 7 !important overrides - Consolidate duplicate toggle switch (filter-list → settings-toggle) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
229 lines
16 KiB
HTML
229 lines
16 KiB
HTML
<!-- Settings Modal -->
|
|
<div id="settings-modal" class="modal" role="dialog" aria-modal="true" aria-labelledby="settings-modal-title">
|
|
<div class="modal-content" style="max-width: 450px;">
|
|
<div class="modal-header">
|
|
<h2 id="settings-modal-title" data-i18n="settings.title">Settings</h2>
|
|
<button class="modal-close-btn" onclick="closeSettingsModal()" title="Close" data-i18n-aria-label="aria.close">✕</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<!-- API Keys section (read-only) -->
|
|
<div class="form-group">
|
|
<div class="label-row">
|
|
<label data-i18n="settings.api_keys.label">API Keys</label>
|
|
<button type="button" class="hint-toggle" onclick="toggleHint(this)" title="?">?</button>
|
|
</div>
|
|
<small class="input-hint" style="display:none" data-i18n="settings.api_keys.hint">API keys are defined in the server config file (config.yaml). Restart the server after editing the file to apply changes.</small>
|
|
<div id="settings-api-keys-list" style="font-size:0.85rem;"></div>
|
|
</div>
|
|
|
|
<!-- Backup section -->
|
|
<div class="form-group">
|
|
<div class="label-row">
|
|
<label data-i18n="settings.backup.label">Backup Configuration</label>
|
|
<button type="button" class="hint-toggle" onclick="toggleHint(this)" title="?">?</button>
|
|
</div>
|
|
<small class="input-hint" style="display:none" data-i18n="settings.backup.hint">Download all configuration (devices, targets, streams, templates, automations) as a single JSON file.</small>
|
|
<button class="btn btn-primary" onclick="downloadBackup()" style="width:100%" data-i18n="settings.backup.button">Download Backup</button>
|
|
</div>
|
|
|
|
<!-- Restore section -->
|
|
<div class="form-group">
|
|
<div class="label-row">
|
|
<label data-i18n="settings.restore.label">Restore Configuration</label>
|
|
<button type="button" class="hint-toggle" onclick="toggleHint(this)" title="?">?</button>
|
|
</div>
|
|
<small class="input-hint" style="display:none" data-i18n="settings.restore.hint">Upload a previously downloaded backup file to replace all configuration. The server will restart automatically.</small>
|
|
<input type="file" id="settings-restore-input" accept=".json" style="display:none" onchange="handleRestoreFileSelected(this)">
|
|
<button class="btn btn-danger" onclick="document.getElementById('settings-restore-input').click()" style="width:100%" data-i18n="settings.restore.button">Restore from Backup</button>
|
|
</div>
|
|
|
|
<!-- Partial Export/Import section -->
|
|
<div class="form-group">
|
|
<div class="label-row">
|
|
<label data-i18n="settings.partial.label">Partial Export / Import</label>
|
|
<button type="button" class="hint-toggle" onclick="toggleHint(this)" title="?">?</button>
|
|
</div>
|
|
<small class="input-hint" style="display:none" data-i18n="settings.partial.hint">Export or import a single entity type. Import replaces or merges existing data and restarts the server.</small>
|
|
|
|
<div style="display:flex;gap:0.5rem;margin-bottom:0.5rem;">
|
|
<select id="settings-partial-store" style="flex:1">
|
|
<option value="devices" data-i18n="settings.partial.store.devices">Devices</option>
|
|
<option value="output_targets" data-i18n="settings.partial.store.output_targets">LED Targets</option>
|
|
<option value="color_strip_sources" data-i18n="settings.partial.store.color_strip_sources">Color Strips</option>
|
|
<option value="picture_sources" data-i18n="settings.partial.store.picture_sources">Picture Sources</option>
|
|
<option value="audio_sources" data-i18n="settings.partial.store.audio_sources">Audio Sources</option>
|
|
<option value="audio_templates" data-i18n="settings.partial.store.audio_templates">Audio Templates</option>
|
|
<option value="capture_templates" data-i18n="settings.partial.store.capture_templates">Capture Templates</option>
|
|
<option value="postprocessing_templates" data-i18n="settings.partial.store.postprocessing_templates">Post-processing Templates</option>
|
|
<option value="color_strip_processing_templates" data-i18n="settings.partial.store.color_strip_processing_templates">CSS Processing Templates</option>
|
|
<option value="pattern_templates" data-i18n="settings.partial.store.pattern_templates">Pattern Templates</option>
|
|
<option value="value_sources" data-i18n="settings.partial.store.value_sources">Value Sources</option>
|
|
<option value="sync_clocks" data-i18n="settings.partial.store.sync_clocks">Sync Clocks</option>
|
|
<option value="automations" data-i18n="settings.partial.store.automations">Automations</option>
|
|
<option value="scene_presets" data-i18n="settings.partial.store.scene_presets">Scene Presets</option>
|
|
</select>
|
|
<button class="btn btn-secondary" onclick="downloadPartialExport()" data-i18n="settings.partial.export_button">Export</button>
|
|
</div>
|
|
|
|
<div style="display:flex;align-items:center;gap:0.5rem;margin-bottom:0.5rem;">
|
|
<input type="checkbox" id="settings-partial-merge">
|
|
<label for="settings-partial-merge" style="margin:0;font-size:0.85rem;" data-i18n="settings.partial.merge_label">Merge (add/overwrite, keep existing)</label>
|
|
</div>
|
|
|
|
<input type="file" id="settings-partial-import-input" accept=".json" style="display:none" onchange="handlePartialImportFileSelected(this)">
|
|
<button class="btn btn-secondary" onclick="document.getElementById('settings-partial-import-input').click()" style="width:100%" data-i18n="settings.partial.import_button">Import from File</button>
|
|
</div>
|
|
|
|
<!-- Auto-Backup section -->
|
|
<div class="form-group">
|
|
<div class="label-row">
|
|
<label data-i18n="settings.auto_backup.label">Auto-Backup</label>
|
|
<button type="button" class="hint-toggle" onclick="toggleHint(this)" title="?">?</button>
|
|
</div>
|
|
<small class="input-hint" style="display:none" data-i18n="settings.auto_backup.hint">Automatically create periodic backups of all configuration. Old backups are pruned when the maximum count is reached.</small>
|
|
|
|
<div style="display:flex; align-items:center; gap:0.5rem; margin-bottom:0.5rem;">
|
|
<input type="checkbox" id="auto-backup-enabled">
|
|
<label for="auto-backup-enabled" style="margin:0" data-i18n="settings.auto_backup.enable">Enable auto-backup</label>
|
|
</div>
|
|
|
|
<div style="display:flex; gap:0.5rem; margin-bottom:0.5rem;">
|
|
<div style="flex:1">
|
|
<label for="auto-backup-interval" style="font-size:0.85rem" data-i18n="settings.auto_backup.interval_label">Interval</label>
|
|
<select id="auto-backup-interval" style="width:100%">
|
|
<option value="1">1h</option>
|
|
<option value="6">6h</option>
|
|
<option value="12">12h</option>
|
|
<option value="24">24h</option>
|
|
<option value="48">48h</option>
|
|
<option value="168">7d</option>
|
|
</select>
|
|
</div>
|
|
<div style="flex:1">
|
|
<label for="auto-backup-max" style="font-size:0.85rem" data-i18n="settings.auto_backup.max_label">Max backups</label>
|
|
<input type="number" id="auto-backup-max" min="1" max="100" value="10" style="width:100%">
|
|
</div>
|
|
</div>
|
|
|
|
<button class="btn btn-primary" onclick="saveAutoBackupSettings()" style="width:100%" data-i18n="settings.auto_backup.save">Save Settings</button>
|
|
|
|
<div id="auto-backup-status" style="font-size:0.85rem; color:var(--text-muted); margin-top:0.5rem;"></div>
|
|
</div>
|
|
|
|
<!-- Saved Backups section -->
|
|
<div class="form-group">
|
|
<div class="label-row">
|
|
<label data-i18n="settings.saved_backups.label">Saved Backups</label>
|
|
<button type="button" class="hint-toggle" onclick="toggleHint(this)" title="?">?</button>
|
|
</div>
|
|
<small class="input-hint" style="display:none" data-i18n="settings.saved_backups.hint">Auto-backup files stored on the server. Download to save locally, or delete to free space.</small>
|
|
<div id="saved-backups-list"></div>
|
|
</div>
|
|
|
|
<!-- MQTT section -->
|
|
<div class="form-group">
|
|
<div class="label-row">
|
|
<label data-i18n="settings.mqtt.label">MQTT</label>
|
|
<button type="button" class="hint-toggle" onclick="toggleHint(this)" title="?">?</button>
|
|
</div>
|
|
<small class="input-hint" style="display:none" data-i18n="settings.mqtt.hint">Configure MQTT broker connection for automation conditions and triggers.</small>
|
|
|
|
<div style="display:flex; align-items:center; gap:0.5rem; margin-bottom:0.75rem;">
|
|
<input type="checkbox" id="mqtt-enabled">
|
|
<label for="mqtt-enabled" style="margin:0" data-i18n="settings.mqtt.enabled">Enable MQTT</label>
|
|
</div>
|
|
|
|
<div style="display:flex; gap:0.5rem; margin-bottom:0.5rem;">
|
|
<div style="flex:1">
|
|
<label for="mqtt-host" style="font-size:0.85rem" data-i18n="settings.mqtt.host_label">Broker Host</label>
|
|
<input type="text" id="mqtt-host" placeholder="localhost" style="width:100%">
|
|
</div>
|
|
<div style="width:90px">
|
|
<label for="mqtt-port" style="font-size:0.85rem" data-i18n="settings.mqtt.port_label">Port</label>
|
|
<input type="number" id="mqtt-port" min="1" max="65535" value="1883" style="width:100%">
|
|
</div>
|
|
</div>
|
|
|
|
<div style="display:flex; gap:0.5rem; margin-bottom:0.5rem;">
|
|
<div style="flex:1">
|
|
<label for="mqtt-username" style="font-size:0.85rem" data-i18n="settings.mqtt.username_label">Username</label>
|
|
<input type="text" id="mqtt-username" placeholder="" autocomplete="off" style="width:100%">
|
|
</div>
|
|
<div style="flex:1">
|
|
<label for="mqtt-password" style="font-size:0.85rem" data-i18n="settings.mqtt.password_label">Password</label>
|
|
<input type="password" id="mqtt-password" placeholder="" autocomplete="new-password" style="width:100%">
|
|
<small id="mqtt-password-hint" style="display:none;font-size:0.75rem;color:var(--text-muted)" data-i18n="settings.mqtt.password_set_hint">Password is set — leave blank to keep</small>
|
|
</div>
|
|
</div>
|
|
|
|
<div style="display:flex; gap:0.5rem; margin-bottom:0.75rem;">
|
|
<div style="flex:1">
|
|
<label for="mqtt-client-id" style="font-size:0.85rem" data-i18n="settings.mqtt.client_id_label">Client ID</label>
|
|
<input type="text" id="mqtt-client-id" placeholder="ledgrab" style="width:100%">
|
|
</div>
|
|
<div style="flex:1">
|
|
<label for="mqtt-base-topic" style="font-size:0.85rem" data-i18n="settings.mqtt.base_topic_label">Base Topic</label>
|
|
<input type="text" id="mqtt-base-topic" placeholder="ledgrab" style="width:100%">
|
|
</div>
|
|
</div>
|
|
|
|
<button class="btn btn-primary" onclick="saveMqttSettings()" style="width:100%" data-i18n="settings.mqtt.save">Save MQTT Settings</button>
|
|
</div>
|
|
|
|
<!-- Server Logs section -->
|
|
<div class="form-group">
|
|
<div class="label-row">
|
|
<label data-i18n="settings.logs.label">Server Logs</label>
|
|
<button type="button" class="hint-toggle" onclick="toggleHint(this)" title="?">?</button>
|
|
</div>
|
|
<small class="input-hint" style="display:none" data-i18n="settings.logs.hint">Stream live server log output. Use the filter to show only relevant log levels.</small>
|
|
|
|
<div style="display:flex; gap:0.5rem; align-items:center; margin-bottom:0.5rem;">
|
|
<button id="log-viewer-connect-btn" class="btn btn-secondary" onclick="connectLogViewer()" data-i18n="settings.logs.connect">Connect</button>
|
|
<button class="btn btn-secondary" onclick="clearLogViewer()" data-i18n="settings.logs.clear">Clear</button>
|
|
<select id="log-viewer-filter" onchange="applyLogFilter()" style="flex:1; font-size:0.85rem;">
|
|
<option value="all" data-i18n="settings.logs.filter.all">All</option>
|
|
<option value="INFO" data-i18n="settings.logs.filter.info">Info+</option>
|
|
<option value="WARNING" data-i18n="settings.logs.filter.warning">Warning+</option>
|
|
<option value="ERROR" data-i18n="settings.logs.filter.error">Error only</option>
|
|
</select>
|
|
</div>
|
|
|
|
<pre id="log-viewer-output" class="log-viewer-output"></pre>
|
|
</div>
|
|
|
|
<!-- Log Level section -->
|
|
<div class="form-group">
|
|
<div class="label-row">
|
|
<label data-i18n="settings.log_level.label">Log Level</label>
|
|
<button type="button" class="hint-toggle" onclick="toggleHint(this)" title="?">?</button>
|
|
</div>
|
|
<small class="input-hint" style="display:none" data-i18n="settings.log_level.hint">Change the server log verbosity at runtime. DEBUG shows the most detail; CRITICAL shows only fatal errors.</small>
|
|
<div style="display:flex;gap:0.5rem;">
|
|
<select id="settings-log-level" style="flex:1">
|
|
<option value="DEBUG">DEBUG</option>
|
|
<option value="INFO">INFO</option>
|
|
<option value="WARNING">WARNING</option>
|
|
<option value="ERROR">ERROR</option>
|
|
<option value="CRITICAL">CRITICAL</option>
|
|
</select>
|
|
<button class="btn btn-primary" onclick="setLogLevel()" data-i18n="settings.log_level.save">Apply</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Restart section -->
|
|
<div class="form-group">
|
|
<div class="label-row">
|
|
<label data-i18n="settings.restart_server">Restart Server</label>
|
|
</div>
|
|
<button class="btn btn-secondary" onclick="restartServer()" style="width:100%" data-i18n="settings.restart_server">Restart Server</button>
|
|
</div>
|
|
|
|
<div id="settings-error" class="error-message" style="display:none;"></div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn btn-icon btn-secondary" onclick="closeSettingsModal()" title="Close" data-i18n-title="settings.button.close" data-i18n-aria-label="aria.close">✕</button>
|
|
</div>
|
|
</div>
|
|
</div>
|