builder/lib/tasks/jsdoc/generateApiIndex.js

  1. import ReaderCollectionPrioritized from "@ui5/fs/ReaderCollectionPrioritized";
  2. import fsInterface from "@ui5/fs/fsInterface";
  3. import apiIndexGenerator from "../../processors/jsdoc/apiIndexGenerator.js";
  4. /**
  5. * @public
  6. * @module @ui5/builder/tasks/jsdoc/generateApiIndex
  7. */
  8. /**
  9. * Compiles an api-index.json resource from all available api.json resources as created by the
  10. * [executeJsdocSdkTransformation]{@link @ui5/builder/tasks/jsdoc/executeJsdocSdkTransformation} task.
  11. * The resulting api-index.json resource is mainly to be used in the SDK.
  12. *
  13. * @public
  14. * @function default
  15. * @static
  16. *
  17. * @param {object} parameters Parameters
  18. * @param {@ui5/fs/DuplexCollection} parameters.workspace DuplexCollection to read and write files
  19. * @param {@ui5/fs/AbstractReader} parameters.dependencies Reader or Collection to read dependency files
  20. * @param {object} parameters.options Options
  21. * @param {string} parameters.options.projectName Project name
  22. * @returns {Promise<undefined>} Promise resolving with <code>undefined</code> once data has been written
  23. */
  24. export default async function({
  25. workspace,
  26. dependencies,
  27. options: {projectName}
  28. }) {
  29. const combo = new ReaderCollectionPrioritized({
  30. name: `generateApiIndex - workspace + dependencies: ${projectName}`,
  31. readers: [workspace, dependencies]
  32. });
  33. const versionInfoPath = "/resources/sap-ui-version.json";
  34. const testResourcesRootPath = "/test-resources";
  35. const targetApiIndexPath = "/docs/api/api-index.json";
  36. const targetApiIndexDeprecatedPath = "/docs/api/api-index-deprecated.json";
  37. const targetApiIndexExperimentalPath = "/docs/api/api-index-experimental.json";
  38. const targetApiIndexSincePath = "/docs/api/api-index-since.json";
  39. const createdResources = await apiIndexGenerator({
  40. versionInfoPath,
  41. testResourcesRootPath,
  42. targetApiIndexPath,
  43. targetApiIndexDeprecatedPath,
  44. targetApiIndexExperimentalPath,
  45. targetApiIndexSincePath,
  46. fs: fsInterface(combo),
  47. });
  48. await Promise.all(createdResources.map((resource) => {
  49. return workspace.write(resource);
  50. }));
  51. }