forked from mapbox/mapbox-gl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate-flow-typed-style-spec.js
268 lines (209 loc) · 8.66 KB
/
generate-flow-typed-style-spec.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
/* eslint-disable flowtype/require-valid-file-annotation */
import fs from 'fs';
import assert from 'assert';
import spec from '../src/style-spec/reference/v8.json';
import {supportsPropertyExpression, supportsZoomExpression} from '../src/style-spec/util/properties.js';
function flowEnum(values) {
if (Array.isArray(values)) {
return values.map(JSON.stringify).join(' | ');
} else {
return Object.keys(values).map(JSON.stringify).join(' | ');
}
}
function flowType(property) {
if (typeof property.type === 'function') {
return property.type();
}
const baseType = (() => {
switch (property.type) {
case 'string':
case 'number':
case 'boolean':
return property.type;
case 'enum':
return flowEnum(property.values);
case 'array':
if (property.value === 'light-3d') {
return 'Array<LightsSpecification>';
}
const elementType = flowType(typeof property.value === 'string' ? {type: property.value, values: property.values} : property.value)
if (property.length) {
return `[${Array(property.length).fill(elementType).join(', ')}]`;
} else {
return `Array<${elementType}>`;
}
case '$root':
return 'StyleSpecification';
case '*':
return 'mixed';
default:
return `${property.type.slice(0, 1).toUpperCase()}${property.type.slice(1)}Specification`;
}
})();
if (supportsPropertyExpression(property)) {
return `DataDrivenPropertyValueSpecification<${baseType}>`;
} else if (supportsZoomExpression(property)) {
return `PropertyValueSpecification<${baseType}>`;
} else if (property.expression) {
return `ExpressionSpecification`;
} else {
return baseType;
}
}
function flowProperty(key, property) {
assert(property, `Property not found in the style-specification for ${key}`);
if (key === '*') {
return `[_: string]: ${flowType(property)}`;
} else {
return `"${key}"${property.required ? '' : '?'}: ${property['optional'] ? '?' : ''}${flowType(property)}`;
}
}
function flowObjectDeclaration(key, properties) {
assert(properties, `Properties not found in the style-specification for ${key}`);
return `export type ${key} = ${flowObject(properties, '', '*' in properties ? '' : '|')}`;
}
function flowObject(properties, indent, sealing = '') {
return `{${sealing}
${Object.keys(properties)
.map(k => {
const property = ` ${indent}${flowProperty(k, properties[k])}`;
if (properties[k].transition) {
const propertyTransition = ` ${indent}"${k}-transition"?: TransitionSpecification`;
return [property, propertyTransition].join(',\n');
} else {
return property;
}
})
.join(',\n')}
${indent}${sealing}}`;
}
function flowSourceTypeName(key) {
return key.replace(/source_(.)(.*)/, (_, _1, _2) => `${_1.toUpperCase()}${_2}SourceSpecification`)
.replace(/_dem/, 'DEM')
.replace(/_array/, 'Array')
.replace(/Geojson/, 'GeoJSON');
}
function flowLightTypeName(key) {
return key.split('-').map(k => k.replace(/(.)(.*)/, (_, _1, _2) => `${_1.toUpperCase()}${_2}`)).concat('LightSpecification').join('');
}
function flowLayerTypeName(key) {
return key.split('-').map(k => k.replace(/(.)(.*)/, (_, _1, _2) => `${_1.toUpperCase()}${_2}`)).concat('LayerSpecification').join('');
}
function flowLayer(key) {
const layer = spec.layer;
layer.type = {
type: 'enum',
values: [key],
required: true
};
delete layer.ref;
delete layer['paint.*'];
if (spec[`paint_${key}`]) {
layer.paint.type = () => {
return flowObject(spec[`paint_${key}`], ' ', '|');
};
} else {
delete layer.paint;
}
if (spec[`layout_${key}`]) {
layer.layout.type = () => {
return flowObject(spec[`layout_${key}`], ' ', '|');
};
} else {
delete layer.layout;
}
if (key === 'background' || key === 'sky' || key === 'slot') {
delete layer.source;
delete layer['source-layer'];
delete layer.filter;
} else {
layer.source.required = true;
}
if (key === 'slot') {
delete layer.minzoom;
delete layer.maxzoom;
}
return flowObjectDeclaration(flowLayerTypeName(key), layer);
}
function flowLight(key) {
const light = spec['light-3d'];
light.type = {
type: 'enum',
values: [key],
required: true
};
light.properties.type = () => {
return flowObject(spec[`properties_light_${key}`], ' ', '|');
};
return flowObjectDeclaration(flowLightTypeName(key), light);
}
const lightTypes = Object.keys(spec['light-3d'].type.values);
const layerTypes = Object.keys(spec.layer.type.values);
fs.writeFileSync('src/style-spec/types.js', `// @flow
// Generated code; do not edit. Edit build/generate-flow-typed-style-spec.js instead.
/* eslint-disable */
export type ColorSpecification = string;
export type FormattedSpecification = string;
export type ResolvedImageSpecification = string;
export type PromoteIdSpecification = {[_: string]: string} | string;
export type FilterSpecification =
| ['has', string]
| ['!has', string]
| ['==', string, string | number | boolean]
| ['!=', string, string | number | boolean]
| ['>', string, string | number | boolean]
| ['>=', string, string | number | boolean]
| ['<', string, string | number | boolean]
| ['<=', string, string | number | boolean]
| Array<string | FilterSpecification>; // Can't type in, !in, all, any, none -- https://github.com/facebook/flow/issues/2443
export type TransitionSpecification = {
duration?: number,
delay?: number
};
// Note: doesn't capture interpolatable vs. non-interpolatable types.
export type CameraFunctionSpecification<T> =
| {| type: 'exponential', stops: Array<[number, T]> |}
| {| type: 'interval', stops: Array<[number, T]> |};
export type SourceFunctionSpecification<T> =
| {| type: 'exponential', stops: Array<[number, T]>, property: string, default?: T |}
| {| type: 'interval', stops: Array<[number, T]>, property: string, default?: T |}
| {| type: 'categorical', stops: Array<[string | number | boolean, T]>, property: string, default?: T |}
| {| type: 'identity', property: string, default?: T |};
export type CompositeFunctionSpecification<T> =
| {| type: 'exponential', stops: Array<[{zoom: number, value: number}, T]>, property: string, default?: T |}
| {| type: 'interval', stops: Array<[{zoom: number, value: number}, T]>, property: string, default?: T |}
| {| type: 'categorical', stops: Array<[{zoom: number, value: string | number | boolean}, T]>, property: string, default?: T |};
export type ExpressionSpecification = Array<mixed>;
export type PropertyValueSpecification<T> =
| T
| CameraFunctionSpecification<T>
| ExpressionSpecification;
export type DataDrivenPropertyValueSpecification<T> =
| T
| CameraFunctionSpecification<T>
| SourceFunctionSpecification<T>
| CompositeFunctionSpecification<T>
| ExpressionSpecification;
${flowObjectDeclaration('StyleSpecification', spec.$root)}
${flowObjectDeclaration('SourcesSpecification', spec.sources)}
${flowObjectDeclaration('ModelsSpecification', spec.models)}
${flowObjectDeclaration('LightSpecification', spec.light)}
${flowObjectDeclaration('TerrainSpecification', spec.terrain)}
${flowObjectDeclaration('FogSpecification', spec.fog)}
${flowObjectDeclaration('CameraSpecification', spec.camera)}
${flowObjectDeclaration('ProjectionSpecification', spec.projection)}
${flowObjectDeclaration('ImportSpecification', spec.import)}
${flowObjectDeclaration('ConfigSpecification', spec.config)}
${flowObjectDeclaration('SchemaSpecification', spec.schema)}
${flowObjectDeclaration('OptionSpecification', spec.option)}
${spec.source.map(key => flowObjectDeclaration(flowSourceTypeName(key), spec[key])).join('\n\n')}
export type SourceSpecification =
${spec.source.map(key => ` | ${flowSourceTypeName(key)}`).join('\n')}
export type ModelSpecification = ${flowType(spec.model)};
${lightTypes.map(key => flowLight(key)).join('\n\n')}
export type LightsSpecification =
${lightTypes.map(key => ` | ${flowLightTypeName(key)}`).join('\n')};
${layerTypes.map(key => flowLayer(key)).join('\n\n')}
export type LayerSpecification =
${layerTypes.map(key => ` | ${flowLayerTypeName(key)}`).join('\n')};
`);