File size: 1,396 Bytes
369fac9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { truncator, inspectList } from './helpers'

export function inspectAttribute([key, value], options) {
  options.truncate -= 3
  if (!value) {
    return `${options.stylize(key, 'yellow')}`
  }
  return `${options.stylize(key, 'yellow')}=${options.stylize(`"${value}"`, 'string')}`
}

export function inspectHTMLCollection(collection, options) {
  // eslint-disable-next-line no-use-before-define
  return inspectList(collection, options, inspectHTML, '\n')
}

export default function inspectHTML(element, options) {
  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 => [key, element.getAttribute(key)]),
      options,
      inspectAttribute,
      ' '
    )
  }
  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}`
}