-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.es.js
391 lines (354 loc) · 10.3 KB
/
index.es.js
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
import Hjson from 'hjson'
import { isPlainObject, merge, omit } from 'lodash'
// const GenerateSchema = require('generate-schema/src/schemas/json.js');
import GenerateSchema from 'generate-schema/src/schemas/json'
export class HjsonData {
constructor () {
this.obj = null
// this.comments = null
this.startCommentSymbol = '/*'
this.endCommentSymbol = '*/'
}
parse (hjsonText, opts) {
opts = opts || { keepWsc: true }
this.obj = Hjson.parse(hjsonText, opts)
return this
}
stringify (opts) {
opts = opts || {}
return Hjson.rt.stringify(this.obj, opts)
}
// stringifyComments () {
// return Hjson.stringify(this.comments)
// }
getCommentJson (varName, pos) {
let hjson = this.getCommentHjson(varName, pos)
return hjson.obj
}
getCommentHjson (varName, pos) {
let comment = this.getComment(varName, pos)
let commentHjson = new HjsonData().parse(comment)
this.parseKey(commentHjson.obj, [])
return commentHjson
}
parseKey (obj) {
if (Array.isArray(obj)) {
obj.forEach((item, index) => {
if (isPlainObject(item)) {
this.parseKey(item)
}
})
} else if (isPlainObject(obj)) {
const keys = Object.keys(obj)
let newHjson = null
keys.forEach(key => {
const value = this.parseKey(obj[key])
const arr = key.split('|')
if (isPlainObject(obj)) {
this.parseKey(value)
}
if (arr.length > 1) {
let newKey = arr[0]
let componentName = arr[1]
let params = arr.slice(2)
const component = {
__componentName: componentName,
__componentParams: params,
...value
}
params.forEach((param, index) => {
component['__componentParam' + index] = param
})
obj[newKey] = component
// obj[newKey] = obj[newKey] || [];
// obj[newKey].push(component);
delete obj[key]
}
})
}
return obj
}
restoreKey (data, parentKey, parentNode) {
if (isPlainObject(data)) {
if ('__componentName' in data) {
let newKey = [parentKey, data.__componentName]
.concat(data.__componentParams || []) // data.__componentParams 不存在 时[]
.join('|')
parentNode[newKey] = data
delete parentNode[parentKey]
delete data.__componentName
if (data.__componentParams) {
delete data.__componentParams
}
} else {
Object.keys(data).forEach(key => {
this.restoreKey(data[key], key, data)
})
}
} else if (Array.isArray(data)) {
data.forEach((item, index) => {
this.restoreKey(item, index, data)
})
}
}
setCommentJson (varName, json, pos) {
let cloneJson = clone(json)
this.restoreKey(cloneJson)
let comment = Hjson.stringify(cloneJson, {
// bracesSameLine: true,
emitRootBraces: false,
separator: true
})
comment = this.unwrapBrace(comment)
this.setComment(varName, comment, pos)
return this
}
getRootCommentJson (pos) {
let hjson = this.getRootCommentHjson(pos)
return hjson.obj
}
getRootCommentHjson (pos) {
let comment = this.getRootComment(pos)
let commentHjson = new HjsonData().parse(comment)
this.parseKey(commentHjson.obj, [])
return commentHjson
}
setRootCommentJson (json, pos) {
let cloneJson = clone(json)
this.restoreKey(cloneJson)
let comment = Hjson.stringify(cloneJson, {
// bracesSameLine: true,
emitRootBraces: false,
separator: true
})
comment = this.unwrapBrace(comment)
this.setRootComment(comment, pos)
return this
}
getRootComment (pos = 0) {
const originComments = this.getRootOriginComments(this.obj)
const rootComment = originComments.r[pos]
return this.unwrapCommentSymbol(rootComment)
}
setRootComment (value, pos = 0) {
let rootComment = this.wrapCommentSymbol(value)
const originComments = this.getRootOriginComments(this.obj)
originComments.r[pos] = originComments.r[pos] || ['', '']
originComments.r[pos] = rootComment
}
getComment (varName, pos = 0) {
let { lastObj, lastKey } = this.getLastVarInfo(varName)
const originComments = this.getOriginComments(lastObj)
const comment = (originComments.c || originComments.a)[lastKey][pos]
return this.unwrapCommentSymbol(comment)
}
setComment (varName, value, pos = 0) {
let { lastObj, lastKey } = this.getLastVarInfo(varName)
const originComments = this.getOriginComments(lastObj)
if ('c' in originComments) {
originComments.c[lastKey] = originComments.c[lastKey] || ['', '']
originComments.c[lastKey][pos] = this.wrapCommentSymbol(value)
} else {
originComments.a[lastKey] = originComments.a[lastKey] || ['', '']
originComments.a[lastKey][pos] = this.wrapCommentSymbol(value)
}
}
getLastVarInfo (varName) {
let lastObj = this.obj
let lastKey = varName
if (Array.isArray(varName)) {
let value = this.obj
varName.forEach((key, index) => {
if (index === varName.length - 1) {
lastObj = value
lastKey = key
}
value = value[key]
})
}
return {
lastObj,
lastKey
}
}
getVar (varName) {
if (Array.isArray(varName)) {
let value = this.obj
varName.forEach(key => {
value = value[key]
})
return value
} else if (varName) {
return this.obj[varName]
} else {
return this.obj
}
}
setVar (varName, value, comment) {
let lastObj = this.obj
let lastKey = varName
if (Array.isArray(varName)) {
let value = this.obj
varName.forEach((key, index) => {
if (index === varName.length - 1) {
lastObj = value
lastKey = key
}
value = value[key]
})
lastObj[lastKey] = value
} else {
this.obj[varName] = value
}
this.ensureKeyExist(lastObj, lastKey)
if (comment) {
this.setComment(varName, comment)
}
return this
}
ensureKeyExist (obj, key) {
const originComments = this.getOriginComments(obj)
if (originComments.o.indexOf(key) === -1) {
originComments.o.push(key)
}
}
getRootOriginComments (obj) {
obj.__COMMENTS__ = obj.__COMMENTS__ || { c: {}, o: [], r: ['', ''] }
obj.__COMMENTS__.r = obj.__COMMENTS__.r || ['', '']
return obj.__COMMENTS__
}
getOriginComments (obj) {
obj.__COMMENTS__ = obj.__COMMENTS__ || { c: {}, o: [], r: ['', ''] }
return obj.__COMMENTS__
}
setOriginComments (obj, originComments) {
obj.__COMMENTS__ = originComments
}
updateVar (varName, newVarName) {
let { lastObj, lastKey } = this.getLastVarInfo(varName)
let lastValue = lastObj[lastKey]
delete lastObj[lastKey]
lastObj[newVarName] = lastValue
}
wrapCommentSymbol (value) {
return `${this.startCommentSymbol}${value}${this.endCommentSymbol}`
}
unwrapCommentSymbol (value) {
let startCommentSymbol = this.startCommentSymbol.replace(
/([\*\/\\])/g,
'\\$1'
)
let endCommentSymbol = this.endCommentSymbol.replace(/([\*\/\\])/g, '\\$1')
let newValue = value
.replace(new RegExp(`^\\s*${startCommentSymbol}`), '')
.replace(new RegExp(`${endCommentSymbol}\\s*$`), '')
return newValue
}
unwrapBrace (value) {
let newValue = value
.replace(new RegExp(`^\\s*\\{`), '')
.replace(new RegExp(`\\}\\s*$`), '')
return `${newValue}`
}
}
function clone (obj) {
return JSON.parse(JSON.stringify(obj))
}
export default HjsonData
export function objToHjsonStr (obj) {
return jsonToHjsonStr(JSON.stringify(obj))
}
export function objToHjson (obj) {
const hj = new HjsonData().parse(JSON.stringify(obj))
return hj
}
export function jsonToHjsonStr (json) {
const hj = new HjsonData().parse(json)
return hj.stringify()
}
export function hjsonStrToObj (hjson) {
const hj = new HjsonData().parse(hjson)
return hj.obj
}
export function hjsonToObj (hjson) {
return JSON.parse(JSON.stringify(hjson.obj))
}
export function hjsonToHjsonStr (hjson) {
return hjson.stringify()
}
export function hjsonToJsonSchema (text) {
const hjson = new HjsonData().parse(text)
const jsonSchema = GenerateSchema('', hjson.obj)
addComments(jsonSchema, hjson, [])
return jsonSchema
}
export function jsonSchemaToHjson (jsonSchema) {
const obj = jsonSchemaToJson(jsonSchema)
const hjson = objToHjson(obj)
jsonSchemaMergeHjson(jsonSchema, hjson)
return hjson.stringify()
}
function addComments (jsonSchema, hjson, paths) {
const type = jsonSchema.type
const key = paths[paths.length - 1]
let comments = null
if (paths.length === 0) {
comments = hjson.getRootCommentJson()
} else {
comments = hjson.getCommentJson(paths)
}
merge(jsonSchema, comments)
// jsonSchema = {
// ...jsonSchema,
// ...comments,
// }
if (type === 'object') {
Object.keys(jsonSchema.properties).forEach(key => {
const value = jsonSchema.properties[key]
addComments(value, hjson, paths.concat(key))
})
} else if (type === 'array' && Object.keys(jsonSchema.items).length) {
addComments(jsonSchema.items, hjson, paths.concat(0))
}
return jsonSchema
}
function jsonSchemaToJson (jsonSchema) {
let res = null
if (jsonSchema.type === 'object') {
res = {}
Object.keys(jsonSchema.properties).forEach(key => {
let jsonSchemaItem = jsonSchema.properties[key]
res[key] = jsonSchemaToJson(jsonSchemaItem)
})
} else if (jsonSchema.type === 'array') {
res = [jsonSchemaToJson(jsonSchema.items)]
} else {
res = jsonSchema.default
}
return res
}
function jsonSchemaMergeHjson (jsonSchema, hjson, paths = []) {
if (!paths.length) {
hjson.setRootCommentJson({
...omit(jsonSchema, [
'properties',
'items',
'$schema',
'required',
'title'
])
})
} else {
hjson.setCommentJson(paths, {
...omit(jsonSchema, ['properties', 'items', '$schema', 'required'])
})
}
if (jsonSchema.type === 'object') {
Object.keys(jsonSchema.properties).forEach(key => {
let jsonSchemaItem = jsonSchema.properties[key]
jsonSchemaMergeHjson(jsonSchemaItem, hjson, paths.concat(key))
})
} else if (jsonSchema.type === 'array') {
jsonSchemaMergeHjson(jsonSchema.items, hjson, paths.concat(0))
}
}