mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-28 11:32:22 +00:00
111 lines
2.6 KiB
TypeScript
111 lines
2.6 KiB
TypeScript
export function storedBoolean(key: string, fallback: boolean): boolean {
|
|
try {
|
|
const value = window.localStorage.getItem(key)
|
|
|
|
return value === null ? fallback : value === 'true'
|
|
} catch {
|
|
return fallback
|
|
}
|
|
}
|
|
|
|
export function persistBoolean(key: string, value: boolean) {
|
|
try {
|
|
window.localStorage.setItem(key, String(value))
|
|
} catch {
|
|
// Local storage is a convenience; ignore failures in restricted contexts.
|
|
}
|
|
}
|
|
|
|
export function storedString(key: string): null | string {
|
|
try {
|
|
return window.localStorage.getItem(key)
|
|
} catch {
|
|
return null
|
|
}
|
|
}
|
|
|
|
export function persistString(key: string, value: null | string) {
|
|
try {
|
|
if (value === null) {
|
|
window.localStorage.removeItem(key)
|
|
} else {
|
|
window.localStorage.setItem(key, value)
|
|
}
|
|
} catch {
|
|
// Storage is best-effort.
|
|
}
|
|
}
|
|
|
|
export function storedStringArray(key: string): string[] {
|
|
try {
|
|
const value = window.localStorage.getItem(key)
|
|
|
|
if (!value) {
|
|
return []
|
|
}
|
|
|
|
const parsed = JSON.parse(value)
|
|
|
|
if (!Array.isArray(parsed)) {
|
|
return []
|
|
}
|
|
|
|
return parsed.filter((item): item is string => typeof item === 'string' && item.length > 0)
|
|
} catch {
|
|
return []
|
|
}
|
|
}
|
|
|
|
export function persistStringArray(key: string, value: string[]) {
|
|
try {
|
|
if (value.length === 0) {
|
|
window.localStorage.removeItem(key)
|
|
} else {
|
|
window.localStorage.setItem(key, JSON.stringify(value))
|
|
}
|
|
} catch {
|
|
// Pins are a local preference; restricted storage should not break chat.
|
|
}
|
|
}
|
|
|
|
export function storedStringRecord(key: string): Record<string, string> {
|
|
try {
|
|
const value = window.localStorage.getItem(key)
|
|
|
|
if (!value) {
|
|
return {}
|
|
}
|
|
|
|
const parsed = JSON.parse(value)
|
|
|
|
if (!parsed || typeof parsed !== 'object' || Array.isArray(parsed)) {
|
|
return {}
|
|
}
|
|
|
|
return Object.fromEntries(
|
|
Object.entries(parsed).filter((entry): entry is [string, string] => typeof entry[1] === 'string')
|
|
)
|
|
} catch {
|
|
return {}
|
|
}
|
|
}
|
|
|
|
export function persistStringRecord(key: string, value: Record<string, string>) {
|
|
try {
|
|
window.localStorage.setItem(key, JSON.stringify(value))
|
|
} catch {
|
|
// Local preference; restricted storage should not break the app.
|
|
}
|
|
}
|
|
|
|
export function arraysEqual(left: string[], right: string[]) {
|
|
return left.length === right.length && left.every((item, index) => item === right[index])
|
|
}
|
|
|
|
export function insertUniqueId(ids: string[], id: string, index: number) {
|
|
const next = ids.filter(item => item !== id)
|
|
const boundedIndex = Math.min(Math.max(index, 0), next.length)
|
|
next.splice(boundedIndex, 0, id)
|
|
|
|
return next
|
|
}
|