fix(app): more defensive code component

This commit is contained in:
Adam
2026-02-12 10:00:37 -06:00
parent ed472d8a67
commit a82ca86008

View File

@@ -562,9 +562,17 @@ export function Code<T>(props: CodeProps<T>) {
}
}
const text = () => {
const value = local.file.contents as unknown
if (typeof value === "string") return value
if (Array.isArray(value)) return value.join("\n")
if (value == null) return ""
return String(value)
}
const lineCount = () => {
const text = local.file.contents
const total = text.split("\n").length - (text.endsWith("\n") ? 1 : 0)
const value = text()
const total = value.split("\n").length - (value.endsWith("\n") ? 1 : 0)
return Math.max(1, total)
}
@@ -848,8 +856,9 @@ export function Code<T>(props: CodeProps<T>) {
observer = undefined
container.innerHTML = ""
const value = text()
file().render({
file: local.file,
file: typeof local.file.contents === "string" ? local.file : { ...local.file, contents: value },
lineAnnotations: local.annotations,
containerWrapper: container,
})