fde2cac9d3
fix(playground): handle legacy localStorage message shape Sanitizes old-format saved messages to prevent 500 on playground load.
135 lines
3.7 KiB
TypeScript
Vendored
135 lines
3.7 KiB
TypeScript
Vendored
/*
|
|
Copyright (C) 2023-2026 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
import { STORAGE_KEYS } from '../constants'
|
|
import type { PlaygroundConfig, ParameterEnabled, Message } from '../types'
|
|
import { sanitizeMessagesOnLoad } from './message-utils'
|
|
|
|
/**
|
|
* Load playground config from localStorage
|
|
*/
|
|
export function loadConfig(): Partial<PlaygroundConfig> {
|
|
try {
|
|
const saved = localStorage.getItem(STORAGE_KEYS.CONFIG)
|
|
if (saved) {
|
|
return JSON.parse(saved)
|
|
}
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.error('Failed to load config:', error)
|
|
}
|
|
return {}
|
|
}
|
|
|
|
/**
|
|
* Save playground config to localStorage
|
|
*/
|
|
export function saveConfig(config: Partial<PlaygroundConfig>): void {
|
|
try {
|
|
localStorage.setItem(STORAGE_KEYS.CONFIG, JSON.stringify(config))
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.error('Failed to save config:', error)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Load parameter enabled state from localStorage
|
|
*/
|
|
export function loadParameterEnabled(): Partial<ParameterEnabled> {
|
|
try {
|
|
const saved = localStorage.getItem(STORAGE_KEYS.PARAMETER_ENABLED)
|
|
if (saved) {
|
|
return JSON.parse(saved)
|
|
}
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.error('Failed to load parameter enabled:', error)
|
|
}
|
|
return {}
|
|
}
|
|
|
|
/**
|
|
* Save parameter enabled state to localStorage
|
|
*/
|
|
export function saveParameterEnabled(
|
|
parameterEnabled: Partial<ParameterEnabled>
|
|
): void {
|
|
try {
|
|
localStorage.setItem(
|
|
STORAGE_KEYS.PARAMETER_ENABLED,
|
|
JSON.stringify(parameterEnabled)
|
|
)
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.error('Failed to save parameter enabled:', error)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Load messages from localStorage
|
|
*/
|
|
export function loadMessages(): Message[] | null {
|
|
try {
|
|
const saved = localStorage.getItem(STORAGE_KEYS.MESSAGES)
|
|
if (saved) {
|
|
const parsed: unknown = JSON.parse(saved)
|
|
if (!Array.isArray(parsed)) {
|
|
localStorage.removeItem(STORAGE_KEYS.MESSAGES)
|
|
return null
|
|
}
|
|
const sanitized = sanitizeMessagesOnLoad(parsed as Message[])
|
|
// Persist sanitized result to avoid re-sanitizing on subsequent loads
|
|
if (sanitized !== parsed) {
|
|
saveMessages(sanitized)
|
|
}
|
|
return sanitized
|
|
}
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.error('Failed to load messages:', error)
|
|
}
|
|
return null
|
|
}
|
|
|
|
/**
|
|
* Save messages to localStorage
|
|
*/
|
|
export function saveMessages(messages: Message[]): void {
|
|
try {
|
|
localStorage.setItem(STORAGE_KEYS.MESSAGES, JSON.stringify(messages))
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.error('Failed to save messages:', error)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Clear all playground data
|
|
*/
|
|
export function clearPlaygroundData(): void {
|
|
try {
|
|
localStorage.removeItem(STORAGE_KEYS.CONFIG)
|
|
localStorage.removeItem(STORAGE_KEYS.PARAMETER_ENABLED)
|
|
localStorage.removeItem(STORAGE_KEYS.MESSAGES)
|
|
} catch (error) {
|
|
// eslint-disable-next-line no-console
|
|
console.error('Failed to clear playground data:', error)
|
|
}
|
|
}
|