builder/lib/tasks/jsdoc/executeJsdocSdkTransformation.js

  1. import {getLogger} from "@ui5/logger";
  2. const log = getLogger("builder:tasks:jsdoc:executeJsdocSdkTransformation");
  3. import ReaderCollectionPrioritized from "@ui5/fs/ReaderCollectionPrioritized";
  4. import fsInterface from "@ui5/fs/fsInterface";
  5. import sdkTransformer from "../../processors/jsdoc/sdkTransformer.js";
  6. /**
  7. * @public
  8. * @module @ui5/builder/tasks/jsdoc/executeJsdocSdkTransformation
  9. */
  10. /**
  11. * Task to transform the api.json file as created by the
  12. * [generateJsdoc]{@link @ui5/builder/tasks/jsdoc/generateJsdoc} task into a pre-processed api.json
  13. * file suitable for the SDK.
  14. *
  15. * @public
  16. * @function default
  17. * @static
  18. *
  19. * @param {object} parameters Parameters
  20. * @param {@ui5/fs/DuplexCollection} parameters.workspace DuplexCollection to read and write files
  21. * @param {@ui5/fs/AbstractReader} parameters.dependencies Reader or Collection to read dependency files
  22. * @param {object} parameters.options Options
  23. * @param {string|Array} parameters.options.dotLibraryPattern Pattern to locate the .library resource to be processed
  24. * @param {string} parameters.options.projectName Project name
  25. * @returns {Promise<undefined>} Promise resolving with <code>undefined</code> once data has been written
  26. */
  27. const executeJsdocSdkTransformation = async function(
  28. {workspace, dependencies, options: {projectName, dotLibraryPattern}} = {}
  29. ) {
  30. if (!projectName || !dotLibraryPattern) {
  31. throw new Error("[executeJsdocSdkTransformation]: One or more mandatory options not provided");
  32. }
  33. const [apiJsons, dotLibraries, depApiJsons] = await Promise.all([
  34. workspace.byGlob("/test-resources/**/designtime/api.json"),
  35. workspace.byGlob(dotLibraryPattern),
  36. dependencies.byGlob("/test-resources/**/designtime/api.json")
  37. ]);
  38. if (!apiJsons.length) {
  39. log.info(`Failed to locate api.json resource for project ${projectName}. ` +
  40. `Skipping SDK Transformation...`);
  41. return;
  42. } else if (apiJsons.length > 1) {
  43. throw new Error(`[executeJsdocSdkTransformation]: Found more than one api.json resources for project ` +
  44. `${projectName}.`);
  45. }
  46. if (!dotLibraries.length) {
  47. throw new Error(`[executeJsdocSdkTransformation]: Failed to locate .library resource for project ` +
  48. `${projectName}.`);
  49. } else if (dotLibraries.length > 1) {
  50. throw new Error(`[executeJsdocSdkTransformation]: Found more than one .library resources for project ` +
  51. `${projectName}.`);
  52. }
  53. const combo = new ReaderCollectionPrioritized({
  54. name: `executeJsdocSdkTransformation - custom workspace + dependencies FS: ${projectName}`,
  55. readers: [workspace, dependencies]
  56. });
  57. const apiJsonPath = apiJsons[0].getPath();
  58. const dotLibraryPath = dotLibraries[0].getPath();
  59. const dependencyApiJsonPaths = depApiJsons.map((res) => {
  60. return res.getPath();
  61. });
  62. // Target path is typically "/test-resources/${options.namespace}/designtime/apiref/api.json"
  63. const targetApiJsonPath = apiJsonPath.replace(/\/api\.json$/i, "/apiref/api.json");
  64. const createdResources = await sdkTransformer({
  65. apiJsonPath,
  66. dotLibraryPath,
  67. dependencyApiJsonPaths,
  68. targetApiJsonPath,
  69. fs: fsInterface(combo)
  70. });
  71. await Promise.all(createdResources.map((resource) => {
  72. return workspace.write(resource);
  73. }));
  74. };
  75. export default executeJsdocSdkTransformation;