Skip to content
This repository was archived by the owner on Jun 22, 2023. It is now read-only.

Commit 4837ef2

Browse files
author
Boris Cherny
committed
cleanup: kill mapDeep
1 parent 603773f commit 4837ef2

File tree

3 files changed

+26
-41
lines changed

3 files changed

+26
-41
lines changed

src/index.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -122,15 +122,6 @@ export async function compile(schema: JSONSchema4, name: string, options: Partia
122122
return `(${Date.now() - start}ms)`
123123
}
124124

125-
const errors = validate(schema, name)
126-
if (errors.length) {
127-
errors.forEach(_ => error(_))
128-
throw new ValidationError()
129-
}
130-
if (process.env.VERBOSE) {
131-
log('green', 'validator', time(), '✅ No change')
132-
}
133-
134125
// normalize options
135126
if (!endsWith(_options.cwd, '/')) {
136127
_options.cwd += '/'
@@ -150,6 +141,15 @@ export async function compile(schema: JSONSchema4, name: string, options: Partia
150141
log('green', 'linker', time(), '✅ No change')
151142
}
152143

144+
const errors = validate(linked, name)
145+
if (errors.length) {
146+
errors.forEach(_ => error(_))
147+
throw new ValidationError()
148+
}
149+
if (process.env.VERBOSE) {
150+
log('green', 'validator', time(), '✅ No change')
151+
}
152+
153153
const normalized = normalize(linked, name, _options)
154154
if (process.env.VERBOSE) {
155155
if (isDeepStrictEqual(linked, normalized)) {

src/utils.ts

+13-28
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
import {deburr, isPlainObject, mapValues, trim, upperFirst} from 'lodash'
1+
import {deburr, isPlainObject, trim, upperFirst} from 'lodash'
22
import {basename, dirname, extname, join, normalize, sep} from 'path'
33
import {JSONSchema, LinkedJSONSchema} from './types/JSONSchema'
44

55
// TODO: pull out into a separate package
6-
// eslint-disable-next-line
76
export function Try<T>(fn: () => T, err: (e: Error) => any): T {
87
try {
98
return fn()
@@ -12,25 +11,6 @@ export function Try<T>(fn: () => T, err: (e: Error) => any): T {
1211
}
1312
}
1413

15-
export function mapDeep(object: object, fn: (value: object, key?: string) => object, key?: string): object {
16-
return fn(
17-
mapValues(object, (_: unknown, key) => {
18-
if (isPlainObject(_)) {
19-
return mapDeep(_ as object, fn, key)
20-
} else if (Array.isArray(_)) {
21-
return _.map(item => {
22-
if (isPlainObject(item)) {
23-
return mapDeep(item as object, fn, key)
24-
}
25-
return item
26-
})
27-
}
28-
return _
29-
}),
30-
key
31-
)
32-
}
33-
3414
// keys that shouldn't be traversed by the catchall step
3515
const BLACKLISTED_KEYS = new Set([
3616
'id',
@@ -70,34 +50,39 @@ const BLACKLISTED_KEYS = new Set([
7050

7151
function traverseObjectKeys(
7252
obj: Record<string, LinkedJSONSchema>,
73-
callback: (schema: LinkedJSONSchema) => void,
53+
callback: (schema: LinkedJSONSchema, key: string | null) => void,
7454
processed: Set<LinkedJSONSchema>
7555
) {
7656
Object.keys(obj).forEach(k => {
7757
if (obj[k] && typeof obj[k] === 'object' && !Array.isArray(obj[k])) {
78-
traverse(obj[k], callback, processed)
58+
traverse(obj[k], callback, processed, k)
7959
}
8060
})
8161
}
62+
8263
function traverseArray(
8364
arr: LinkedJSONSchema[],
84-
callback: (schema: LinkedJSONSchema) => void,
65+
callback: (schema: LinkedJSONSchema, key: string | null) => void,
8566
processed: Set<LinkedJSONSchema>
8667
) {
87-
arr.forEach(i => traverse(i, callback, processed))
68+
arr.forEach((s, k) => traverse(s, callback, processed, k.toString()))
8869
}
70+
8971
export function traverse(
9072
schema: LinkedJSONSchema,
91-
callback: (schema: LinkedJSONSchema) => void,
92-
processed = new Set<LinkedJSONSchema>()
73+
callback: (schema: LinkedJSONSchema, key: string | null) => void,
74+
processed = new Set<LinkedJSONSchema>(),
75+
key?: string
9376
): void {
9477
// Handle recursive schemas
9578
if (processed.has(schema)) {
9679
return
9780
}
9881

82+
// console.log('key', key + '\n')
83+
9984
processed.add(schema)
100-
callback(schema)
85+
callback(schema, key ?? null)
10186

10287
if (schema.anyOf) {
10388
traverseArray(schema.anyOf, callback, processed)

src/validator.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import {JSONSchema} from './types/JSONSchema'
2-
import {mapDeep} from './utils'
1+
import {JSONSchema, LinkedJSONSchema} from './types/JSONSchema'
2+
import {traverse} from './utils'
33

44
type Rule = (schema: JSONSchema) => boolean | void
55
const rules = new Map<string, Rule>()
@@ -37,10 +37,10 @@ rules.set('When minItems exists, minItems >= 0', schema => {
3737
}
3838
})
3939

40-
export function validate(schema: JSONSchema, filename: string): string[] {
40+
export function validate(schema: LinkedJSONSchema, filename: string): string[] {
4141
const errors: string[] = []
4242
rules.forEach((rule, ruleName) => {
43-
mapDeep(schema, (schema, key) => {
43+
traverse(schema, (schema, key) => {
4444
if (rule(schema) === false) {
4545
errors.push(`Error at key "${key}" in file "${filename}": ${ruleName}`)
4646
}

0 commit comments

Comments
 (0)