shinkansen-transmission 2.2.18 → 2.2.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -24,14 +24,6 @@ export const isNullSchema = ({ type } = {}) => type === 'null'
|
|
24
24
|
|
25
25
|
export const isPrimitive = (v) => !isObject(v) && !isArray(v)
|
26
26
|
|
27
|
-
export const toConstValue = (schema = {}) => Reflect.get(schema, 'const')
|
28
|
-
|
29
|
-
export const isConstValue = (schema = {}) => Reflect.has(schema, 'const')
|
30
|
-
|
31
|
-
export const toDefaultValue = (schema = {}) => Reflect.get(schema, 'default')
|
32
|
-
|
33
|
-
export const isDefaultValue = (schema = {}) => Reflect.has(schema, 'default')
|
34
|
-
|
35
27
|
export const getTitle = ({ title } = {}) => (title ? { title } : {})
|
36
28
|
|
37
29
|
export const getDescription = ({ description } = {}) => (description ? { description } : {})
|
@@ -157,15 +149,17 @@ export function getMetaValue (values = {}, uri = '#', schema = {}) {
|
|
157
149
|
return {}
|
158
150
|
}
|
159
151
|
|
160
|
-
export
|
161
|
-
|
162
|
-
|
163
|
-
?
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
152
|
+
export function transformValue (schema) {
|
153
|
+
return (
|
154
|
+
isObject(schema)
|
155
|
+
? hasConst(schema)
|
156
|
+
? getConst(schema)
|
157
|
+
: hasDefault(schema)
|
158
|
+
? getDefault(schema)
|
159
|
+
: schema
|
160
|
+
: schema
|
161
|
+
)
|
162
|
+
}
|
169
163
|
|
170
164
|
export function hasValue (values = {}, uri = '#', schema = {}) {
|
171
165
|
if (Reflect.has(values, uri)) {
|
@@ -3,10 +3,6 @@ import debug from 'debug'
|
|
3
3
|
import equal from 'fast-deep-equal'
|
4
4
|
|
5
5
|
import {
|
6
|
-
isConstValue,
|
7
|
-
toConstValue,
|
8
|
-
isDefaultValue,
|
9
|
-
toDefaultValue,
|
10
6
|
isObject,
|
11
7
|
isArray,
|
12
8
|
hasEnum,
|
@@ -15,7 +11,8 @@ import {
|
|
15
11
|
getAnyOf,
|
16
12
|
hasOneOf,
|
17
13
|
getOneOf,
|
18
|
-
getUri
|
14
|
+
getUri,
|
15
|
+
transformValue
|
19
16
|
} from 'shinkansen-transmission/transmission/common'
|
20
17
|
|
21
18
|
const log = debug('shinkansen-transmission/from-document-to-hash')
|
@@ -132,15 +129,9 @@ export function getSchema (schema = {}, parentUri = '', uri = '') {
|
|
132
129
|
}
|
133
130
|
}
|
134
131
|
|
135
|
-
export
|
136
|
-
|
137
|
-
|
138
|
-
? toConstValue(schema)
|
139
|
-
: isDefaultValue(schema)
|
140
|
-
? toDefaultValue(schema)
|
141
|
-
: schema // object
|
142
|
-
: schema // primitive or array
|
143
|
-
)
|
132
|
+
export {
|
133
|
+
transformValue
|
134
|
+
}
|
144
135
|
|
145
136
|
export function transformValueIndexFor (array, value) {
|
146
137
|
/*
|
@@ -4,17 +4,14 @@ import {
|
|
4
4
|
isArray,
|
5
5
|
isObject,
|
6
6
|
isPrimitive,
|
7
|
-
isConstValue,
|
8
|
-
toConstValue,
|
9
|
-
isDefaultValue,
|
10
|
-
toDefaultValue,
|
11
7
|
hasEnum,
|
12
8
|
getEnum,
|
13
9
|
hasAnyOf,
|
14
10
|
getAnyOf,
|
15
11
|
hasOneOf,
|
16
12
|
getOneOf,
|
17
|
-
getUri
|
13
|
+
getUri,
|
14
|
+
transformValue
|
18
15
|
} from 'shinkansen-transmission/transmission/common'
|
19
16
|
|
20
17
|
const log = debug('shinkansen-transmission/from-hash-to-document')
|
@@ -61,15 +58,9 @@ export function toNumber (v) {
|
|
61
58
|
|
62
59
|
const handleError = ({ message = 'No error message defined' }) => { log(message) }
|
63
60
|
|
64
|
-
export
|
65
|
-
|
66
|
-
|
67
|
-
? toConstValue(schema)
|
68
|
-
: isDefaultValue(schema)
|
69
|
-
? toDefaultValue(schema)
|
70
|
-
: schema
|
71
|
-
: schema
|
72
|
-
)
|
61
|
+
export {
|
62
|
+
transformValue
|
63
|
+
}
|
73
64
|
|
74
65
|
export function transformValueFor (value, array) {
|
75
66
|
/*
|