-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathstringifyCollection.ts
180 lines (165 loc) · 5.05 KB
/
stringifyCollection.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
import { Collection } from '../nodes/Collection.js'
import { isNode, isPair } from '../nodes/Node.js'
import { stringify, StringifyContext } from './stringify.js'
import { indentComment, lineComment } from './stringifyComment.js'
interface StringifyCollectionOptions {
blockItemPrefix: string
flowChars: { start: '{'; end: '}' } | { start: '['; end: ']' }
itemIndent: string
onChompKeep?: () => void
onComment?: () => void
}
export function stringifyCollection(
collection: Readonly<Collection>,
ctx: StringifyContext,
options: StringifyCollectionOptions
) {
const flow = ctx.inFlow ?? collection.flow
const stringify = flow ? stringifyFlowCollection : stringifyBlockCollection
return stringify(collection, ctx, options)
}
function stringifyBlockCollection(
{ comment, items }: Readonly<Collection>,
ctx: StringifyContext,
{
blockItemPrefix,
flowChars,
itemIndent,
onChompKeep,
onComment
}: StringifyCollectionOptions
) {
const {
indent,
options: { commentString }
} = ctx
const itemCtx = Object.assign({}, ctx, { indent: itemIndent, type: null })
let chompKeep = false // flag for the preceding node's status
const lines: string[] = []
for (let i = 0; i < items.length; ++i) {
const item = items[i]
let comment: string | null = null
if (isNode(item)) {
if (!chompKeep && item.spaceBefore) lines.push('')
addCommentBefore(ctx, lines, item.commentBefore, chompKeep)
if (item.comment) comment = item.comment
} else if (isPair(item)) {
const ik = isNode(item.key) ? item.key : null
if (ik) {
if (!chompKeep && ik.spaceBefore) lines.push('')
addCommentBefore(ctx, lines, ik.commentBefore, chompKeep)
}
}
chompKeep = false
let str = stringify(
item,
itemCtx,
() => (comment = null),
() => (chompKeep = true)
)
if (comment) str += lineComment(str, itemIndent, commentString(comment))
if (chompKeep && comment) chompKeep = false
lines.push(blockItemPrefix + str)
}
let str: string
if (lines.length === 0) {
str = flowChars.start + flowChars.end
} else {
str = lines[0]
for (let i = 1; i < lines.length; ++i) {
const line = lines[i]
str += line ? `\n${indent}${line}` : '\n'
}
}
if (comment) {
str += '\n' + indentComment(commentString(comment), indent)
if (onComment) onComment()
} else if (chompKeep && onChompKeep) onChompKeep()
return str
}
function stringifyFlowCollection(
{ comment, items }: Readonly<Collection>,
ctx: StringifyContext,
{ flowChars, itemIndent, onComment }: StringifyCollectionOptions
) {
const {
indent,
indentStep,
options: { commentString }
} = ctx
itemIndent += indentStep
const itemCtx = Object.assign({}, ctx, {
indent: itemIndent,
inFlow: true,
type: null
})
let reqNewline = false
let linesAtValue = 0
const lines: string[] = []
for (let i = 0; i < items.length; ++i) {
const item = items[i]
let comment: string | null = null
if (isNode(item)) {
if (item.spaceBefore) lines.push('')
addCommentBefore(ctx, lines, item.commentBefore, false)
if (item.comment) comment = item.comment
} else if (isPair(item)) {
const ik = isNode(item.key) ? item.key : null
if (ik) {
if (ik.spaceBefore) lines.push('')
addCommentBefore(ctx, lines, ik.commentBefore, false)
if (ik.comment) reqNewline = true
}
const iv = isNode(item.value) ? item.value : null
if (iv) {
if (iv.comment) comment = iv.comment
if (iv.commentBefore) reqNewline = true
} else if (item.value == null && ik && ik.comment) {
comment = ik.comment
}
}
if (comment) reqNewline = true
let str = stringify(item, itemCtx, () => (comment = null))
if (i < items.length - 1) str += ','
if (comment) str += lineComment(str, itemIndent, commentString(comment))
if (!reqNewline && (lines.length > linesAtValue || str.includes('\n')))
reqNewline = true
lines.push(str)
linesAtValue = lines.length
}
let str: string
const { start, end } = flowChars
if (lines.length === 0) {
str = start + end
} else {
if (!reqNewline) {
const len = lines.reduce((sum, line) => sum + line.length + 2, 2)
reqNewline = len > Collection.maxFlowStringSingleLineLength
}
if (reqNewline) {
str = start
for (const line of lines)
str += line ? `\n${indentStep}${indent}${line}` : '\n'
str += `\n${indent}${end}`
} else {
str = `${start} ${lines.join(' ')} ${end}`
}
}
if (comment) {
str += lineComment(str, commentString(comment), indent)
if (onComment) onComment()
}
return str
}
function addCommentBefore(
{ indent, options: { commentString } }: StringifyContext,
lines: string[],
comment: string | null | undefined,
chompKeep: boolean
) {
if (comment && chompKeep) comment = comment.replace(/^\n+/, '')
if (comment) {
const ic = indentComment(commentString(comment), indent)
lines.push(ic.trimStart()) // Avoid double indent on first line
}
}