fuafa / react-native-tscodegen

Generate react-native turbo modules using TypeScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-native-tscodegen

Type Script Code Generation for React Native Turbo Module

  • Index
    • Contributing
    • Building this repo
    • Packages
    • Deploying
    • Development

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Building this repo

yarn
yarn build
yarn test

Packages

tslint-shared

This is the shared tslint configuration for all other packages.

RN-TSCodegen

This is the TypeScript code generation for TurboModule in react native.

In facebook/react-native, you are able to find following files in packages/react-native-codegen/src:

RN-TSCodegen provides typeScriptToCodeSchema for the TypeScript version of parseFile.

RN-Codegen-Backend

Compile Facebook's code and export generate from RNCodegen.js

RN-TSCodegen-Test

This package contains all test cases for RN-TSCodegen.

ts-parsec

This is a parser combinator written in TypeScript. It allows you to create parsers very quickly. Please take a look at:

for deeper understanding of this library.

minimum-flow-parser

This is a Flow parser, just enough to convert necessary files to TypeScript for this repo.

update-test-files

I started this repo in the days when Facebook is actively updating their react native code generation for Flow. There is no document or specification at this moment.

I need to develop a TypeScript version working exactly as their Flow code generation, and to track and catch up their progress when they are changing their code generation parallelly.

So I started update-test files. Whenever I need to know what is changed in their code, I run this package, and then I can:

  • Get the latest CodegenSchema.js converted to TypeScript automatically. RN-TSCodegen is written in TypeScript, so the definition of the intermediate format should be recognizable by TypeScript.
  • Get latest test cases. Facebook has prepared a set of Flow source files, along with snapshots showing how a SchemaType object should be created for each file. All test cases are automatically converted to TypeScript to be my test cases. At the early stage of the development, if RN-TSCodegen produces exactly the same output as theirs, I consider my code generation is correct.
  • Get the diff of generated files. In this way I can know how many features are added or removed. This is a very important guidance for the development of this project.

Since minimum-flow-parser is built just for converting test cases, so it is possible that it fails to parse a Flow program because Facebook uses more Flow features in their test cases then the last time. It will be updated then.

Deploying

At this moment, no effort of integrating RN-TSCodegen to facebook/react-native has been made. But I've got facebook's native code generator run successfully in RN-TSCodegen's test cases. You can follow these test cases to make it run in your repo. There is several things that need to do before running this code generation:

  • Call typeScriptToCodeSchema from RN-TSCodegen followed by generate function from RN-Codegen-Backend.
  • In this folder you will see 3 files. You either use them directly, or merge them into third-party description files.
  • RNTag<T> and WithDefaultRNTag that are used in above files are very important classes that help RN-TSCodegen recognize react native required features that TypeScript does not have. This approach may change in the future.
  • ReactNull | T is used to represent nullable types. This approach may change in the future.
    • When --strictNullChecks is off (by default), TypeScript compiler will ignore null and undefined in a union type, because they are subtype of all other types. The currently implementation uses typeChecker in TypeScript Compiler API to do type inference, necessary information will be lost when --strictNullChecks is off.

Today there is no npm package created for this repo. to use this source code, it is recommended to submodule and build this repo, and then import from the following packages directly:

  • RN-TSCodegen
  • RN-Codegen-Backend

Development

(editing)

About

Generate react-native turbo modules using TypeScript

License:Other


Languages

Language:TypeScript 75.7%Language:JavaScript 24.3%