2018-11-09 18:57:24 +00:00
|
|
|
'use strict'
|
|
|
|
const indent = require('indent-string')
|
|
|
|
const config = require('./config')
|
|
|
|
|
2018-12-15 07:43:22 +00:00
|
|
|
function format(value, style, highlightStyle, regexp, transform = x => x) {
|
|
|
|
if (!regexp) {
|
2018-12-15 08:04:22 +00:00
|
|
|
return style(transform(value))
|
2018-12-15 07:43:22 +00:00
|
|
|
}
|
|
|
|
const marked = value
|
|
|
|
.replace(regexp, s => '<highlight>' + s + '<highlight>')
|
|
|
|
|
|
|
|
return transform(marked)
|
|
|
|
.split(/<highlight>/g)
|
|
|
|
.map((s, i) => i % 2 !== 0 ? highlightStyle(s) : style(s))
|
|
|
|
.join('')
|
|
|
|
}
|
|
|
|
|
2018-12-01 17:29:44 +00:00
|
|
|
function print(input, options = {}) {
|
2018-12-14 18:13:39 +00:00
|
|
|
const {expanded, highlight, currentPath} = options
|
2018-11-09 18:57:24 +00:00
|
|
|
const index = new Map()
|
|
|
|
let row = 0
|
|
|
|
|
|
|
|
function doPrint(v, path = '') {
|
|
|
|
index.set(row, path)
|
|
|
|
|
2018-12-15 07:43:22 +00:00
|
|
|
// Code for highlighting parts become cumbersome.
|
|
|
|
// Maybe we should refactor this part.
|
|
|
|
const highlightStyle = (currentPath === path) ? config.highlightCurrent : config.highlight
|
|
|
|
const formatStyle = (v, style) => format(JSON.stringify(v), style, highlightStyle, highlight)
|
|
|
|
const formatText = (v, style, path) => {
|
|
|
|
const highlightStyle = (currentPath === path) ? config.highlightCurrent : config.highlight
|
|
|
|
return format(v, style, highlightStyle, highlight, JSON.stringify)
|
|
|
|
}
|
|
|
|
|
2018-11-09 18:57:24 +00:00
|
|
|
const eol = () => {
|
|
|
|
row++
|
|
|
|
return '\n'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof v === 'undefined') {
|
|
|
|
return void 0
|
|
|
|
}
|
|
|
|
|
|
|
|
if (v === null) {
|
2018-12-15 07:43:22 +00:00
|
|
|
return formatStyle(v, config.null)
|
2018-11-09 18:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof v === 'number' && Number.isFinite(v)) {
|
2018-12-15 07:43:22 +00:00
|
|
|
return formatStyle(v, config.number)
|
2018-11-09 18:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof v === 'boolean') {
|
2018-12-15 07:43:22 +00:00
|
|
|
return formatStyle(v, config.boolean)
|
2018-11-09 18:57:24 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof v === 'string') {
|
2018-12-15 07:43:22 +00:00
|
|
|
return formatText(v, config.string, path)
|
2018-11-09 18:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Array.isArray(v)) {
|
2018-12-07 15:51:10 +00:00
|
|
|
let output = config.bracket('[')
|
2018-11-09 18:57:24 +00:00
|
|
|
const len = v.length
|
|
|
|
|
2018-12-07 15:51:10 +00:00
|
|
|
if (len > 0) {
|
|
|
|
if (expanded && !expanded.has(path)) {
|
|
|
|
output += '\u2026'
|
|
|
|
} else {
|
|
|
|
output += eol()
|
|
|
|
let i = 0
|
|
|
|
for (let item of v) {
|
|
|
|
const value = typeof item === 'undefined' ? null : item // JSON.stringify compatibility
|
|
|
|
output += indent(doPrint(value, path + '[' + i + ']'), config.space)
|
|
|
|
output += i++ < len - 1 ? config.comma(',') : ''
|
|
|
|
output += eol()
|
|
|
|
}
|
|
|
|
}
|
2018-11-09 18:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return output + config.bracket(']')
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof v === 'object' && v.constructor === Object) {
|
2018-12-07 15:51:10 +00:00
|
|
|
let output = config.bracket('{')
|
2018-11-09 18:57:24 +00:00
|
|
|
|
2018-12-07 15:51:10 +00:00
|
|
|
const entries = Object.entries(v).filter(([key, value]) => typeof value !== 'undefined') // JSON.stringify compatibility
|
2018-11-09 18:57:24 +00:00
|
|
|
const len = entries.length
|
|
|
|
|
2018-12-07 15:51:10 +00:00
|
|
|
if (len > 0) {
|
|
|
|
if (expanded && !expanded.has(path)) {
|
|
|
|
output += '\u2026'
|
|
|
|
} else {
|
|
|
|
output += eol()
|
|
|
|
let i = 0
|
|
|
|
for (let [key, value] of entries) {
|
2018-12-15 07:43:22 +00:00
|
|
|
const part = formatText(key, config.key, path + '.' + key) + config.colon(':') + ' ' + doPrint(value, path + '.' + key)
|
2018-12-07 15:51:10 +00:00
|
|
|
output += indent(part, config.space)
|
|
|
|
output += i++ < len - 1 ? config.comma(',') : ''
|
|
|
|
output += eol()
|
|
|
|
}
|
|
|
|
}
|
2018-11-09 18:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return output + config.bracket('}')
|
|
|
|
}
|
|
|
|
|
2018-12-07 15:51:10 +00:00
|
|
|
return JSON.stringify(v, null, config.space)
|
2018-11-09 18:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return [doPrint(input), index]
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = print
|