@json-to-office/jto 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. package/README.md +20 -5
  2. package/dist/cli.js +1 -1
  3. package/dist/client/assets/{HomePage-CGK1cPFp.js → HomePage-D9PVR0H8.js} +3 -3
  4. package/dist/client/assets/{HomePage-CGK1cPFp.js.map → HomePage-D9PVR0H8.js.map} +1 -1
  5. package/dist/client/assets/{JsonEditorPage-DKaFqYpM.js → JsonEditorPage-bCBt1A49.js} +3 -3
  6. package/dist/client/assets/{JsonEditorPage-DKaFqYpM.js.map → JsonEditorPage-bCBt1A49.js.map} +1 -1
  7. package/dist/client/assets/{button-B5W5GwSc.js → button-CMkwEplC.js} +2 -2
  8. package/dist/client/assets/{button-B5W5GwSc.js.map → button-CMkwEplC.js.map} +1 -1
  9. package/dist/client/assets/{editor-CH_tiHyn.js → editor-CtwF-qwA.js} +2 -2
  10. package/dist/client/assets/{editor-CH_tiHyn.js.map → editor-CtwF-qwA.js.map} +1 -1
  11. package/dist/client/assets/{editor-monaco-json-8I2epq6g.js → editor-monaco-json-DHRbpQ-v.js} +2 -2
  12. package/dist/client/assets/{editor-monaco-json-8I2epq6g.js.map → editor-monaco-json-DHRbpQ-v.js.map} +1 -1
  13. package/dist/client/assets/{index-DactvF4v.js → index-CGQAncgl.js} +3 -3
  14. package/dist/client/assets/index-CGQAncgl.js.map +1 -0
  15. package/dist/client/assets/{preview-CJlTPgks.js → preview-38guLS86.js} +2 -2
  16. package/dist/client/assets/{preview-CJlTPgks.js.map → preview-38guLS86.js.map} +1 -1
  17. package/dist/client/assets/{settings-store-provider-DuCKtwqs.js → settings-store-provider-BEzje7_o.js} +2 -2
  18. package/dist/client/assets/{settings-store-provider-DuCKtwqs.js.map → settings-store-provider-BEzje7_o.js.map} +1 -1
  19. package/dist/client/index.html +1 -1
  20. package/package.json +6 -6
  21. package/dist/client/assets/index-DactvF4v.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"settings-store-provider-DuCKtwqs.js","sources":["../../../../../node_modules/.pnpm/idb-keyval@6.2.2/node_modules/idb-keyval/dist/index.js","../../../src/client/lib/idb-storage.ts","../../../src/client/store/documents-store.ts","../../../src/client/store/documents-store-provider.tsx","../../../src/client/lib/theme-validation.ts","../../../src/client/utils/theme-change-emitter.ts","../../../src/client/store/themes-store.ts","../../../src/client/store/themes-store-provider.tsx","../../../src/client/store/output-store.ts","../../../src/client/store/output-store-provider.tsx","../../../src/client/store/settings-store.ts","../../../src/client/store/settings-store-provider.tsx"],"sourcesContent":["function promisifyRequest(request) {\n return new Promise((resolve, reject) => {\n // @ts-ignore - file size hacks\n request.oncomplete = request.onsuccess = () => resolve(request.result);\n // @ts-ignore - file size hacks\n request.onabort = request.onerror = () => reject(request.error);\n });\n}\nfunction createStore(dbName, storeName) {\n let dbp;\n const getDB = () => {\n if (dbp)\n return dbp;\n const request = indexedDB.open(dbName);\n request.onupgradeneeded = () => request.result.createObjectStore(storeName);\n dbp = promisifyRequest(request);\n dbp.then((db) => {\n // It seems like Safari sometimes likes to just close the connection.\n // It's supposed to fire this event when that happens. Let's hope it does!\n db.onclose = () => (dbp = undefined);\n }, () => { });\n return dbp;\n };\n return (txMode, callback) => getDB().then((db) => callback(db.transaction(storeName, txMode).objectStore(storeName)));\n}\nlet defaultGetStoreFunc;\nfunction defaultGetStore() {\n if (!defaultGetStoreFunc) {\n defaultGetStoreFunc = createStore('keyval-store', 'keyval');\n }\n return defaultGetStoreFunc;\n}\n/**\n * Get a value by its key.\n *\n * @param key\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction get(key, customStore = defaultGetStore()) {\n return customStore('readonly', (store) => promisifyRequest(store.get(key)));\n}\n/**\n * Set a value with a key.\n *\n * @param key\n * @param value\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction set(key, value, customStore = defaultGetStore()) {\n return customStore('readwrite', (store) => {\n store.put(value, key);\n return promisifyRequest(store.transaction);\n });\n}\n/**\n * Set multiple values at once. This is faster than calling set() multiple times.\n * It's also atomic – if one of the pairs can't be added, none will be added.\n *\n * @param entries Array of entries, where each entry is an array of `[key, value]`.\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction setMany(entries, customStore = defaultGetStore()) {\n return customStore('readwrite', (store) => {\n entries.forEach((entry) => store.put(entry[1], entry[0]));\n return promisifyRequest(store.transaction);\n });\n}\n/**\n * Get multiple values by their keys\n *\n * @param keys\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction getMany(keys, customStore = defaultGetStore()) {\n return customStore('readonly', (store) => Promise.all(keys.map((key) => promisifyRequest(store.get(key)))));\n}\n/**\n * Update a value. This lets you see the old value and update it as an atomic operation.\n *\n * @param key\n * @param updater A callback that takes the old value and returns a new value.\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction update(key, updater, customStore = defaultGetStore()) {\n return customStore('readwrite', (store) => \n // Need to create the promise manually.\n // If I try to chain promises, the transaction closes in browsers\n // that use a promise polyfill (IE10/11).\n new Promise((resolve, reject) => {\n store.get(key).onsuccess = function () {\n try {\n store.put(updater(this.result), key);\n resolve(promisifyRequest(store.transaction));\n }\n catch (err) {\n reject(err);\n }\n };\n }));\n}\n/**\n * Delete a particular key from the store.\n *\n * @param key\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction del(key, customStore = defaultGetStore()) {\n return customStore('readwrite', (store) => {\n store.delete(key);\n return promisifyRequest(store.transaction);\n });\n}\n/**\n * Delete multiple keys at once.\n *\n * @param keys List of keys to delete.\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction delMany(keys, customStore = defaultGetStore()) {\n return customStore('readwrite', (store) => {\n keys.forEach((key) => store.delete(key));\n return promisifyRequest(store.transaction);\n });\n}\n/**\n * Clear all values in the store.\n *\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction clear(customStore = defaultGetStore()) {\n return customStore('readwrite', (store) => {\n store.clear();\n return promisifyRequest(store.transaction);\n });\n}\nfunction eachCursor(store, callback) {\n store.openCursor().onsuccess = function () {\n if (!this.result)\n return;\n callback(this.result);\n this.result.continue();\n };\n return promisifyRequest(store.transaction);\n}\n/**\n * Get all keys in the store.\n *\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction keys(customStore = defaultGetStore()) {\n return customStore('readonly', (store) => {\n // Fast path for modern browsers\n if (store.getAllKeys) {\n return promisifyRequest(store.getAllKeys());\n }\n const items = [];\n return eachCursor(store, (cursor) => items.push(cursor.key)).then(() => items);\n });\n}\n/**\n * Get all values in the store.\n *\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction values(customStore = defaultGetStore()) {\n return customStore('readonly', (store) => {\n // Fast path for modern browsers\n if (store.getAll) {\n return promisifyRequest(store.getAll());\n }\n const items = [];\n return eachCursor(store, (cursor) => items.push(cursor.value)).then(() => items);\n });\n}\n/**\n * Get all entries in the store. Each entry is an array of `[key, value]`.\n *\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction entries(customStore = defaultGetStore()) {\n return customStore('readonly', (store) => {\n // Fast path for modern browsers\n // (although, hopefully we'll get a simpler path some day)\n if (store.getAll && store.getAllKeys) {\n return Promise.all([\n promisifyRequest(store.getAllKeys()),\n promisifyRequest(store.getAll()),\n ]).then(([keys, values]) => keys.map((key, i) => [key, values[i]]));\n }\n const items = [];\n return customStore('readonly', (store) => eachCursor(store, (cursor) => items.push([cursor.key, cursor.value])).then(() => items));\n });\n}\n\nexport { clear, createStore, del, delMany, entries, get, getMany, keys, promisifyRequest, set, setMany, update, values };\n","/**\n * IndexedDB storage adapter for Zustand persist middleware using idb-keyval.\n */\nimport { get, set, del } from 'idb-keyval';\nimport type { StateStorage } from 'zustand/middleware';\n\nexport const idbStorage: StateStorage = {\n getItem: async (name: string): Promise<string | null> => {\n return (await get(name)) ?? null;\n },\n setItem: async (name: string, value: string): Promise<void> => {\n await set(name, value);\n },\n removeItem: async (name: string): Promise<void> => {\n await del(name);\n },\n};\n","import { persist, devtools, createJSONStorage } from 'zustand/middleware';\nimport { createStore } from 'zustand/vanilla';\nimport type { TextFile } from '../lib/types';\nimport { idbStorage } from '../lib/idb-storage';\n\nconst MAX_OPEN_TABS = 3;\n\nexport type DocumentType = 'application/json+report' | 'application/json+theme';\n\nexport type DocumentsState = {\n documents: TextFile[];\n openTabs: string[];\n activeTab: string;\n buildErrors: { [key: string]: string };\n documentTypes: { [key: string]: DocumentType };\n pendingDiffs: { [key: string]: { original: string; modified: string; applyId?: string } };\n acceptedApplyIds: string[];\n};\n\nexport type DocumentsActions = {\n createDocument: (name: string, text: string) => void;\n deleteDocument: (name: string) => void;\n saveDocument: (name: string, text: string) => void;\n renameDocument: (oldName: string, newName: string) => void;\n openDocument: (name: string) => void;\n closeDocument: (name: string) => void;\n setActiveTab: (name: string) => void;\n setBuildError: (name: string, buildError?: string) => void;\n setPendingDiff: (name: string, original: string, modified: string, applyId?: string) => void;\n clearPendingDiff: (name: string, accepted?: boolean) => void;\n};\n\nexport type DocumentsStore = DocumentsState & DocumentsActions;\n\nexport const initDocumentsStore = (): DocumentsState => {\n return {\n documents: [],\n openTabs: [],\n activeTab: '',\n buildErrors: {},\n documentTypes: {},\n pendingDiffs: {},\n acceptedApplyIds: [],\n };\n};\n\nexport const defaultInitDocumentsState: DocumentsState = {\n ...initDocumentsStore(),\n};\n\nexport const createDocumentsStore = (\n initState: DocumentsState = defaultInitDocumentsState\n) => {\n return createStore<DocumentsStore>()(\n devtools(\n persist(\n (set) => ({\n ...initState,\n createDocument: (name, text) =>\n set((state) => {\n const docIndex = state.documents.findIndex(\n (doc) => doc.name === name\n );\n if (docIndex === -1) {\n // if the document does not exist\n // Determine document type based on file name and content\n let docType: DocumentType = 'application/json+report';\n if (\n name.toLowerCase().includes('theme') ||\n name.toLowerCase().includes('.theme.')\n ) {\n docType = 'application/json+theme';\n } else {\n // Try to parse JSON to check if it's a theme\n try {\n const parsed = JSON.parse(text);\n if (parsed.colors && parsed.fonts && parsed.styles) {\n docType = 'application/json+theme';\n }\n } catch {\n // If not valid JSON, default to report\n }\n }\n\n const newDoc = {\n name,\n type: 'application/json',\n text,\n mtime: new Date(),\n ctime: new Date(),\n atime: new Date(),\n };\n return {\n documents: [...state.documents, newDoc],\n documentTypes: { ...state.documentTypes, [name]: docType },\n };\n }\n return state;\n }),\n deleteDocument: (name) =>\n set((state) => {\n const newDocumentTypes = { ...state.documentTypes };\n delete newDocumentTypes[name];\n return {\n documents: state.documents.filter((doc) => doc.name !== name),\n documentTypes: newDocumentTypes,\n pendingDiffs: Object.fromEntries(\n Object.entries(state.pendingDiffs).filter(([k]) => k !== name)\n ),\n };\n }),\n saveDocument: (name, text) =>\n set((state) => {\n const docIndex = state.documents.findIndex(\n (doc) => doc.name === name\n );\n if (docIndex === -1) return state;\n // Skip update if text is unchanged to avoid spurious re-renders\n if (state.documents[docIndex].text === text) return state;\n const documents = state.documents.map((doc, i) =>\n i === docIndex ? { ...doc, text, mtime: new Date() } : doc\n );\n return { documents };\n }),\n renameDocument: (oldName, newName) =>\n set((state) => {\n const docIndex = state.documents.findIndex(\n (doc) => doc.name === oldName\n );\n if (docIndex === -1) return state;\n const documents = state.documents.map((doc, i) =>\n i === docIndex ? { ...doc, name: newName, ctime: new Date() } : doc\n );\n const docType = state.documentTypes[oldName];\n if (docType) {\n const newDocumentTypes = { ...state.documentTypes };\n delete newDocumentTypes[oldName];\n newDocumentTypes[newName] = docType;\n return { documents, documentTypes: newDocumentTypes };\n }\n return { documents };\n }),\n openDocument: (name) =>\n set((state) => {\n const docIndex = state.documents.findIndex(\n (doc) => doc.name === name\n );\n if (docIndex === -1) return state;\n const documents = state.documents.map((doc, i) =>\n i === docIndex ? { ...doc, atime: new Date() } : doc\n );\n let openTabs = state.openTabs;\n if (!openTabs.includes(name)) {\n openTabs = openTabs.length >= MAX_OPEN_TABS\n ? [...openTabs.slice(1), name]\n : [...openTabs, name];\n }\n return { documents, openTabs, activeTab: name };\n }),\n closeDocument: (name) =>\n set((state) => {\n const index = state.openTabs.indexOf(name);\n if (index === -1) return state;\n const openTabs = state.openTabs.filter((tab) => tab !== name);\n let activeTab = state.activeTab;\n if (activeTab === name) {\n if (openTabs.length) {\n activeTab = index === 0 ? openTabs[0] : openTabs[index - 1];\n } else {\n activeTab = '';\n }\n }\n return { openTabs, activeTab };\n }),\n setActiveTab: (name) => set({ activeTab: name }),\n setBuildError: (name, buildError) =>\n set((state) => {\n if (state.buildErrors[name] === buildError) return state;\n const buildErrors = { ...state.buildErrors };\n if (buildError) buildErrors[name] = buildError;\n else delete buildErrors[name];\n return { buildErrors };\n }),\n setPendingDiff: (name, original, modified, applyId) =>\n set((state) => {\n return {\n pendingDiffs: {\n ...state.pendingDiffs,\n [name]: { original, modified, applyId },\n },\n };\n }),\n clearPendingDiff: (name, accepted) =>\n set((state) => {\n const diff = state.pendingDiffs[name];\n if (!diff) return state;\n const next = { ...state.pendingDiffs };\n delete next[name];\n const ids = state.acceptedApplyIds || [];\n const acceptedApplyIds =\n accepted && diff.applyId\n ? [...ids.slice(-(200 - 1)), diff.applyId]\n : ids;\n return { pendingDiffs: next, acceptedApplyIds };\n }),\n }),\n {\n name: 'documents-storage',\n version: 1,\n storage: createJSONStorage(() => idbStorage),\n partialize: (state) => ({\n documents: state.documents,\n openTabs: state.openTabs,\n activeTab: state.activeTab,\n documentTypes: state.documentTypes,\n // buildErrors + pendingDiffs + acceptedApplyIds excluded — transient UI state\n }),\n onRehydrateStorage: () => (state) => {\n if (state?.documents) {\n for (const doc of state.documents) {\n for (const key of ['mtime', 'ctime', 'atime'] as const) {\n if (doc[key] && typeof doc[key] === 'string') {\n (doc as Record<string, unknown>)[key] = new Date(doc[key] as unknown as string);\n }\n }\n }\n }\n },\n }\n )\n )\n );\n};\n","import { type ReactNode, createContext, useRef, useContext } from 'react';\nimport { useStore } from 'zustand';\nimport {\n type DocumentsStore,\n createDocumentsStore,\n initDocumentsStore,\n} from './documents-store';\n\nexport type DocumentsStoreApi = ReturnType<typeof createDocumentsStore>;\n\nexport const DocumentsStoreContext = createContext<\n DocumentsStoreApi | undefined\n>(undefined);\n\nexport interface DocumentsStoreProviderProps {\n children: ReactNode;\n}\n\nexport const DocumentsStoreProvider = ({\n children,\n}: DocumentsStoreProviderProps) => {\n const storeRef = useRef<DocumentsStoreApi | null>(null);\n if (!storeRef.current) {\n storeRef.current = createDocumentsStore(initDocumentsStore());\n }\n\n return (\n <DocumentsStoreContext.Provider value={storeRef.current}>\n {children}\n </DocumentsStoreContext.Provider>\n );\n};\n\nexport const useDocumentsStore = <T,>(\n selector: (store: DocumentsStore) => T\n): T => {\n const documentsStoreContext = useContext(DocumentsStoreContext);\n\n if (!documentsStoreContext) {\n throw new Error(\n 'useDocumentsStore must be used within DocumentsStoreProvider'\n );\n }\n\n return useStore(documentsStoreContext, selector);\n};\n","export interface ThemeValidationError {\n message: string;\n line?: number;\n column?: number;\n path?: string;\n}\n\nexport interface ThemeValidationResult {\n valid: boolean;\n errors?: ThemeValidationError[];\n}\n\n/**\n * Validates a theme JSON string - checks structure without requiring format-specific schemas\n */\nexport function validateThemeJson(jsonString: string): ThemeValidationResult {\n try {\n const parsed = JSON.parse(jsonString);\n\n if (!parsed || typeof parsed !== 'object') {\n return {\n valid: false,\n errors: [{ message: 'Theme must be a JSON object' }],\n };\n }\n\n if (typeof parsed.name !== 'string' || !parsed.name.trim()) {\n return {\n valid: false,\n errors: [{ message: 'Theme must have a non-empty \"name\" property' }],\n };\n }\n\n return { valid: true };\n } catch (e) {\n return {\n valid: false,\n errors: [\n {\n message:\n e instanceof SyntaxError\n ? `Invalid JSON: ${e.message}`\n : 'Failed to parse theme JSON',\n },\n ],\n };\n }\n}\n\n/**\n * Gets theme name from a theme JSON object\n */\nexport function getThemeName(themeJson: unknown): string | null {\n try {\n if (\n themeJson &&\n typeof themeJson === 'object' &&\n 'name' in (themeJson as any) &&\n typeof (themeJson as any).name === 'string'\n ) {\n return (themeJson as any).name as string;\n }\n return null;\n } catch {\n return null;\n }\n}\n","// Theme change event emitter for coordinating theme updates across components\nexport interface ThemeChangeEvent {\n themeName: string;\n timestamp: number;\n changeType: 'create' | 'update' | 'delete';\n}\n\nexport class ThemeChangeEmitter extends EventTarget {\n private static instance: ThemeChangeEmitter;\n\n private constructor() {\n super();\n }\n\n static getInstance(): ThemeChangeEmitter {\n if (!ThemeChangeEmitter.instance) {\n ThemeChangeEmitter.instance = new ThemeChangeEmitter();\n }\n return ThemeChangeEmitter.instance;\n }\n\n emitThemeChange(event: ThemeChangeEvent): void {\n this.dispatchEvent(new CustomEvent('themechange', { detail: event }));\n }\n\n onThemeChange(callback: (event: ThemeChangeEvent) => void): () => void {\n const handler = (e: Event) => {\n const customEvent = e as CustomEvent<ThemeChangeEvent>;\n callback(customEvent.detail);\n };\n\n this.addEventListener('themechange', handler);\n\n // Track listener count\n (this as any)._listenerCount = ((this as any)._listenerCount || 0) + 1;\n\n // Return unsubscribe function\n return () => {\n this.removeEventListener('themechange', handler);\n (this as any)._listenerCount = Math.max(\n 0,\n ((this as any)._listenerCount || 1) - 1\n );\n };\n }\n}\n\nexport const themeChangeEmitter = ThemeChangeEmitter.getInstance();\n","import { persist, devtools, createJSONStorage } from 'zustand/middleware';\nimport { createStore } from 'zustand/vanilla';\nimport type { ThemeConfigJson } from '@json-to-office/shared-pptx';\nimport { validateThemeJson, getThemeName } from '../lib/theme-validation';\nimport { themeChangeEmitter } from '../utils/theme-change-emitter';\nimport { idbStorage } from '../lib/idb-storage';\n\nexport type CustomTheme = {\n name: string;\n content: string;\n parsed?: ThemeConfigJson;\n valid: boolean;\n lastModified: Date;\n};\n\nexport type ThemesState = {\n customThemes: { [name: string]: CustomTheme };\n};\n\nexport type ThemesActions = {\n updateTheme: (documentName: string, content: string) => void;\n removeTheme: (documentName: string) => void;\n getTheme: (themeName: string) => ThemeConfigJson | null;\n getAllThemeNames: () => string[];\n isThemeValid: (themeName: string) => boolean;\n};\n\nexport type ThemesStore = ThemesState & ThemesActions;\n\nexport const initThemesStore = (): ThemesState => {\n return {\n customThemes: {},\n };\n};\n\nexport const defaultInitThemesState: ThemesState = {\n ...initThemesStore(),\n};\n\nexport const createThemesStore = (\n initState: ThemesState = defaultInitThemesState\n) => {\n return createStore<ThemesStore>()(\n devtools(\n persist(\n (set, get) => ({\n ...initState,\n\n updateTheme: (documentName, content) =>\n set((state) => {\n const validation = validateThemeJson(content);\n\n let parsed: ThemeConfigJson | undefined;\n let themeName = documentName;\n\n if (validation.valid) {\n try {\n const parsedContent = JSON.parse(content);\n parsed = parsedContent;\n const extractedName = getThemeName(parsedContent);\n if (extractedName) {\n themeName = extractedName;\n }\n } catch {\n // Keep the document name if parsing fails\n }\n }\n\n const existingTheme = state.customThemes[documentName];\n const isUpdate = !!existingTheme;\n const hasContentChanged = existingTheme?.content !== content;\n\n const customTheme: CustomTheme = {\n name: themeName,\n content,\n parsed,\n valid: validation.valid,\n lastModified: new Date(),\n };\n\n // Emit theme change if content changed OR if this is a newly valid theme\n const shouldEmitEvent =\n (hasContentChanged ||\n (!existingTheme?.valid && validation.valid)) &&\n validation.valid;\n\n if (shouldEmitEvent) {\n // Use setTimeout to ensure state is updated before event is processed\n setTimeout(() => {\n themeChangeEmitter.emitThemeChange({\n themeName,\n timestamp: Date.now(),\n changeType: isUpdate ? 'update' : 'create',\n });\n }, 0);\n }\n\n return {\n customThemes: {\n ...state.customThemes,\n [documentName]: customTheme,\n },\n };\n }),\n\n removeTheme: (documentName) =>\n set((state) => {\n const removedTheme = state.customThemes[documentName];\n const newCustomThemes = { ...state.customThemes };\n delete newCustomThemes[documentName];\n\n // Emit theme deletion event\n if (removedTheme) {\n setTimeout(() => {\n themeChangeEmitter.emitThemeChange({\n themeName: removedTheme.name,\n timestamp: Date.now(),\n changeType: 'delete',\n });\n }, 0);\n }\n\n return {\n customThemes: newCustomThemes,\n };\n }),\n\n getTheme: (themeName) => {\n const state = get();\n\n // First check custom themes by theme name\n for (const customTheme of Object.values(state.customThemes)) {\n if (\n customTheme.valid &&\n customTheme.name === themeName &&\n customTheme.parsed\n ) {\n return customTheme.parsed;\n }\n }\n\n // Theme not found in custom themes\n return null;\n },\n\n getAllThemeNames: () => {\n const state = get();\n const names: string[] = [];\n\n // Add custom theme names\n for (const customTheme of Object.values(state.customThemes)) {\n if (customTheme.valid && customTheme.name) {\n names.push(customTheme.name);\n }\n }\n\n return names;\n },\n\n isThemeValid: (themeName) => {\n const state = get();\n\n // Check custom themes\n for (const customTheme of Object.values(state.customThemes)) {\n if (customTheme.name === themeName) {\n return customTheme.valid;\n }\n }\n\n return false;\n },\n }),\n {\n name: 'themes-storage',\n version: 4, // v4: migrate from localStorage to IndexedDB\n storage: createJSONStorage(() => idbStorage),\n // Only persist the themes data, not the functions\n partialize: (state) => ({ customThemes: state.customThemes }),\n // Handle date deserialization when loading from storage\n onRehydrateStorage: () => (state) => {\n if (state && state.customThemes) {\n // Convert lastModified strings back to Date objects\n Object.keys(state.customThemes).forEach((key) => {\n const theme = state.customThemes[key];\n if (\n theme.lastModified &&\n typeof theme.lastModified === 'string'\n ) {\n theme.lastModified = new Date(theme.lastModified);\n }\n });\n }\n },\n }\n )\n )\n );\n};\n","import { type ReactNode, createContext, useRef, useContext } from 'react';\nimport { useStore } from 'zustand';\n\nimport {\n type ThemesStore,\n createThemesStore,\n initThemesStore,\n} from './themes-store';\n\nexport type ThemesStoreApi = ReturnType<typeof createThemesStore>;\n\nexport const ThemesStoreContext = createContext<ThemesStoreApi | undefined>(\n undefined\n);\n\nexport interface ThemesStoreProviderProps {\n children: ReactNode;\n}\n\nexport const ThemesStoreProvider = ({ children }: ThemesStoreProviderProps) => {\n const storeRef = useRef<ThemesStoreApi>(undefined);\n if (!storeRef.current) {\n storeRef.current = createThemesStore(initThemesStore());\n }\n\n return (\n <ThemesStoreContext.Provider value={storeRef.current}>\n {children}\n </ThemesStoreContext.Provider>\n );\n};\n\nexport const useThemesStore = <T,>(selector: (store: ThemesStore) => T): T => {\n const themesStoreContext = useContext(ThemesStoreContext);\n\n if (!themesStoreContext) {\n throw new Error('useThemesStore must be used within ThemesStoreProvider');\n }\n\n return useStore(themesStoreContext, selector);\n};\n","import { devtools } from 'zustand/middleware';\nimport { createStore } from 'zustand/vanilla';\n\nexport interface GenerationWarning {\n component: string;\n message: string;\n severity?: 'warning' | 'info';\n context?: Record<string, unknown>;\n}\n\nexport type OutputState = {\n name?: string; // last success => document name\n text?: string; // last success => code used to generate the pptx\n blob?: Blob; // last success => generated pptx\n globalError?: string; // last failed => global error message\n isGenerating?: boolean; // presentation generation in progress\n generationProgress?: {\n stage: 'parsing' | 'building' | 'rendering' | 'finalizing';\n message?: string;\n };\n cacheStatus?: 'HIT' | 'MISS' | 'UNKNOWN'; // cache hit/miss status\n cacheHitRate?: string; // cache hit rate percentage\n warnings?: GenerationWarning[] | null; // warnings from custom component processing\n isRendering?: boolean; // preview rendering in progress (iframe/LibreOffice)\n isPreviewStale?: boolean; // preview outdated (new blob generated but not yet rendered)\n editSequence?: number; // incremented on every Monaco keystroke (init 0)\n lastBuiltSequence?: number; // stamped when generation completes (init 0)\n editTimestamp?: number; // Date.now() of the last edit (for debounce countdown)\n // ⚠️ name doesn't necessarily correspond to the global error message\n};\n\nexport type OutputActions = {\n setOutput: (partialState: OutputState) => void;\n bumpEditSequence: () => void;\n};\n\nexport type OutputStore = OutputState & OutputActions;\n\nexport const initOutputStore = (): OutputState => {\n return {\n name: undefined,\n text: undefined,\n blob: undefined,\n globalError: undefined,\n isGenerating: false,\n generationProgress: undefined,\n isRendering: false,\n isPreviewStale: false,\n editSequence: 0,\n lastBuiltSequence: 0,\n };\n};\n\nexport const defaultInitOutputState: OutputState = {\n ...initOutputStore(),\n};\n\nexport const createOutputStore = (\n initState: OutputState = defaultInitOutputState\n) => {\n return createStore<OutputStore>()(\n devtools((set) => ({\n ...initState,\n setOutput: (partialState) => set({ ...partialState }),\n bumpEditSequence: () =>\n set((s) => ({\n editSequence: (s.editSequence ?? 0) + 1,\n editTimestamp: Date.now(),\n })),\n }))\n );\n};\n","import { type ReactNode, createContext, useRef, useContext } from 'react';\nimport { useStore } from 'zustand';\nimport {\n type OutputStore,\n createOutputStore,\n initOutputStore,\n} from './output-store';\n\nexport type OutputStoreApi = ReturnType<typeof createOutputStore>;\n\nexport const OutputStoreContext = createContext<OutputStoreApi | undefined>(\n undefined\n);\n\nexport interface OutputStoreProviderProps {\n children: ReactNode;\n}\n\nexport const OutputStoreProvider = ({ children }: OutputStoreProviderProps) => {\n const storeRef = useRef<OutputStoreApi | null>(null);\n if (!storeRef.current) {\n storeRef.current = createOutputStore(initOutputStore());\n }\n\n return (\n <OutputStoreContext.Provider value={storeRef.current}>\n {children}\n </OutputStoreContext.Provider>\n );\n};\n\nexport const useOutputStore = <T,>(selector: (store: OutputStore) => T): T => {\n const outputStoreContext = useContext(OutputStoreContext);\n\n if (!outputStoreContext) {\n throw new Error('useOutputStore must be used within OutputStoreProvider');\n }\n\n return useStore(outputStoreContext, selector);\n};\n","import { devtools, persist } from 'zustand/middleware';\nimport { createStore } from 'zustand/vanilla';\nimport type { Settings } from '../lib/types';\nimport { FORMAT } from '../lib/env';\n\nexport type SettingsState = Settings;\n\nexport type SettingsActions = {\n setSettings: (settings: Partial<Settings>) => void;\n};\n\nexport type SettingsStore = SettingsState & SettingsActions;\n\nexport const initSettingsStore = (): SettingsState => {\n return {\n saveDocumentDebounceWait: 300,\n autoReload: true,\n renderingLibrary: FORMAT === 'docx' ? 'docxjs' : 'LibreOffice',\n // UI preference to use a single preview header spanning editor + preview\n useGlobalPreviewHeader: true,\n };\n};\n\nexport const defaultInitSettingsState: SettingsState = {\n ...initSettingsStore(),\n};\n\nexport const createSettingsStore = (\n initState: SettingsState = defaultInitSettingsState\n) => {\n return createStore<SettingsStore>()(\n devtools(\n persist(\n (set) => ({\n ...initState,\n setSettings: (settings) => set({ ...settings }),\n }),\n {\n name: 'settings-storage', // name of the item in the storage (must be unique)\n // (optional) by default, 'localStorage' is used as storage\n }\n )\n )\n );\n};\n","import { type ReactNode, createContext, useRef, useContext } from 'react';\nimport { useStore } from 'zustand';\nimport {\n type SettingsStore,\n createSettingsStore,\n initSettingsStore,\n} from './settings-store';\n\nexport type SettingsStoreApi = ReturnType<typeof createSettingsStore>;\n\nexport const SettingsStoreContext = createContext<SettingsStoreApi | undefined>(\n undefined\n);\n\nexport interface SettingsStoreProviderProps {\n children: ReactNode;\n}\n\nexport const SettingsStoreProvider = ({\n children,\n}: SettingsStoreProviderProps) => {\n const storeRef = useRef<SettingsStoreApi | null>(null);\n if (!storeRef.current) {\n storeRef.current = createSettingsStore(initSettingsStore());\n }\n\n return (\n <SettingsStoreContext.Provider value={storeRef.current}>\n {children}\n </SettingsStoreContext.Provider>\n );\n};\n\nexport const useSettingsStore = <T,>(\n selector: (store: SettingsStore) => T\n): T => {\n const settingsStoreContext = useContext(SettingsStoreContext);\n\n if (!settingsStoreContext) {\n throw new Error(\n 'useSettingsStore must be used within SettingsStoreProvider'\n );\n }\n\n return useStore(settingsStoreContext, selector);\n};\n"],"names":["promisifyRequest","request","resolve","reject","createStore","dbName","storeName","dbp","getDB","db","txMode","callback","defaultGetStoreFunc","defaultGetStore","get","key","customStore","store","set","value","del","idbStorage","name","MAX_OPEN_TABS","initDocumentsStore","defaultInitDocumentsState","createDocumentsStore","initState","devtools","persist","text","state","doc","docType","parsed","newDoc","newDocumentTypes","k","docIndex","i","oldName","newName","documents","openTabs","index","tab","activeTab","buildError","buildErrors","original","modified","applyId","accepted","diff","next","ids","acceptedApplyIds","createJSONStorage","DocumentsStoreContext","createContext","DocumentsStoreProvider","children","storeRef","useRef","useDocumentsStore","selector","documentsStoreContext","useContext","useStore","validateThemeJson","jsonString","getThemeName","themeJson","_ThemeChangeEmitter","event","handler","e","__publicField","ThemeChangeEmitter","themeChangeEmitter","initThemesStore","defaultInitThemesState","createThemesStore","documentName","content","validation","themeName","parsedContent","extractedName","existingTheme","isUpdate","hasContentChanged","customTheme","removedTheme","newCustomThemes","names","theme","ThemesStoreContext","ThemesStoreProvider","useThemesStore","themesStoreContext","initOutputStore","defaultInitOutputState","createOutputStore","partialState","s","OutputStoreContext","OutputStoreProvider","useOutputStore","outputStoreContext","initSettingsStore","FORMAT","defaultInitSettingsState","createSettingsStore","settings","SettingsStoreContext","SettingsStoreProvider","useSettingsStore","settingsStoreContext"],"mappings":"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","x_google_ignoreList":[0]}
1
+ {"version":3,"file":"settings-store-provider-BEzje7_o.js","sources":["../../../../../node_modules/.pnpm/idb-keyval@6.2.2/node_modules/idb-keyval/dist/index.js","../../../src/client/lib/idb-storage.ts","../../../src/client/store/documents-store.ts","../../../src/client/store/documents-store-provider.tsx","../../../src/client/lib/theme-validation.ts","../../../src/client/utils/theme-change-emitter.ts","../../../src/client/store/themes-store.ts","../../../src/client/store/themes-store-provider.tsx","../../../src/client/store/output-store.ts","../../../src/client/store/output-store-provider.tsx","../../../src/client/store/settings-store.ts","../../../src/client/store/settings-store-provider.tsx"],"sourcesContent":["function promisifyRequest(request) {\n return new Promise((resolve, reject) => {\n // @ts-ignore - file size hacks\n request.oncomplete = request.onsuccess = () => resolve(request.result);\n // @ts-ignore - file size hacks\n request.onabort = request.onerror = () => reject(request.error);\n });\n}\nfunction createStore(dbName, storeName) {\n let dbp;\n const getDB = () => {\n if (dbp)\n return dbp;\n const request = indexedDB.open(dbName);\n request.onupgradeneeded = () => request.result.createObjectStore(storeName);\n dbp = promisifyRequest(request);\n dbp.then((db) => {\n // It seems like Safari sometimes likes to just close the connection.\n // It's supposed to fire this event when that happens. Let's hope it does!\n db.onclose = () => (dbp = undefined);\n }, () => { });\n return dbp;\n };\n return (txMode, callback) => getDB().then((db) => callback(db.transaction(storeName, txMode).objectStore(storeName)));\n}\nlet defaultGetStoreFunc;\nfunction defaultGetStore() {\n if (!defaultGetStoreFunc) {\n defaultGetStoreFunc = createStore('keyval-store', 'keyval');\n }\n return defaultGetStoreFunc;\n}\n/**\n * Get a value by its key.\n *\n * @param key\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction get(key, customStore = defaultGetStore()) {\n return customStore('readonly', (store) => promisifyRequest(store.get(key)));\n}\n/**\n * Set a value with a key.\n *\n * @param key\n * @param value\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction set(key, value, customStore = defaultGetStore()) {\n return customStore('readwrite', (store) => {\n store.put(value, key);\n return promisifyRequest(store.transaction);\n });\n}\n/**\n * Set multiple values at once. This is faster than calling set() multiple times.\n * It's also atomic – if one of the pairs can't be added, none will be added.\n *\n * @param entries Array of entries, where each entry is an array of `[key, value]`.\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction setMany(entries, customStore = defaultGetStore()) {\n return customStore('readwrite', (store) => {\n entries.forEach((entry) => store.put(entry[1], entry[0]));\n return promisifyRequest(store.transaction);\n });\n}\n/**\n * Get multiple values by their keys\n *\n * @param keys\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction getMany(keys, customStore = defaultGetStore()) {\n return customStore('readonly', (store) => Promise.all(keys.map((key) => promisifyRequest(store.get(key)))));\n}\n/**\n * Update a value. This lets you see the old value and update it as an atomic operation.\n *\n * @param key\n * @param updater A callback that takes the old value and returns a new value.\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction update(key, updater, customStore = defaultGetStore()) {\n return customStore('readwrite', (store) => \n // Need to create the promise manually.\n // If I try to chain promises, the transaction closes in browsers\n // that use a promise polyfill (IE10/11).\n new Promise((resolve, reject) => {\n store.get(key).onsuccess = function () {\n try {\n store.put(updater(this.result), key);\n resolve(promisifyRequest(store.transaction));\n }\n catch (err) {\n reject(err);\n }\n };\n }));\n}\n/**\n * Delete a particular key from the store.\n *\n * @param key\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction del(key, customStore = defaultGetStore()) {\n return customStore('readwrite', (store) => {\n store.delete(key);\n return promisifyRequest(store.transaction);\n });\n}\n/**\n * Delete multiple keys at once.\n *\n * @param keys List of keys to delete.\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction delMany(keys, customStore = defaultGetStore()) {\n return customStore('readwrite', (store) => {\n keys.forEach((key) => store.delete(key));\n return promisifyRequest(store.transaction);\n });\n}\n/**\n * Clear all values in the store.\n *\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction clear(customStore = defaultGetStore()) {\n return customStore('readwrite', (store) => {\n store.clear();\n return promisifyRequest(store.transaction);\n });\n}\nfunction eachCursor(store, callback) {\n store.openCursor().onsuccess = function () {\n if (!this.result)\n return;\n callback(this.result);\n this.result.continue();\n };\n return promisifyRequest(store.transaction);\n}\n/**\n * Get all keys in the store.\n *\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction keys(customStore = defaultGetStore()) {\n return customStore('readonly', (store) => {\n // Fast path for modern browsers\n if (store.getAllKeys) {\n return promisifyRequest(store.getAllKeys());\n }\n const items = [];\n return eachCursor(store, (cursor) => items.push(cursor.key)).then(() => items);\n });\n}\n/**\n * Get all values in the store.\n *\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction values(customStore = defaultGetStore()) {\n return customStore('readonly', (store) => {\n // Fast path for modern browsers\n if (store.getAll) {\n return promisifyRequest(store.getAll());\n }\n const items = [];\n return eachCursor(store, (cursor) => items.push(cursor.value)).then(() => items);\n });\n}\n/**\n * Get all entries in the store. Each entry is an array of `[key, value]`.\n *\n * @param customStore Method to get a custom store. Use with caution (see the docs).\n */\nfunction entries(customStore = defaultGetStore()) {\n return customStore('readonly', (store) => {\n // Fast path for modern browsers\n // (although, hopefully we'll get a simpler path some day)\n if (store.getAll && store.getAllKeys) {\n return Promise.all([\n promisifyRequest(store.getAllKeys()),\n promisifyRequest(store.getAll()),\n ]).then(([keys, values]) => keys.map((key, i) => [key, values[i]]));\n }\n const items = [];\n return customStore('readonly', (store) => eachCursor(store, (cursor) => items.push([cursor.key, cursor.value])).then(() => items));\n });\n}\n\nexport { clear, createStore, del, delMany, entries, get, getMany, keys, promisifyRequest, set, setMany, update, values };\n","/**\n * IndexedDB storage adapter for Zustand persist middleware using idb-keyval.\n */\nimport { get, set, del } from 'idb-keyval';\nimport type { StateStorage } from 'zustand/middleware';\n\nexport const idbStorage: StateStorage = {\n getItem: async (name: string): Promise<string | null> => {\n return (await get(name)) ?? null;\n },\n setItem: async (name: string, value: string): Promise<void> => {\n await set(name, value);\n },\n removeItem: async (name: string): Promise<void> => {\n await del(name);\n },\n};\n","import { persist, devtools, createJSONStorage } from 'zustand/middleware';\nimport { createStore } from 'zustand/vanilla';\nimport type { TextFile } from '../lib/types';\nimport { idbStorage } from '../lib/idb-storage';\n\nconst MAX_OPEN_TABS = 3;\n\nexport type DocumentType = 'application/json+report' | 'application/json+theme';\n\nexport type DocumentsState = {\n documents: TextFile[];\n openTabs: string[];\n activeTab: string;\n buildErrors: { [key: string]: string };\n documentTypes: { [key: string]: DocumentType };\n pendingDiffs: { [key: string]: { original: string; modified: string; applyId?: string } };\n acceptedApplyIds: string[];\n};\n\nexport type DocumentsActions = {\n createDocument: (name: string, text: string) => void;\n deleteDocument: (name: string) => void;\n saveDocument: (name: string, text: string) => void;\n renameDocument: (oldName: string, newName: string) => void;\n openDocument: (name: string) => void;\n closeDocument: (name: string) => void;\n setActiveTab: (name: string) => void;\n setBuildError: (name: string, buildError?: string) => void;\n setPendingDiff: (name: string, original: string, modified: string, applyId?: string) => void;\n clearPendingDiff: (name: string, accepted?: boolean) => void;\n};\n\nexport type DocumentsStore = DocumentsState & DocumentsActions;\n\nexport const initDocumentsStore = (): DocumentsState => {\n return {\n documents: [],\n openTabs: [],\n activeTab: '',\n buildErrors: {},\n documentTypes: {},\n pendingDiffs: {},\n acceptedApplyIds: [],\n };\n};\n\nexport const defaultInitDocumentsState: DocumentsState = {\n ...initDocumentsStore(),\n};\n\nexport const createDocumentsStore = (\n initState: DocumentsState = defaultInitDocumentsState\n) => {\n return createStore<DocumentsStore>()(\n devtools(\n persist(\n (set) => ({\n ...initState,\n createDocument: (name, text) =>\n set((state) => {\n const docIndex = state.documents.findIndex(\n (doc) => doc.name === name\n );\n if (docIndex === -1) {\n // if the document does not exist\n // Determine document type based on file name and content\n let docType: DocumentType = 'application/json+report';\n if (\n name.toLowerCase().includes('theme') ||\n name.toLowerCase().includes('.theme.')\n ) {\n docType = 'application/json+theme';\n } else {\n // Try to parse JSON to check if it's a theme\n try {\n const parsed = JSON.parse(text);\n if (parsed.colors && parsed.fonts && parsed.styles) {\n docType = 'application/json+theme';\n }\n } catch {\n // If not valid JSON, default to report\n }\n }\n\n const newDoc = {\n name,\n type: 'application/json',\n text,\n mtime: new Date(),\n ctime: new Date(),\n atime: new Date(),\n };\n return {\n documents: [...state.documents, newDoc],\n documentTypes: { ...state.documentTypes, [name]: docType },\n };\n }\n return state;\n }),\n deleteDocument: (name) =>\n set((state) => {\n const newDocumentTypes = { ...state.documentTypes };\n delete newDocumentTypes[name];\n return {\n documents: state.documents.filter((doc) => doc.name !== name),\n documentTypes: newDocumentTypes,\n pendingDiffs: Object.fromEntries(\n Object.entries(state.pendingDiffs).filter(([k]) => k !== name)\n ),\n };\n }),\n saveDocument: (name, text) =>\n set((state) => {\n const docIndex = state.documents.findIndex(\n (doc) => doc.name === name\n );\n if (docIndex === -1) return state;\n // Skip update if text is unchanged to avoid spurious re-renders\n if (state.documents[docIndex].text === text) return state;\n const documents = state.documents.map((doc, i) =>\n i === docIndex ? { ...doc, text, mtime: new Date() } : doc\n );\n return { documents };\n }),\n renameDocument: (oldName, newName) =>\n set((state) => {\n const docIndex = state.documents.findIndex(\n (doc) => doc.name === oldName\n );\n if (docIndex === -1) return state;\n const documents = state.documents.map((doc, i) =>\n i === docIndex ? { ...doc, name: newName, ctime: new Date() } : doc\n );\n const docType = state.documentTypes[oldName];\n if (docType) {\n const newDocumentTypes = { ...state.documentTypes };\n delete newDocumentTypes[oldName];\n newDocumentTypes[newName] = docType;\n return { documents, documentTypes: newDocumentTypes };\n }\n return { documents };\n }),\n openDocument: (name) =>\n set((state) => {\n const docIndex = state.documents.findIndex(\n (doc) => doc.name === name\n );\n if (docIndex === -1) return state;\n const documents = state.documents.map((doc, i) =>\n i === docIndex ? { ...doc, atime: new Date() } : doc\n );\n let openTabs = state.openTabs;\n if (!openTabs.includes(name)) {\n openTabs = openTabs.length >= MAX_OPEN_TABS\n ? [...openTabs.slice(1), name]\n : [...openTabs, name];\n }\n return { documents, openTabs, activeTab: name };\n }),\n closeDocument: (name) =>\n set((state) => {\n const index = state.openTabs.indexOf(name);\n if (index === -1) return state;\n const openTabs = state.openTabs.filter((tab) => tab !== name);\n let activeTab = state.activeTab;\n if (activeTab === name) {\n if (openTabs.length) {\n activeTab = index === 0 ? openTabs[0] : openTabs[index - 1];\n } else {\n activeTab = '';\n }\n }\n return { openTabs, activeTab };\n }),\n setActiveTab: (name) => set({ activeTab: name }),\n setBuildError: (name, buildError) =>\n set((state) => {\n if (state.buildErrors[name] === buildError) return state;\n const buildErrors = { ...state.buildErrors };\n if (buildError) buildErrors[name] = buildError;\n else delete buildErrors[name];\n return { buildErrors };\n }),\n setPendingDiff: (name, original, modified, applyId) =>\n set((state) => {\n return {\n pendingDiffs: {\n ...state.pendingDiffs,\n [name]: { original, modified, applyId },\n },\n };\n }),\n clearPendingDiff: (name, accepted) =>\n set((state) => {\n const diff = state.pendingDiffs[name];\n if (!diff) return state;\n const next = { ...state.pendingDiffs };\n delete next[name];\n const ids = state.acceptedApplyIds || [];\n const acceptedApplyIds =\n accepted && diff.applyId\n ? [...ids.slice(-(200 - 1)), diff.applyId]\n : ids;\n return { pendingDiffs: next, acceptedApplyIds };\n }),\n }),\n {\n name: 'documents-storage',\n version: 1,\n storage: createJSONStorage(() => idbStorage),\n partialize: (state) => ({\n documents: state.documents,\n openTabs: state.openTabs,\n activeTab: state.activeTab,\n documentTypes: state.documentTypes,\n // buildErrors + pendingDiffs + acceptedApplyIds excluded — transient UI state\n }),\n onRehydrateStorage: () => (state) => {\n if (state?.documents) {\n for (const doc of state.documents) {\n for (const key of ['mtime', 'ctime', 'atime'] as const) {\n if (doc[key] && typeof doc[key] === 'string') {\n (doc as Record<string, unknown>)[key] = new Date(doc[key] as unknown as string);\n }\n }\n }\n }\n },\n }\n )\n )\n );\n};\n","import { type ReactNode, createContext, useRef, useContext } from 'react';\nimport { useStore } from 'zustand';\nimport {\n type DocumentsStore,\n createDocumentsStore,\n initDocumentsStore,\n} from './documents-store';\n\nexport type DocumentsStoreApi = ReturnType<typeof createDocumentsStore>;\n\nexport const DocumentsStoreContext = createContext<\n DocumentsStoreApi | undefined\n>(undefined);\n\nexport interface DocumentsStoreProviderProps {\n children: ReactNode;\n}\n\nexport const DocumentsStoreProvider = ({\n children,\n}: DocumentsStoreProviderProps) => {\n const storeRef = useRef<DocumentsStoreApi | null>(null);\n if (!storeRef.current) {\n storeRef.current = createDocumentsStore(initDocumentsStore());\n }\n\n return (\n <DocumentsStoreContext.Provider value={storeRef.current}>\n {children}\n </DocumentsStoreContext.Provider>\n );\n};\n\nexport const useDocumentsStore = <T,>(\n selector: (store: DocumentsStore) => T\n): T => {\n const documentsStoreContext = useContext(DocumentsStoreContext);\n\n if (!documentsStoreContext) {\n throw new Error(\n 'useDocumentsStore must be used within DocumentsStoreProvider'\n );\n }\n\n return useStore(documentsStoreContext, selector);\n};\n","export interface ThemeValidationError {\n message: string;\n line?: number;\n column?: number;\n path?: string;\n}\n\nexport interface ThemeValidationResult {\n valid: boolean;\n errors?: ThemeValidationError[];\n}\n\n/**\n * Validates a theme JSON string - checks structure without requiring format-specific schemas\n */\nexport function validateThemeJson(jsonString: string): ThemeValidationResult {\n try {\n const parsed = JSON.parse(jsonString);\n\n if (!parsed || typeof parsed !== 'object') {\n return {\n valid: false,\n errors: [{ message: 'Theme must be a JSON object' }],\n };\n }\n\n if (typeof parsed.name !== 'string' || !parsed.name.trim()) {\n return {\n valid: false,\n errors: [{ message: 'Theme must have a non-empty \"name\" property' }],\n };\n }\n\n return { valid: true };\n } catch (e) {\n return {\n valid: false,\n errors: [\n {\n message:\n e instanceof SyntaxError\n ? `Invalid JSON: ${e.message}`\n : 'Failed to parse theme JSON',\n },\n ],\n };\n }\n}\n\n/**\n * Gets theme name from a theme JSON object\n */\nexport function getThemeName(themeJson: unknown): string | null {\n try {\n if (\n themeJson &&\n typeof themeJson === 'object' &&\n 'name' in (themeJson as any) &&\n typeof (themeJson as any).name === 'string'\n ) {\n return (themeJson as any).name as string;\n }\n return null;\n } catch {\n return null;\n }\n}\n","// Theme change event emitter for coordinating theme updates across components\nexport interface ThemeChangeEvent {\n themeName: string;\n timestamp: number;\n changeType: 'create' | 'update' | 'delete';\n}\n\nexport class ThemeChangeEmitter extends EventTarget {\n private static instance: ThemeChangeEmitter;\n\n private constructor() {\n super();\n }\n\n static getInstance(): ThemeChangeEmitter {\n if (!ThemeChangeEmitter.instance) {\n ThemeChangeEmitter.instance = new ThemeChangeEmitter();\n }\n return ThemeChangeEmitter.instance;\n }\n\n emitThemeChange(event: ThemeChangeEvent): void {\n this.dispatchEvent(new CustomEvent('themechange', { detail: event }));\n }\n\n onThemeChange(callback: (event: ThemeChangeEvent) => void): () => void {\n const handler = (e: Event) => {\n const customEvent = e as CustomEvent<ThemeChangeEvent>;\n callback(customEvent.detail);\n };\n\n this.addEventListener('themechange', handler);\n\n // Track listener count\n (this as any)._listenerCount = ((this as any)._listenerCount || 0) + 1;\n\n // Return unsubscribe function\n return () => {\n this.removeEventListener('themechange', handler);\n (this as any)._listenerCount = Math.max(\n 0,\n ((this as any)._listenerCount || 1) - 1\n );\n };\n }\n}\n\nexport const themeChangeEmitter = ThemeChangeEmitter.getInstance();\n","import { persist, devtools, createJSONStorage } from 'zustand/middleware';\nimport { createStore } from 'zustand/vanilla';\nimport type { ThemeConfigJson } from '@json-to-office/shared-pptx';\nimport { validateThemeJson, getThemeName } from '../lib/theme-validation';\nimport { themeChangeEmitter } from '../utils/theme-change-emitter';\nimport { idbStorage } from '../lib/idb-storage';\n\nexport type CustomTheme = {\n name: string;\n content: string;\n parsed?: ThemeConfigJson;\n valid: boolean;\n lastModified: Date;\n};\n\nexport type ThemesState = {\n customThemes: { [name: string]: CustomTheme };\n};\n\nexport type ThemesActions = {\n updateTheme: (documentName: string, content: string) => void;\n removeTheme: (documentName: string) => void;\n getTheme: (themeName: string) => ThemeConfigJson | null;\n getAllThemeNames: () => string[];\n isThemeValid: (themeName: string) => boolean;\n};\n\nexport type ThemesStore = ThemesState & ThemesActions;\n\nexport const initThemesStore = (): ThemesState => {\n return {\n customThemes: {},\n };\n};\n\nexport const defaultInitThemesState: ThemesState = {\n ...initThemesStore(),\n};\n\nexport const createThemesStore = (\n initState: ThemesState = defaultInitThemesState\n) => {\n return createStore<ThemesStore>()(\n devtools(\n persist(\n (set, get) => ({\n ...initState,\n\n updateTheme: (documentName, content) =>\n set((state) => {\n const validation = validateThemeJson(content);\n\n let parsed: ThemeConfigJson | undefined;\n let themeName = documentName;\n\n if (validation.valid) {\n try {\n const parsedContent = JSON.parse(content);\n parsed = parsedContent;\n const extractedName = getThemeName(parsedContent);\n if (extractedName) {\n themeName = extractedName;\n }\n } catch {\n // Keep the document name if parsing fails\n }\n }\n\n const existingTheme = state.customThemes[documentName];\n const isUpdate = !!existingTheme;\n const hasContentChanged = existingTheme?.content !== content;\n\n const customTheme: CustomTheme = {\n name: themeName,\n content,\n parsed,\n valid: validation.valid,\n lastModified: new Date(),\n };\n\n // Emit theme change if content changed OR if this is a newly valid theme\n const shouldEmitEvent =\n (hasContentChanged ||\n (!existingTheme?.valid && validation.valid)) &&\n validation.valid;\n\n if (shouldEmitEvent) {\n // Use setTimeout to ensure state is updated before event is processed\n setTimeout(() => {\n themeChangeEmitter.emitThemeChange({\n themeName,\n timestamp: Date.now(),\n changeType: isUpdate ? 'update' : 'create',\n });\n }, 0);\n }\n\n return {\n customThemes: {\n ...state.customThemes,\n [documentName]: customTheme,\n },\n };\n }),\n\n removeTheme: (documentName) =>\n set((state) => {\n const removedTheme = state.customThemes[documentName];\n const newCustomThemes = { ...state.customThemes };\n delete newCustomThemes[documentName];\n\n // Emit theme deletion event\n if (removedTheme) {\n setTimeout(() => {\n themeChangeEmitter.emitThemeChange({\n themeName: removedTheme.name,\n timestamp: Date.now(),\n changeType: 'delete',\n });\n }, 0);\n }\n\n return {\n customThemes: newCustomThemes,\n };\n }),\n\n getTheme: (themeName) => {\n const state = get();\n\n // First check custom themes by theme name\n for (const customTheme of Object.values(state.customThemes)) {\n if (\n customTheme.valid &&\n customTheme.name === themeName &&\n customTheme.parsed\n ) {\n return customTheme.parsed;\n }\n }\n\n // Theme not found in custom themes\n return null;\n },\n\n getAllThemeNames: () => {\n const state = get();\n const names: string[] = [];\n\n // Add custom theme names\n for (const customTheme of Object.values(state.customThemes)) {\n if (customTheme.valid && customTheme.name) {\n names.push(customTheme.name);\n }\n }\n\n return names;\n },\n\n isThemeValid: (themeName) => {\n const state = get();\n\n // Check custom themes\n for (const customTheme of Object.values(state.customThemes)) {\n if (customTheme.name === themeName) {\n return customTheme.valid;\n }\n }\n\n return false;\n },\n }),\n {\n name: 'themes-storage',\n version: 4, // v4: migrate from localStorage to IndexedDB\n storage: createJSONStorage(() => idbStorage),\n // Only persist the themes data, not the functions\n partialize: (state) => ({ customThemes: state.customThemes }),\n // Handle date deserialization when loading from storage\n onRehydrateStorage: () => (state) => {\n if (state && state.customThemes) {\n // Convert lastModified strings back to Date objects\n Object.keys(state.customThemes).forEach((key) => {\n const theme = state.customThemes[key];\n if (\n theme.lastModified &&\n typeof theme.lastModified === 'string'\n ) {\n theme.lastModified = new Date(theme.lastModified);\n }\n });\n }\n },\n }\n )\n )\n );\n};\n","import { type ReactNode, createContext, useRef, useContext } from 'react';\nimport { useStore } from 'zustand';\n\nimport {\n type ThemesStore,\n createThemesStore,\n initThemesStore,\n} from './themes-store';\n\nexport type ThemesStoreApi = ReturnType<typeof createThemesStore>;\n\nexport const ThemesStoreContext = createContext<ThemesStoreApi | undefined>(\n undefined\n);\n\nexport interface ThemesStoreProviderProps {\n children: ReactNode;\n}\n\nexport const ThemesStoreProvider = ({ children }: ThemesStoreProviderProps) => {\n const storeRef = useRef<ThemesStoreApi>(undefined);\n if (!storeRef.current) {\n storeRef.current = createThemesStore(initThemesStore());\n }\n\n return (\n <ThemesStoreContext.Provider value={storeRef.current}>\n {children}\n </ThemesStoreContext.Provider>\n );\n};\n\nexport const useThemesStore = <T,>(selector: (store: ThemesStore) => T): T => {\n const themesStoreContext = useContext(ThemesStoreContext);\n\n if (!themesStoreContext) {\n throw new Error('useThemesStore must be used within ThemesStoreProvider');\n }\n\n return useStore(themesStoreContext, selector);\n};\n","import { devtools } from 'zustand/middleware';\nimport { createStore } from 'zustand/vanilla';\n\nexport interface GenerationWarning {\n component: string;\n message: string;\n severity?: 'warning' | 'info';\n context?: Record<string, unknown>;\n}\n\nexport type OutputState = {\n name?: string; // last success => document name\n text?: string; // last success => code used to generate the pptx\n blob?: Blob; // last success => generated pptx\n globalError?: string; // last failed => global error message\n isGenerating?: boolean; // presentation generation in progress\n generationProgress?: {\n stage: 'parsing' | 'building' | 'rendering' | 'finalizing';\n message?: string;\n };\n cacheStatus?: 'HIT' | 'MISS' | 'UNKNOWN'; // cache hit/miss status\n cacheHitRate?: string; // cache hit rate percentage\n warnings?: GenerationWarning[] | null; // warnings from custom component processing\n isRendering?: boolean; // preview rendering in progress (iframe/LibreOffice)\n isPreviewStale?: boolean; // preview outdated (new blob generated but not yet rendered)\n editSequence?: number; // incremented on every Monaco keystroke (init 0)\n lastBuiltSequence?: number; // stamped when generation completes (init 0)\n editTimestamp?: number; // Date.now() of the last edit (for debounce countdown)\n // ⚠️ name doesn't necessarily correspond to the global error message\n};\n\nexport type OutputActions = {\n setOutput: (partialState: OutputState) => void;\n bumpEditSequence: () => void;\n};\n\nexport type OutputStore = OutputState & OutputActions;\n\nexport const initOutputStore = (): OutputState => {\n return {\n name: undefined,\n text: undefined,\n blob: undefined,\n globalError: undefined,\n isGenerating: false,\n generationProgress: undefined,\n isRendering: false,\n isPreviewStale: false,\n editSequence: 0,\n lastBuiltSequence: 0,\n };\n};\n\nexport const defaultInitOutputState: OutputState = {\n ...initOutputStore(),\n};\n\nexport const createOutputStore = (\n initState: OutputState = defaultInitOutputState\n) => {\n return createStore<OutputStore>()(\n devtools((set) => ({\n ...initState,\n setOutput: (partialState) => set({ ...partialState }),\n bumpEditSequence: () =>\n set((s) => ({\n editSequence: (s.editSequence ?? 0) + 1,\n editTimestamp: Date.now(),\n })),\n }))\n );\n};\n","import { type ReactNode, createContext, useRef, useContext } from 'react';\nimport { useStore } from 'zustand';\nimport {\n type OutputStore,\n createOutputStore,\n initOutputStore,\n} from './output-store';\n\nexport type OutputStoreApi = ReturnType<typeof createOutputStore>;\n\nexport const OutputStoreContext = createContext<OutputStoreApi | undefined>(\n undefined\n);\n\nexport interface OutputStoreProviderProps {\n children: ReactNode;\n}\n\nexport const OutputStoreProvider = ({ children }: OutputStoreProviderProps) => {\n const storeRef = useRef<OutputStoreApi | null>(null);\n if (!storeRef.current) {\n storeRef.current = createOutputStore(initOutputStore());\n }\n\n return (\n <OutputStoreContext.Provider value={storeRef.current}>\n {children}\n </OutputStoreContext.Provider>\n );\n};\n\nexport const useOutputStore = <T,>(selector: (store: OutputStore) => T): T => {\n const outputStoreContext = useContext(OutputStoreContext);\n\n if (!outputStoreContext) {\n throw new Error('useOutputStore must be used within OutputStoreProvider');\n }\n\n return useStore(outputStoreContext, selector);\n};\n","import { devtools, persist } from 'zustand/middleware';\nimport { createStore } from 'zustand/vanilla';\nimport type { Settings } from '../lib/types';\nimport { FORMAT } from '../lib/env';\n\nexport type SettingsState = Settings;\n\nexport type SettingsActions = {\n setSettings: (settings: Partial<Settings>) => void;\n};\n\nexport type SettingsStore = SettingsState & SettingsActions;\n\nexport const initSettingsStore = (): SettingsState => {\n return {\n saveDocumentDebounceWait: 300,\n autoReload: true,\n renderingLibrary: FORMAT === 'docx' ? 'docxjs' : 'LibreOffice',\n // UI preference to use a single preview header spanning editor + preview\n useGlobalPreviewHeader: true,\n };\n};\n\nexport const defaultInitSettingsState: SettingsState = {\n ...initSettingsStore(),\n};\n\nexport const createSettingsStore = (\n initState: SettingsState = defaultInitSettingsState\n) => {\n return createStore<SettingsStore>()(\n devtools(\n persist(\n (set) => ({\n ...initState,\n setSettings: (settings) => set({ ...settings }),\n }),\n {\n name: 'settings-storage', // name of the item in the storage (must be unique)\n // (optional) by default, 'localStorage' is used as storage\n }\n )\n )\n );\n};\n","import { type ReactNode, createContext, useRef, useContext } from 'react';\nimport { useStore } from 'zustand';\nimport {\n type SettingsStore,\n createSettingsStore,\n initSettingsStore,\n} from './settings-store';\n\nexport type SettingsStoreApi = ReturnType<typeof createSettingsStore>;\n\nexport const SettingsStoreContext = createContext<SettingsStoreApi | undefined>(\n undefined\n);\n\nexport interface SettingsStoreProviderProps {\n children: ReactNode;\n}\n\nexport const SettingsStoreProvider = ({\n children,\n}: SettingsStoreProviderProps) => {\n const storeRef = useRef<SettingsStoreApi | null>(null);\n if (!storeRef.current) {\n storeRef.current = createSettingsStore(initSettingsStore());\n }\n\n return (\n <SettingsStoreContext.Provider value={storeRef.current}>\n {children}\n </SettingsStoreContext.Provider>\n );\n};\n\nexport const useSettingsStore = <T,>(\n selector: (store: SettingsStore) => T\n): T => {\n const settingsStoreContext = useContext(SettingsStoreContext);\n\n if (!settingsStoreContext) {\n throw new Error(\n 'useSettingsStore must be used within SettingsStoreProvider'\n );\n }\n\n return useStore(settingsStoreContext, selector);\n};\n"],"names":["promisifyRequest","request","resolve","reject","createStore","dbName","storeName","dbp","getDB","db","txMode","callback","defaultGetStoreFunc","defaultGetStore","get","key","customStore","store","set","value","del","idbStorage","name","MAX_OPEN_TABS","initDocumentsStore","defaultInitDocumentsState","createDocumentsStore","initState","devtools","persist","text","state","doc","docType","parsed","newDoc","newDocumentTypes","k","docIndex","i","oldName","newName","documents","openTabs","index","tab","activeTab","buildError","buildErrors","original","modified","applyId","accepted","diff","next","ids","acceptedApplyIds","createJSONStorage","DocumentsStoreContext","createContext","DocumentsStoreProvider","children","storeRef","useRef","useDocumentsStore","selector","documentsStoreContext","useContext","useStore","validateThemeJson","jsonString","getThemeName","themeJson","_ThemeChangeEmitter","event","handler","e","__publicField","ThemeChangeEmitter","themeChangeEmitter","initThemesStore","defaultInitThemesState","createThemesStore","documentName","content","validation","themeName","parsedContent","extractedName","existingTheme","isUpdate","hasContentChanged","customTheme","removedTheme","newCustomThemes","names","theme","ThemesStoreContext","ThemesStoreProvider","useThemesStore","themesStoreContext","initOutputStore","defaultInitOutputState","createOutputStore","partialState","s","OutputStoreContext","OutputStoreProvider","useOutputStore","outputStoreContext","initSettingsStore","FORMAT","defaultInitSettingsState","createSettingsStore","settings","SettingsStoreContext","SettingsStoreProvider","useSettingsStore","settingsStoreContext"],"mappings":"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","x_google_ignoreList":[0]}
@@ -8,7 +8,7 @@
8
8
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
9
9
  <link href="https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap" rel="stylesheet" />
10
10
  <title>JSON to Office</title>
11
- <script type="module" crossorigin src="/assets/index-DactvF4v.js"></script>
11
+ <script type="module" crossorigin src="/assets/index-CGQAncgl.js"></script>
12
12
  <link rel="modulepreload" crossorigin href="/assets/radix-ui-CXavUarI.js">
13
13
  <link rel="modulepreload" crossorigin href="/assets/react-vendor-DhdcN9D5.js">
14
14
  <link rel="modulepreload" crossorigin href="/assets/query-vendor-UL64zsGL.js">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@json-to-office/jto",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "JSON to Office CLI - Unified document and presentation generation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -86,11 +86,11 @@
86
86
  "vite": "6.0.5",
87
87
  "zod": "^4.0.0",
88
88
  "zustand": "5.0.2",
89
- "@json-to-office/core-docx": "^0.1.0",
90
- "@json-to-office/core-pptx": "^0.1.0",
91
- "@json-to-office/shared": "^0.1.0",
92
- "@json-to-office/shared-docx": "^0.1.0",
93
- "@json-to-office/shared-pptx": "^0.1.0"
89
+ "@json-to-office/core-docx": "^0.1.1",
90
+ "@json-to-office/core-pptx": "^0.1.1",
91
+ "@json-to-office/shared": "^0.1.1",
92
+ "@json-to-office/shared-docx": "^0.1.3",
93
+ "@json-to-office/shared-pptx": "^0.1.1"
94
94
  },
95
95
  "devDependencies": {
96
96
  "@types/lodash.debounce": "4.0.9",