6a84379773 | ||
---|---|---|
.github/workflows | ||
packages | ||
react-native@d63c46de7e | ||
.gitignore | ||
.gitmodules | ||
CODE_OF_CONDUCT.md | ||
LICENSE | ||
Note.md | ||
README.md | ||
SECURITY.md | ||
lerna.json | ||
package.json | ||
yarn.lock |
README.md
react-native-tscodegen
TypeScript 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
:
- cli/parser/parser-cli.js: It calls
parseFiles
from - cli/parser/parser.js: It calls
parseFile
from - parsers/flow/index.js: It parse a Flow source file to
SchemaType
, which is defined inCodegenSchema.js
- RNCodegen.js: It converts
parseFile
result to header files.
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
fromRN-TSCodegen
followed bygenerate
function fromRN-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>
andWithDefaultRNTag
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 ignorenull
andundefined
in a union type, because they are subtype of all other types. The currently implementation usestypeChecker
in TypeScript Compiler API to do type inference, necessary information will be lost when--strictNullChecks
is off.
- When
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)