2023-11-06 22:09:04 +00:00
|
|
|
import { escapeToBuffer, stringBufferToString } from '../../utils/html.ts'
|
2023-11-21 09:05:05 +00:00
|
|
|
import type {
|
|
|
|
StringBuffer,
|
|
|
|
HtmlEscaped,
|
|
|
|
HtmlEscapedString,
|
|
|
|
HtmlEscapedCallback,
|
|
|
|
} from '../../utils/html.ts'
|
2022-07-02 06:09:45 +00:00
|
|
|
|
2023-11-21 09:05:05 +00:00
|
|
|
export const raw = (value: unknown, callbacks?: HtmlEscapedCallback[]): HtmlEscapedString => {
|
2022-07-02 06:09:45 +00:00
|
|
|
const escapedString = new String(value) as HtmlEscapedString
|
|
|
|
escapedString.isEscaped = true
|
2023-11-21 09:05:05 +00:00
|
|
|
escapedString.callbacks = callbacks
|
2022-07-02 06:09:45 +00:00
|
|
|
|
|
|
|
return escapedString
|
|
|
|
}
|
|
|
|
|
2023-11-06 22:09:04 +00:00
|
|
|
export const html = (
|
|
|
|
strings: TemplateStringsArray,
|
|
|
|
...values: unknown[]
|
|
|
|
): HtmlEscapedString | Promise<HtmlEscapedString> => {
|
2022-08-03 02:24:51 +00:00
|
|
|
const buffer: StringBuffer = ['']
|
2022-07-02 06:09:45 +00:00
|
|
|
|
|
|
|
for (let i = 0, len = strings.length - 1; i < len; i++) {
|
2022-08-03 02:24:51 +00:00
|
|
|
buffer[0] += strings[i]
|
2022-07-02 06:09:45 +00:00
|
|
|
|
2022-12-10 07:37:14 +00:00
|
|
|
const children =
|
|
|
|
values[i] instanceof Array ? (values[i] as Array<unknown>).flat(Infinity) : [values[i]]
|
2022-07-02 06:09:45 +00:00
|
|
|
for (let i = 0, len = children.length; i < len; i++) {
|
2022-12-10 07:37:14 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
const child = children[i] as any
|
2022-08-03 02:24:51 +00:00
|
|
|
if (typeof child === 'string') {
|
|
|
|
escapeToBuffer(child, buffer)
|
|
|
|
} else if (typeof child === 'boolean' || child === null || child === undefined) {
|
2022-07-02 06:09:45 +00:00
|
|
|
continue
|
2022-08-03 02:24:51 +00:00
|
|
|
} else if (
|
|
|
|
(typeof child === 'object' && (child as HtmlEscaped).isEscaped) ||
|
|
|
|
typeof child === 'number'
|
|
|
|
) {
|
2023-11-06 22:09:04 +00:00
|
|
|
const tmp = child.toString()
|
|
|
|
if (tmp instanceof Promise) {
|
|
|
|
buffer.unshift('', tmp)
|
|
|
|
} else {
|
|
|
|
buffer[0] += tmp
|
|
|
|
}
|
2023-12-16 22:35:34 +00:00
|
|
|
} else if (child instanceof Promise) {
|
|
|
|
buffer.unshift('', child)
|
2022-07-02 06:09:45 +00:00
|
|
|
} else {
|
2022-08-03 02:24:51 +00:00
|
|
|
escapeToBuffer(child.toString(), buffer)
|
2022-07-02 06:09:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-03 02:24:51 +00:00
|
|
|
buffer[0] += strings[strings.length - 1]
|
2022-07-02 06:09:45 +00:00
|
|
|
|
2023-11-08 20:03:54 +00:00
|
|
|
return buffer.length === 1 ? raw(buffer[0]) : stringBufferToString(buffer)
|
2022-07-02 06:09:45 +00:00
|
|
|
}
|