-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathhtml.ts
43 lines (40 loc) · 1.63 KB
/
html.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { inspectList, truncator } from './helpers.js'
import type { Inspect, Options } from './types.js'
export function inspectAttribute([key, value]: [unknown, unknown], options: Options) {
options.truncate -= 3
if (!value) {
return `${options.stylize(String(key), 'yellow')}`
}
return `${options.stylize(String(key), 'yellow')}=${options.stylize(`"${value}"`, 'string')}`
}
// @ts-ignore (Deno doesn't have Element)
export function inspectHTMLCollection(collection: ArrayLike<Element>, options: Options): string {
// eslint-disable-next-line no-use-before-define
return inspectList(collection, options, inspectHTML as Inspect, '\n')
}
// @ts-ignore (Deno doesn't have Element)
export default function inspectHTML(element: Element, options: Options): string {
const properties = element.getAttributeNames()
const name = element.tagName.toLowerCase()
const head = options.stylize(`<${name}`, 'special')
const headClose = options.stylize(`>`, 'special')
const tail = options.stylize(`</${name}>`, 'special')
options.truncate -= name.length * 2 + 5
let propertyContents = ''
if (properties.length > 0) {
propertyContents += ' '
propertyContents += inspectList(
properties.map((key: string) => [key, element.getAttribute(key)]),
options,
inspectAttribute as Inspect,
' '
)
}
options.truncate -= propertyContents.length
const truncate = options.truncate
let children = inspectHTMLCollection(element.children, options)
if (children && children.length > truncate) {
children = `${truncator}(${element.children.length})`
}
return `${head}${propertyContents}${headClose}${children}${tail}`
}