-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathNode.ts
More file actions
131 lines (113 loc) · 3.69 KB
/
Copy pathNode.ts
File metadata and controls
131 lines (113 loc) · 3.69 KB
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
import { applyReviver } from '../doc/applyReviver.ts'
import type { Document } from '../doc/Document.ts'
import type { ToJSOptions } from '../options.ts'
import type { Token } from '../parse/cst.ts'
import type { StringifyContext } from '../stringify/stringify.ts'
import type { Alias } from './Alias.ts'
import { isDocument, NODE_TYPE } from './identity.ts'
import type { Scalar } from './Scalar.ts'
import type { ToJSContext } from './toJS.ts'
import { toJS } from './toJS.ts'
import type { MapLike, YAMLMap } from './YAMLMap.ts'
import type { YAMLSeq } from './YAMLSeq.ts'
export type Node<T = unknown> =
| Alias
| Scalar<T>
| YAMLMap<unknown, T>
| YAMLSeq<T>
/** Utility type mapper */
export type NodeType<T> = T extends
| string
| number
| bigint
| boolean
| null
| undefined
? Scalar<T>
: T extends Date
? Scalar<string | Date>
: T extends Array<any>
? YAMLSeq<NodeType<T[number]>>
: T extends { [key: string]: any }
? YAMLMap<NodeType<keyof T>, NodeType<T[keyof T]>>
: T extends { [key: number]: any } // Merge with previous once supported in all TS versions
? YAMLMap<NodeType<keyof T>, NodeType<T[keyof T]>>
: Node
export type ParsedNode =
| Alias.Parsed
| Scalar.Parsed
| YAMLMap.Parsed
| YAMLSeq.Parsed
/** `[start, value-end, node-end]` */
export type Range = [number, number, number]
export abstract class NodeBase {
declare readonly [NODE_TYPE]: symbol
/** A comment on or immediately after this */
declare comment?: string | null
/** A comment before this */
declare commentBefore?: string | null
/** A comment after key: */
declare commentAfterKey?: string | null
/**
* The `[start, value-end, node-end]` character offsets for the part of the
* source parsed into this node (undefined if not parsed). The `value-end`
* and `node-end` positions are themselves not included in their respective
* ranges.
*/
declare range?: Range | null
/** A blank line before this node and its commentBefore */
declare spaceBefore?: boolean
/** The CST token that was composed into this node. */
declare srcToken?: Token
/** A fully qualified tag, if required */
declare tag?: string
/**
* Customize the way that a key-value pair is resolved.
* Used for YAML 1.1 !!merge << handling.
*/
declare addToJSMap?: (
ctx: ToJSContext | undefined,
map: MapLike,
value: unknown
) => void
/** A plain JS representation of this node */
abstract toJSON(): any
abstract toString(
ctx?: StringifyContext,
onComment?: () => void,
onChompKeep?: () => void
): string
constructor(type: symbol) {
Object.defineProperty(this, NODE_TYPE, { value: type })
}
/** Create a copy of this node. */
clone(): NodeBase {
const copy: NodeBase = Object.create(
Object.getPrototypeOf(this),
Object.getOwnPropertyDescriptors(this)
)
if (this.range) copy.range = this.range.slice() as NodeBase['range']
return copy
}
/** A plain JavaScript representation of this node. */
toJS(
doc: Document<Node, boolean>,
{ mapAsMap, maxAliasCount, onAnchor, reviver }: ToJSOptions = {}
): any {
if (!isDocument(doc)) throw new TypeError('A document argument is required')
const ctx: ToJSContext = {
anchors: new Map(),
doc,
keep: true,
mapAsMap: mapAsMap === true,
mapKeyWarned: false,
maxAliasCount: typeof maxAliasCount === 'number' ? maxAliasCount : 100
}
const res = toJS(this, '', ctx)
if (typeof onAnchor === 'function')
for (const { count, res } of ctx.anchors.values()) onAnchor(res, count)
return typeof reviver === 'function'
? applyReviver(reviver, { '': res }, '', res)
: res
}
}