mirror of
https://github.com/honojs/hono.git
synced 2024-12-01 10:51:01 +00:00
e07019125d
* mv jsx * introduce helper * denoify & add src/helper.ts for Deno * remove `c` not used * remove `c` in lagon test * remove `src/adapter.ts` not used
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import { escapeToBuffer } from '../../utils/html.ts'
|
|
import type { StringBuffer, HtmlEscaped, HtmlEscapedString } from '../../utils/html.ts'
|
|
|
|
export const raw = (value: unknown): HtmlEscapedString => {
|
|
const escapedString = new String(value) as HtmlEscapedString
|
|
escapedString.isEscaped = true
|
|
|
|
return escapedString
|
|
}
|
|
|
|
export const html = (strings: TemplateStringsArray, ...values: unknown[]): HtmlEscapedString => {
|
|
const buffer: StringBuffer = ['']
|
|
|
|
for (let i = 0, len = strings.length - 1; i < len; i++) {
|
|
buffer[0] += strings[i]
|
|
|
|
const children =
|
|
values[i] instanceof Array ? (values[i] as Array<unknown>).flat(Infinity) : [values[i]]
|
|
for (let i = 0, len = children.length; i < len; i++) {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const child = children[i] as any
|
|
if (typeof child === 'string') {
|
|
escapeToBuffer(child, buffer)
|
|
} else if (typeof child === 'boolean' || child === null || child === undefined) {
|
|
continue
|
|
} else if (
|
|
(typeof child === 'object' && (child as HtmlEscaped).isEscaped) ||
|
|
typeof child === 'number'
|
|
) {
|
|
buffer[0] += child
|
|
} else {
|
|
escapeToBuffer(child.toString(), buffer)
|
|
}
|
|
}
|
|
}
|
|
buffer[0] += strings[strings.length - 1]
|
|
|
|
return raw(buffer[0])
|
|
}
|