You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
3.2 KiB
100 lines
3.2 KiB
/**
|
|
* 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.
|
|
*
|
|
* @emails oncall+react_native
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
function _toArray(arr) {
|
|
return (
|
|
_arrayWithHoles(arr) ||
|
|
_iterableToArray(arr) ||
|
|
_unsupportedIterableToArray(arr) ||
|
|
_nonIterableRest()
|
|
);
|
|
}
|
|
function _nonIterableRest() {
|
|
throw new TypeError(
|
|
'Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.',
|
|
);
|
|
}
|
|
function _unsupportedIterableToArray(o, minLen) {
|
|
if (!o) return;
|
|
if (typeof o === 'string') return _arrayLikeToArray(o, minLen);
|
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
if (n === 'Object' && o.constructor) n = o.constructor.name;
|
|
if (n === 'Map' || n === 'Set') return Array.from(o);
|
|
if (n === 'Arguments' || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))
|
|
return _arrayLikeToArray(o, minLen);
|
|
}
|
|
function _arrayLikeToArray(arr, len) {
|
|
if (len == null || len > arr.length) len = arr.length;
|
|
for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
|
|
return arr2;
|
|
}
|
|
function _iterableToArray(iter) {
|
|
if (
|
|
(typeof Symbol !== 'undefined' && iter[Symbol.iterator] != null) ||
|
|
iter['@@iterator'] != null
|
|
)
|
|
return Array.from(iter);
|
|
}
|
|
function _arrayWithHoles(arr) {
|
|
if (Array.isArray(arr)) return arr;
|
|
}
|
|
const combine = require('./combine-js-to-schema');
|
|
const fs = require('fs');
|
|
const glob = require('glob');
|
|
const path = require('path');
|
|
const _process$argv$slice = process.argv.slice(2),
|
|
_process$argv$slice2 = _toArray(_process$argv$slice),
|
|
outfile = _process$argv$slice2[0],
|
|
fileList = _process$argv$slice2.slice(1);
|
|
function filterJSFile(file) {
|
|
return (
|
|
/^(Native.+|.+NativeComponent)/.test(path.basename(file)) &&
|
|
// NativeUIManager will be deprecated by Fabric UIManager.
|
|
// For now, ignore this spec completely because the types are not fully supported.
|
|
!file.endsWith('NativeUIManager.js') &&
|
|
// NativeSampleTurboModule is for demo purpose. It should be added manually to the
|
|
// app for now.
|
|
!file.endsWith('NativeSampleTurboModule.js') &&
|
|
!file.includes('__tests') &&
|
|
// Ignore TypeScript type declaration files.
|
|
!file.endsWith('.d.ts')
|
|
);
|
|
}
|
|
const allFiles = [];
|
|
fileList.forEach(file => {
|
|
if (fs.lstatSync(file).isDirectory()) {
|
|
const dirFiles = glob
|
|
.sync(`${file}/**/*.{js,ts,tsx}`, {
|
|
nodir: true,
|
|
})
|
|
.filter(filterJSFile);
|
|
allFiles.push(...dirFiles);
|
|
} else if (filterJSFile(file)) {
|
|
allFiles.push(file);
|
|
}
|
|
});
|
|
const combined = combine(allFiles);
|
|
|
|
// Warn users if there is no modules to process
|
|
if (Object.keys(combined.modules).length === 0) {
|
|
console.error(
|
|
'No modules to process in combine-js-to-schema-cli. If this is unexpected, please check if you set up your NativeComponent correctly. See combine-js-to-schema.js for how codegen finds modules.',
|
|
);
|
|
}
|
|
const formattedSchema = JSON.stringify(combined, null, 2);
|
|
if (outfile != null) {
|
|
fs.writeFileSync(outfile, formattedSchema);
|
|
} else {
|
|
console.log(formattedSchema);
|
|
}
|