61 lines
1.3 KiB
Plaintext
61 lines
1.3 KiB
Plaintext
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const {
|
|
flattenProperties,
|
|
getSchemaInfo,
|
|
getTypeAnnotation,
|
|
} = require('./componentsUtils.js');
|
|
|
|
import type {NamedShape, PropTypeAnnotation} from '../../../CodegenSchema.js';
|
|
import type {TypeDeclarationMap} from '../../utils';
|
|
|
|
// $FlowFixMe[unclear-type] there's no flowtype for ASTs
|
|
type PropAST = Object;
|
|
|
|
function buildPropSchema(
|
|
property: PropAST,
|
|
types: TypeDeclarationMap,
|
|
): ?NamedShape<PropTypeAnnotation> {
|
|
const info = getSchemaInfo(property, types);
|
|
if (info == null) {
|
|
return null;
|
|
}
|
|
const {name, optional, typeAnnotation, defaultValue, withNullDefault} = info;
|
|
|
|
return {
|
|
name,
|
|
optional,
|
|
typeAnnotation: getTypeAnnotation(
|
|
name,
|
|
typeAnnotation,
|
|
defaultValue,
|
|
withNullDefault,
|
|
types,
|
|
buildPropSchema,
|
|
),
|
|
};
|
|
}
|
|
|
|
function getProps(
|
|
typeDefinition: $ReadOnlyArray<PropAST>,
|
|
types: TypeDeclarationMap,
|
|
): $ReadOnlyArray<NamedShape<PropTypeAnnotation>> {
|
|
return flattenProperties(typeDefinition, types)
|
|
.map(property => buildPropSchema(property, types))
|
|
.filter(Boolean);
|
|
}
|
|
|
|
module.exports = {
|
|
getProps,
|
|
};
|