PHP 7.4.33
Preview: GeneratePropsCpp.js.flow Size: 4.54 KB
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/@react-native/codegen/lib/generators/components/GeneratePropsCpp.js.flow
/**
 * 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';

import type {ComponentShape, SchemaType} from '../../CodegenSchema';

const {
  IncludeTemplate,
  convertDefaultTypeToString,
  getImports,
  getSourceProp,
  isWrappedPropType,
} = require('./CppHelpers');

// File path -> contents
type FilesOutput = Map<string, string>;

const FileTemplate = ({
  imports,
  componentClasses,
  headerPrefix,
}: {
  imports: string,
  componentClasses: string,
  headerPrefix: string,
}) => `
/**
 * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
 *
 * Do not edit this file as changes may cause incorrect behavior and will be lost
 * once the code is regenerated.
 *
 * ${'@'}generated by codegen project: GeneratePropsCpp.js
 */

${IncludeTemplate({headerPrefix, file: 'Props.h'})}
${imports}

namespace facebook::react {

${componentClasses}

} // namespace facebook::react
`;

const ComponentTemplate = ({
  className,
  extendClasses,
  props,
}: {
  className: string,
  extendClasses: string,
  props: string,
}) =>
  `
${className}::${className}(
    const PropsParserContext &context,
    const ${className} &sourceProps,
    const RawProps &rawProps):${extendClasses}

    ${props}
      {}
`.trim();

function generatePropsString(componentName: string, component: ComponentShape) {
  return component.props
    .map(prop => {
      const sourceProp = getSourceProp(componentName, prop);
      const defaultValue = convertDefaultTypeToString(componentName, prop);
      const isWrappedProp = isWrappedPropType(prop);
      let convertRawProp = `convertRawProp(context, rawProps, "${prop.name}", ${sourceProp}, {${defaultValue}})`;
      if (isWrappedProp) {
        convertRawProp += '.value';
      }
      return `${prop.name}(${convertRawProp})`;
    })
    .join(',\n' + '    ');
}

function getClassExtendString(component: ComponentShape): string {
  const extendString =
    ' ' +
    component.extendsProps
      .map(extendProps => {
        switch (extendProps.type) {
          case 'ReactNativeBuiltInType':
            switch (extendProps.knownTypeName) {
              case 'ReactNativeCoreViewProps':
                return 'ViewProps(context, sourceProps, rawProps)';
              default:
                (extendProps.knownTypeName: empty);
                throw new Error('Invalid knownTypeName');
            }
          default:
            (extendProps.type: empty);
            throw new Error('Invalid extended type');
        }
      })
      .join(', ') +
    `${component.props.length > 0 ? ',' : ''}`;

  return extendString;
}

module.exports = {
  generate(
    libraryName: string,
    schema: SchemaType,
    packageName?: string,
    assumeNonnull: boolean = false,
    headerPrefix?: string,
  ): FilesOutput {
    const fileName = 'Props.cpp';
    const allImports: Set<string> = new Set([
      '#include <react/renderer/core/propsConversions.h>',
      '#include <react/renderer/core/PropsParserContext.h>',
    ]);

    const componentProps = Object.keys(schema.modules)
      .map(moduleName => {
        const module = schema.modules[moduleName];
        if (module.type !== 'Component') {
          return;
        }

        const {components} = module;
        // No components in this module
        if (components == null) {
          return null;
        }

        return Object.keys(components)
          .map(componentName => {
            const component = components[componentName];
            const newName = `${componentName}Props`;

            const propsString = generatePropsString(componentName, component);
            const extendString = getClassExtendString(component);

            const imports = getImports(component.props);
            // $FlowFixMe[method-unbinding] added when improving typing for this parameters
            imports.forEach(allImports.add, allImports);

            const replacedTemplate = ComponentTemplate({
              className: newName,
              extendClasses: extendString,
              props: propsString,
            });

            return replacedTemplate;
          })
          .join('\n');
      })
      .filter(Boolean)
      .join('\n');

    const replacedTemplate = FileTemplate({
      componentClasses: componentProps,
      imports: Array.from(allImports).sort().join('\n').trim(),
      headerPrefix: headerPrefix ?? '',
    });

    return new Map([[fileName, replacedTemplate]]);
  },
};

Directory Contents

Dirs: 2 × Files: 42
Name Size Perms Modified Actions
- drwxr-xr-x 2025-03-28 11:04:37
Edit Download
- drwxr-xr-x 2025-03-28 11:04:37
Edit Download
8.09 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
9.54 KB lrw-r--r-- 2025-03-28 11:04:35
Edit Download
1.46 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
1.53 KB lrw-r--r-- 2025-03-28 11:04:35
Edit Download
8.16 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
9.20 KB lrw-r--r-- 2025-03-28 11:04:35
Edit Download
2.44 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
2.59 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
2.43 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
2.58 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
9.34 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
10.35 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
10.78 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
12.08 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
7.99 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
8.90 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
4.33 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
4.54 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
18.22 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
19.69 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
9.54 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
10.24 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
7.35 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
8.00 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
2.09 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
2.23 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
2.67 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
2.84 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
2.01 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
2.15 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
2.07 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
2.28 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
5.27 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
5.88 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
2.99 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
3.10 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
3.23 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
3.33 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
13.37 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
13.95 KB lrw-r--r-- 2025-03-28 11:04:36
Edit Download
3.58 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
3.99 KB lrw-r--r-- 2025-03-28 11:04:37
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).