builder/lib/processors/jsdoc/apiIndexGenerator.js

  1. import {createResource} from "@ui5/fs/resourceFactory";
  2. import createIndex from "./lib/createIndexFiles.cjs";
  3. /**
  4. * @public
  5. * @module @ui5/builder/processors/jsdoc/apiIndexGenerator
  6. */
  7. /**
  8. * Compiles API index resources from all <code>api.json</code> resources available in the given test resources directory
  9. * as created by the [sdkTransformer]{@link @ui5/builder/processors/sdkTransformer} processor.
  10. * The resulting index resources (e.g. <code>api-index.json</code>, <code>api-index-deprecated.json</code>,
  11. * <code>api-index-experimental.json</code> and <code>api-index-since.json</code>) are mainly to be used in the SDK.
  12. *
  13. * @public
  14. * @function default
  15. * @static
  16. *
  17. * @param {object} parameters Parameters
  18. * @param {string} parameters.versionInfoPath Path to <code>sap-ui-version.json</code> resource
  19. * @param {string} parameters.testResourcesRootPath Path to <code>/test-resources</code> root directory in the
  20. * given fs
  21. * @param {string} parameters.targetApiIndexPath Path to create the generated API index JSON resource for
  22. * @param {string} parameters.targetApiIndexDeprecatedPath Path to create the generated API index "deprecated" JSON
  23. * resource for
  24. * @param {string} parameters.targetApiIndexExperimentalPath Path to create the generated API index "experimental" JSON
  25. * resource for
  26. * @param {string} parameters.targetApiIndexSincePath Path to create the generated API index "since" JSON resource for
  27. * @param {fs|module:@ui5/fs/fsInterface} parameters.fs Node fs or
  28. * custom [fs interface]{@link module:@ui5/fs/fsInterface} to use
  29. * @returns {Promise<@ui5/fs/Resource[]>} Promise resolving with created resources <code>api-index.json</code>,
  30. * <code>api-index-deprecated.json</code>, <code>api-index-experimental.json</code> and
  31. * <code>api-index-since.json</code> (names depend on the supplied paths)
  32. */
  33. const apiIndexGenerator = async function({
  34. versionInfoPath, testResourcesRootPath, targetApiIndexPath, targetApiIndexDeprecatedPath,
  35. targetApiIndexExperimentalPath, targetApiIndexSincePath, fs
  36. } = {}) {
  37. if (!versionInfoPath || !testResourcesRootPath || !targetApiIndexPath || !targetApiIndexDeprecatedPath ||
  38. !targetApiIndexExperimentalPath || !targetApiIndexSincePath || !fs) {
  39. throw new Error("[apiIndexGenerator]: One or more mandatory parameters not provided");
  40. }
  41. const resourceMap = await createIndex(versionInfoPath, testResourcesRootPath, targetApiIndexPath,
  42. targetApiIndexDeprecatedPath, targetApiIndexExperimentalPath, targetApiIndexSincePath, {
  43. fs,
  44. returnOutputFiles: true
  45. });
  46. return Object.keys(resourceMap).map((resPath) => {
  47. return createResource({
  48. path: resPath,
  49. string: resourceMap[resPath]
  50. });
  51. });
  52. };
  53. export default apiIndexGenerator;