project/lib/graph/providers/DependencyTree.js

  1. /**
  2. * Tree node
  3. *
  4. * @public
  5. * @class
  6. * @typedef {object} @ui5/project/graph/providers/DependencyTree~TreeNode
  7. * @property {string} node.id Unique ID for the project
  8. * @property {string} node.version Version of the project
  9. * @property {string} node.path File System path to access the projects resources
  10. * @property {object|object[]} [node.configuration]
  11. * Configuration object or array of objects to use instead of reading from a configuration file
  12. * @property {string} [node.configPath] Configuration file to use instead the default ui5.yaml
  13. * @property {@ui5/project/graph/providers/DependencyTree~TreeNode[]} dependencies
  14. */
  15. /**
  16. * Helper module to create a [@ui5/project/graph/ProjectGraph]{@link @ui5/project/graph/ProjectGraph}
  17. * from a dependency tree as returned by translators.
  18. *
  19. * @public
  20. * @class
  21. * @alias @ui5/project/graph/providers/DependencyTree
  22. */
  23. class DependencyTree {
  24. /**
  25. * @param {object} options
  26. * @param {@ui5/project/graph/providers/DependencyTree~TreeNode} options.dependencyTree
  27. * Dependency tree as returned by a translator
  28. * @param {object} [options.rootConfiguration]
  29. * Configuration object to use for the root module instead of reading from a configuration file
  30. * @param {string} [options.rootConfigPath]
  31. * Configuration file to use for the root module instead the default ui5.yaml
  32. */
  33. constructor({dependencyTree, rootConfiguration, rootConfigPath}) {
  34. if (!dependencyTree) {
  35. throw new Error(`Failed to instantiate DependencyTree provider: Missing parameter 'dependencyTree'`);
  36. }
  37. this._tree = dependencyTree;
  38. if (rootConfiguration) {
  39. this._tree.configuration = rootConfiguration;
  40. }
  41. if (rootConfigPath) {
  42. this._tree.configPath = rootConfigPath;
  43. }
  44. }
  45. async getRootNode() {
  46. return this._tree;
  47. }
  48. async getDependencies(node) {
  49. if (node.deduped || !node.dependencies) {
  50. return [];
  51. }
  52. return node.dependencies;
  53. }
  54. }
  55. export default DependencyTree;