ai-comic-factory / src /lib /parseBadJSON.ts
jbilcke-hf's picture
jbilcke-hf HF staff
working on an experimental speech bubble display
95a4e14
raw
history blame contribute delete
No virus
669 Bytes
import { GeneratedPanels } from "@/types"
export function parseBadJSON(jsonLikeString: string): GeneratedPanels {
try {
return JSON.parse(jsonLikeString) as GeneratedPanels
} catch (err) {
var regex = /\{\s*"panel":\s*(\d+),\s*"instructions"\s*:\s*"([^"]+)",\s*"speech"\s*:\s*"([^"]+)",\s*"caption":\s*"([^"]*)"\s*\}/gs;
let results = [];
let match;
while ((match = regex.exec(jsonLikeString)) !== null) {
let json = {
panel: Number(match[1]),
instructions: match[2],
speech: match[3],
caption: match[4]
};
results.push(json);
}
return results as GeneratedPanels
}
}