@teambit/workspace 1.0.579 → 1.0.580

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/filter.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { ComponentID, ComponentIdList } from '@teambit/component-id';
2
2
  import { Workspace } from './workspace';
3
3
  export declare const statesFilter: readonly ["new", "modified", "deprecated", "deleted", "snappedOnMain", "softTagged", "codeModified", "localOnly"];
4
- export type StatesFilter = (typeof statesFilter)[number];
4
+ export type StatesFilter = typeof statesFilter[number];
5
5
  export declare class Filter {
6
6
  private workspace;
7
7
  constructor(workspace: Workspace);
@@ -1 +1 @@
1
- {"version":3,"names":["_componentId","data","require","_pMapSeries","_interopRequireDefault","_lodash","e","__esModule","default","statesFilter","exports","Filter","constructor","workspace","by","criteria","ids","includes","byMultiParamState","byState","state","statePerMethod","new","byNew","modified","byModified","deprecated","byDeprecated","deleted","byDeleted","snappedOnMain","bySnappedOnMain","softTagged","bySoftTagged","codeModified","byCodeModified","localOnly","byLocalOnly","Error","join","bind","stateSplit","split","length","stateName","stateParams","byEnv","env","withinIds","listIds","comps","getMany","compsUsingEnv","filter","c","envId","envs","getEnvId","envIdWithoutVer","ComponentID","getStringWithoutVersion","map","id","modifiedIds","Promise","all","comp","isModified","undefined","compact","compFiles","pMapSeries","getFilesModification","bitMap","getBitmapEntry","ignoreVersion","hasVersion","results","modelComponent","consumer","scope","getModelComponentIfExist","isDeprecated","objects","deletedIds","isDeleted","byDuringMergeState","unmergedComponents","legacyScope","getComponents","ComponentIdList","fromArray","u","fromObject","isOnMain","compIds","componentsFromModel","getModelComps","compsDuringMerge","listLocalOnly","hasWithoutVersion","toComponentId","isHeadSnap","toComponentIdWithHead","withCompIds","components","nextVersion","getBitObjectModelComponent"],"sources":["filter.ts"],"sourcesContent":["import { ComponentID, ComponentIdList } from '@teambit/component-id';\nimport pMapSeries from 'p-map-series';\nimport { ModelComponent } from '@teambit/objects';\nimport { compact } from 'lodash';\nimport { Workspace } from './workspace';\n\nexport const statesFilter = [\n 'new',\n 'modified',\n 'deprecated',\n 'deleted',\n 'snappedOnMain',\n 'softTagged',\n 'codeModified',\n 'localOnly',\n] as const;\nexport type StatesFilter = (typeof statesFilter)[number];\n\nexport class Filter {\n constructor(private workspace: Workspace) {}\n\n async by(criteria: StatesFilter | string, ids: ComponentID[]): Promise<ComponentID[]> {\n return criteria.includes(':') ? this.byMultiParamState(criteria, ids) : this.byState(criteria as StatesFilter, ids);\n }\n\n async byState(state: StatesFilter, ids: ComponentID[]): Promise<ComponentID[]> {\n const statePerMethod = {\n new: this.byNew,\n modified: this.byModified,\n deprecated: this.byDeprecated,\n deleted: this.byDeleted,\n snappedOnMain: this.bySnappedOnMain,\n softTagged: this.bySoftTagged,\n codeModified: this.byCodeModified,\n localOnly: this.byLocalOnly,\n };\n if (!statePerMethod[state]) {\n throw new Error(`state ${state} is not recognized, possible values: ${statesFilter.join(', ')}`);\n }\n return statePerMethod[state].bind(this)(ids);\n }\n\n async byMultiParamState(state: string, ids: ComponentID[]): Promise<ComponentID[]> {\n const stateSplit = state.split(':');\n if (stateSplit.length < 2) {\n throw new Error(`byMultiParamState expect the state to have at least one param after the colon, got ${state}`);\n }\n const [stateName, ...stateParams] = stateSplit;\n if (stateName === 'env') {\n return this.byEnv(stateParams[0], ids);\n }\n throw new Error(`byMultiParamState expect the state to be one of the following: ['env'], got ${stateName}`);\n }\n\n async byEnv(env: string, withinIds?: ComponentID[]): Promise<ComponentID[]> {\n const ids = withinIds || this.workspace.listIds();\n const comps = await this.workspace.getMany(ids);\n const compsUsingEnv = comps.filter((c) => {\n const envId = this.workspace.envs.getEnvId(c);\n if (envId === env) return true;\n // try without version\n const envIdWithoutVer = ComponentID.getStringWithoutVersion(envId);\n return envIdWithoutVer === env;\n });\n return compsUsingEnv.map((c) => c.id);\n }\n\n async byModified(withinIds?: ComponentID[]): Promise<ComponentID[]> {\n const ids = withinIds || (await this.workspace.listIds());\n const comps = await this.workspace.getMany(ids);\n const modifiedIds = await Promise.all(comps.map(async (comp) => ((await comp.isModified()) ? comp.id : undefined)));\n return compact(modifiedIds);\n }\n\n async byCodeModified(withinIds?: ComponentID[]): Promise<ComponentID[]> {\n const ids = withinIds || (await this.workspace.listIds());\n const compFiles = await pMapSeries(ids, (id) => this.workspace.getFilesModification(id));\n const modifiedIds = compFiles.filter((c) => c.isModified()).map((c) => c.id);\n return compact(modifiedIds);\n }\n\n byLocalOnly(withinIds?: ComponentID[]): ComponentID[] {\n const ids = withinIds || this.workspace.listIds();\n return ids.filter((id) => this.workspace.bitMap.getBitmapEntry(id, { ignoreVersion: true }).localOnly);\n }\n\n async byNew(withinIds?: ComponentID[]): Promise<ComponentID[]> {\n const ids = withinIds || (await this.workspace.listIds());\n return ids.filter((id) => !id.hasVersion());\n }\n\n async byDeprecated(withinIds?: ComponentID[]) {\n const ids = withinIds || (await this.workspace.listIds());\n const comps = await this.workspace.getMany(ids);\n const results = await Promise.all(\n comps.map(async (c) => {\n const modelComponent = await this.workspace.consumer.scope.getModelComponentIfExist(c.id);\n const deprecated = await modelComponent?.isDeprecated(this.workspace.consumer.scope.objects);\n return deprecated ? c.id : null;\n })\n );\n return compact(results);\n }\n\n async byDeleted(withinIds?: ComponentID[]) {\n const ids = withinIds || (await this.workspace.listIds());\n const comps = await this.workspace.getMany(ids);\n const deletedIds = comps.filter((c) => c.isDeleted()).map((c) => c.id);\n return compact(deletedIds);\n }\n\n byDuringMergeState(): ComponentIdList {\n const unmergedComponents = this.workspace.scope.legacyScope.objects.unmergedComponents.getComponents();\n return ComponentIdList.fromArray(unmergedComponents.map((u) => ComponentID.fromObject(u.id)));\n }\n\n /**\n * list components that their head is a snap, not a tag.\n * this is relevant only when the lane is the default (main), otherwise, the head is always a snap.\n * components that are during-merge are filtered out, we don't want them during tag and don't want\n * to show them in the \"snapped\" section in bit-status.\n */\n async bySnappedOnMain(withinIds?: ComponentID[]) {\n if (!this.workspace.isOnMain()) {\n return [];\n }\n const ids = withinIds || (await this.workspace.listIds());\n const compIds = ComponentIdList.fromArray(ids);\n const componentsFromModel = await this.getModelComps(ids);\n const compsDuringMerge = this.byDuringMergeState();\n const localOnly = this.workspace.listLocalOnly();\n const comps = componentsFromModel\n .filter((c) => compIds.hasWithoutVersion(c.toComponentId()))\n .filter((c) => !compsDuringMerge.hasWithoutVersion(c.toComponentId()))\n .filter((c) => !localOnly.hasWithoutVersion(c.toComponentId()))\n .filter((c) => c.isHeadSnap());\n return comps.map((c) => c.toComponentIdWithHead());\n }\n\n bySoftTagged(withinIds?: ComponentID[]): ComponentID[] {\n const withCompIds = ComponentIdList.fromArray(withinIds || []);\n const all = this.workspace.consumer.bitMap.components.filter((c) => c.nextVersion).map((c) => c.id);\n return withinIds ? all.filter((id) => withCompIds.hasWithoutVersion(id)) : all;\n }\n\n private async getModelComps(ids: ComponentID[]): Promise<ModelComponent[]> {\n const comps = await Promise.all(ids.map((id) => this.workspace.scope.getBitObjectModelComponent(id, false)));\n return compact(comps);\n }\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_componentId","data","require","_pMapSeries","_interopRequireDefault","_lodash","e","__esModule","default","statesFilter","exports","Filter","constructor","workspace","by","criteria","ids","includes","byMultiParamState","byState","state","statePerMethod","new","byNew","modified","byModified","deprecated","byDeprecated","deleted","byDeleted","snappedOnMain","bySnappedOnMain","softTagged","bySoftTagged","codeModified","byCodeModified","localOnly","byLocalOnly","Error","join","bind","stateSplit","split","length","stateName","stateParams","byEnv","env","withinIds","listIds","comps","getMany","compsUsingEnv","filter","c","envId","envs","getEnvId","envIdWithoutVer","ComponentID","getStringWithoutVersion","map","id","modifiedIds","Promise","all","comp","isModified","undefined","compact","compFiles","pMapSeries","getFilesModification","bitMap","getBitmapEntry","ignoreVersion","hasVersion","results","modelComponent","consumer","scope","getModelComponentIfExist","isDeprecated","objects","deletedIds","isDeleted","byDuringMergeState","unmergedComponents","legacyScope","getComponents","ComponentIdList","fromArray","u","fromObject","isOnMain","compIds","componentsFromModel","getModelComps","compsDuringMerge","listLocalOnly","hasWithoutVersion","toComponentId","isHeadSnap","toComponentIdWithHead","withCompIds","components","nextVersion","getBitObjectModelComponent"],"sources":["filter.ts"],"sourcesContent":["import { ComponentID, ComponentIdList } from '@teambit/component-id';\nimport pMapSeries from 'p-map-series';\nimport { ModelComponent } from '@teambit/objects';\nimport { compact } from 'lodash';\nimport { Workspace } from './workspace';\n\nexport const statesFilter = [\n 'new',\n 'modified',\n 'deprecated',\n 'deleted',\n 'snappedOnMain',\n 'softTagged',\n 'codeModified',\n 'localOnly',\n] as const;\nexport type StatesFilter = typeof statesFilter[number];\n\nexport class Filter {\n constructor(private workspace: Workspace) {}\n\n async by(criteria: StatesFilter | string, ids: ComponentID[]): Promise<ComponentID[]> {\n return criteria.includes(':') ? this.byMultiParamState(criteria, ids) : this.byState(criteria as StatesFilter, ids);\n }\n\n async byState(state: StatesFilter, ids: ComponentID[]): Promise<ComponentID[]> {\n const statePerMethod = {\n new: this.byNew,\n modified: this.byModified,\n deprecated: this.byDeprecated,\n deleted: this.byDeleted,\n snappedOnMain: this.bySnappedOnMain,\n softTagged: this.bySoftTagged,\n codeModified: this.byCodeModified,\n localOnly: this.byLocalOnly,\n };\n if (!statePerMethod[state]) {\n throw new Error(`state ${state} is not recognized, possible values: ${statesFilter.join(', ')}`);\n }\n return statePerMethod[state].bind(this)(ids);\n }\n\n async byMultiParamState(state: string, ids: ComponentID[]): Promise<ComponentID[]> {\n const stateSplit = state.split(':');\n if (stateSplit.length < 2) {\n throw new Error(`byMultiParamState expect the state to have at least one param after the colon, got ${state}`);\n }\n const [stateName, ...stateParams] = stateSplit;\n if (stateName === 'env') {\n return this.byEnv(stateParams[0], ids);\n }\n throw new Error(`byMultiParamState expect the state to be one of the following: ['env'], got ${stateName}`);\n }\n\n async byEnv(env: string, withinIds?: ComponentID[]): Promise<ComponentID[]> {\n const ids = withinIds || this.workspace.listIds();\n const comps = await this.workspace.getMany(ids);\n const compsUsingEnv = comps.filter((c) => {\n const envId = this.workspace.envs.getEnvId(c);\n if (envId === env) return true;\n // try without version\n const envIdWithoutVer = ComponentID.getStringWithoutVersion(envId);\n return envIdWithoutVer === env;\n });\n return compsUsingEnv.map((c) => c.id);\n }\n\n async byModified(withinIds?: ComponentID[]): Promise<ComponentID[]> {\n const ids = withinIds || (await this.workspace.listIds());\n const comps = await this.workspace.getMany(ids);\n const modifiedIds = await Promise.all(comps.map(async (comp) => ((await comp.isModified()) ? comp.id : undefined)));\n return compact(modifiedIds);\n }\n\n async byCodeModified(withinIds?: ComponentID[]): Promise<ComponentID[]> {\n const ids = withinIds || (await this.workspace.listIds());\n const compFiles = await pMapSeries(ids, (id) => this.workspace.getFilesModification(id));\n const modifiedIds = compFiles.filter((c) => c.isModified()).map((c) => c.id);\n return compact(modifiedIds);\n }\n\n byLocalOnly(withinIds?: ComponentID[]): ComponentID[] {\n const ids = withinIds || this.workspace.listIds();\n return ids.filter((id) => this.workspace.bitMap.getBitmapEntry(id, { ignoreVersion: true }).localOnly);\n }\n\n async byNew(withinIds?: ComponentID[]): Promise<ComponentID[]> {\n const ids = withinIds || (await this.workspace.listIds());\n return ids.filter((id) => !id.hasVersion());\n }\n\n async byDeprecated(withinIds?: ComponentID[]) {\n const ids = withinIds || (await this.workspace.listIds());\n const comps = await this.workspace.getMany(ids);\n const results = await Promise.all(\n comps.map(async (c) => {\n const modelComponent = await this.workspace.consumer.scope.getModelComponentIfExist(c.id);\n const deprecated = await modelComponent?.isDeprecated(this.workspace.consumer.scope.objects);\n return deprecated ? c.id : null;\n })\n );\n return compact(results);\n }\n\n async byDeleted(withinIds?: ComponentID[]) {\n const ids = withinIds || (await this.workspace.listIds());\n const comps = await this.workspace.getMany(ids);\n const deletedIds = comps.filter((c) => c.isDeleted()).map((c) => c.id);\n return compact(deletedIds);\n }\n\n byDuringMergeState(): ComponentIdList {\n const unmergedComponents = this.workspace.scope.legacyScope.objects.unmergedComponents.getComponents();\n return ComponentIdList.fromArray(unmergedComponents.map((u) => ComponentID.fromObject(u.id)));\n }\n\n /**\n * list components that their head is a snap, not a tag.\n * this is relevant only when the lane is the default (main), otherwise, the head is always a snap.\n * components that are during-merge are filtered out, we don't want them during tag and don't want\n * to show them in the \"snapped\" section in bit-status.\n */\n async bySnappedOnMain(withinIds?: ComponentID[]) {\n if (!this.workspace.isOnMain()) {\n return [];\n }\n const ids = withinIds || (await this.workspace.listIds());\n const compIds = ComponentIdList.fromArray(ids);\n const componentsFromModel = await this.getModelComps(ids);\n const compsDuringMerge = this.byDuringMergeState();\n const localOnly = this.workspace.listLocalOnly();\n const comps = componentsFromModel\n .filter((c) => compIds.hasWithoutVersion(c.toComponentId()))\n .filter((c) => !compsDuringMerge.hasWithoutVersion(c.toComponentId()))\n .filter((c) => !localOnly.hasWithoutVersion(c.toComponentId()))\n .filter((c) => c.isHeadSnap());\n return comps.map((c) => c.toComponentIdWithHead());\n }\n\n bySoftTagged(withinIds?: ComponentID[]): ComponentID[] {\n const withCompIds = ComponentIdList.fromArray(withinIds || []);\n const all = this.workspace.consumer.bitMap.components.filter((c) => c.nextVersion).map((c) => c.id);\n return withinIds ? all.filter((id) => withCompIds.hasWithoutVersion(id)) : all;\n }\n\n private async getModelComps(ids: ComponentID[]): Promise<ModelComponent[]> {\n const comps = await Promise.all(ids.map((id) => this.workspace.scope.getBitObjectModelComponent(id, false)));\n return compact(comps);\n }\n}\n"],"mappings":"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","ignoreList":[]}
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_workspace@1.0.579/dist/workspace.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_workspace@1.0.579/dist/workspace.docs.mdx';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_workspace@1.0.580/dist/workspace.composition.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.workspace_workspace@1.0.580/dist/workspace.docs.mdx';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
@@ -145,7 +145,7 @@ class WorkspaceAspectsLoader {
145
145
  // generate a random callId to be able to identify the call from the logs
146
146
  const callId = Math.floor(Math.random() * 1000);
147
147
  const loggerPrefix = `[${callId}] loadAspects,`;
148
- this.logger.profile(`[${callId}] workspace.loadAspects`);
148
+ this.logger.profileTrace(`[${callId}] workspace.loadAspects`);
149
149
  this.logger.info(`${loggerPrefix} loading ${ids.length} aspects.
150
150
  ids: ${ids.join(', ')}
151
151
  needed-for: ${neededFor || '<unknown>'}. using opts: ${JSON.stringify(mergedOpts, null, 2)}`);
@@ -157,7 +157,7 @@ needed-for: ${neededFor || '<unknown>'}. using opts: ${JSON.stringify(mergedOpts
157
157
  notLoadedIds = nonLocalAspects.filter(id => !this.aspectLoader.isAspectLoaded(id));
158
158
  }
159
159
  if (!notLoadedIds.length) {
160
- this.logger.profile(`[${callId}] workspace.loadAspects`);
160
+ this.logger.profileTrace(`[${callId}] workspace.loadAspects`);
161
161
  return [];
162
162
  }
163
163
  const coreAspectsStringIds = this.aspectLoader.getCoreAspectIds();
@@ -206,7 +206,7 @@ needed-for: ${neededFor || '<unknown>'}. using opts: ${JSON.stringify(mergedOpts
206
206
  });
207
207
  const manifestIds = manifests.map(manifest => manifest.id);
208
208
  this.logger.debug(`${loggerPrefix} finish loading aspects`);
209
- this.logger.profile(`[${callId}] workspace.loadAspects`);
209
+ this.logger.profileTrace(`[${callId}] workspace.loadAspects`);
210
210
  return (0, _lodash().compact)(manifestIds.concat(scopeAspectIds));
211
211
  }
212
212
  async loadFromScopeAspectsCapsule(ids, throwOnError, neededFor) {
@@ -1 +1 @@
1
- {"version":3,"names":["_legacy","data","require","_findRoot","_interopRequireDefault","_toolboxModules","_aspectLoader","_cli","_fsExtra","_harmonyModules","_workspaceModules","_componentId","_legacy2","_pMapSeries","_lodash","_bitError","e","__esModule","default","ownKeys","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","_toPropertyKey","value","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","WorkspaceAspectsLoader","constructor","workspace","scope","aspectLoader","envs","dependencyResolver","logger","configStore","harmony","onAspectsResolveSlot","onRootAspectAddedSlot","resolveAspectsFromNodeModules","resolveEnvsFromRoots","consumer","resolvedInstalledAspects","Map","hasRootComponents","loadAspects","ids","throwOnError","neededFor","opts","calculatedThrowOnError","defaultOpts","useScopeAspectsCapsule","runSubscribers","skipDeps","hideMissingModuleError","inInstallContext","ignoreErrorFunc","ignoreAspectLoadingError","ignoreErrors","forceLoad","mergedOpts","callId","Math","floor","random","loggerPrefix","profile","info","join","JSON","stringify","localAspects","nonLocalAspects","partition","id","startsWith","localAspectsMap","loadAspectFromPath","notLoadedIds","isAspectLoaded","coreAspectsStringIds","getCoreAspectIds","idsWithoutCore","difference","componentIds","resolveMultipleComponentIds","workspaceIds","nonWorkspaceIds","groupIdsByWorkspaceExistence","logFoundWorkspaceVsScope","idsToLoadFromWs","scopeAspectIds","loadFromScopeAspectsCapsule","aspectsDefs","resolveAspects","undefined","excludeCore","requestedOnly","manifests","requireableComponents","loadAspectDefsByOrder","potentialPluginsIndexes","compact","map","manifest","index","isValidAspect","pluginsRequireableComponents","pluginsManifests","getManifestsFromRequireableExtensions","loadExtensionsByManifests","manifestIds","debug","concat","currentLane","getCurrentLaneObject","nonWorkspaceIdsString","toString","packageManagerConfigRootDir","path","workspaceName","name","err","throwWsJsoncAspectNotFoundError","ComponentNotFound","config","get","configStr","workspaceConfig","raw","includes","BitError","seeders","nonWorkspaceDefs","groupAspectDefsByWorkspaceExistence","scopeAspectsLoader","getScopeAspectsLoader","scopeIds","aspectDef","getId","scopeIdsGrouped","groupAspectIdsByEnvOfTheList","aspectDefsToRequireableComponents","runtimeName","filterByRuntime","idsToResolve","extensionsIds","workspaceLocalAspectsIds","localAspectsIds","nonLocalAspectsIds","localDefs","resolveLocalAspects","coreAspectsIds","configuredAspects","getConfiguredAspects","userAspectsIds","split","rootAspectsIds","componentIdsToResolve","components","importAndGetAspects","runOnAspectsResolveFunctions","wsAspectDefs","getWorkspaceAspectResolver","coreAspectDefs","Promise","all","coreId","rawDef","getAspectDef","loadDefinition","idsToFilter","idStr","ComponentID","fromString","targetDefs","finalDefs","filterAspectDefs","groupedByIsPlugin","groupBy","component","hasPluginFiles","graph","getAspectsGraphWithoutCore","false","isAspect","bind","aspectsComponents","nodes","node","attr","true","workspaceComps","nonWorkspaceComps","groupComponentsByWorkspaceExistence","workspaceCompsIds","c","nonWorkspaceCompsIds","stringIds","linkIfMissingWorkspaceAspects","componentsToResolveFromScope","componentsToResolveFromInstalled","nonWorkspaceCompsGroups","isEnv","scopeAspectsDefs","installedAspectsDefs","getInstalledAspectResolver","coreAspect","runtimePath","localResolved","allDefsExceptLocal","withoutLocalAspects","aspectId","find","localAspect","toStringWithoutVersion","allDefs","filteredDefs","shouldUseHashForCapsules","getConfig","CFG_CAPSULES_BUILD_COMPONENTS_BASE_DIR","getCapsulePath","defaultPath","workspaceIdsStr","nonWorkspaceIdsStr","use","aspectIdStr","resolveComponentId","inWs","hasId","aspectIdToAdd","aspectsComponent","Error","setExtension","overrideExisting","ignoreVersion","write","reasonForChange","addInMemoryConfiguredAspect","runOnRootAspectAddedFunctions","getConfiguredUserAspectsPackages","options","rawConfiguredAspects","getWorkspaceConfig","componentsToGetPackages","externalsOnly","packages","aspectComponent","packageName","getPackageName","version","aspectDefs","localPath","aspectPath","requireFunc","plugins","getPlugins","has","load","MainRuntime","isModule","isEsmModule","aspect","loadEsm","getRuntimePath","RequireableComponent","aspects","idsToLink","isInWs","exist","fs","pathExists","idsToLinkWithoutNull","linkToNodeModulesByIds","workspaceAspectResolver","compStringId","getComponentPackagePath","aspectFilePath","getAspectFilePath","funcs","getOnAspectsResolveFunctions","pMapSeries","func","error","aspectsResolveFunctions","values","aspectsId","getOnRootAspectAddedFunctions","RootAspectAddedFunctions","rootIds","installedAspectsResolver","resolveInstalledAspectRecursively","aspectStringId","resolvedPath","set","parent","predecessors","parentPath","resolveFrom","findRoot","consoleWarning","message","buildOneGraphForComponents","loadComponentsExtensions","extensions","originatedFrom","extensionsIdsP","extensionEntry","extensionId","stringId","harmonyExtensions","loadedExtensions","extId","loaded","extensionsToLoad","isUsingAspectEnv","isUsingEnvEnv","loadOpts","idsToNotLoadAsAspects","importAndGetMany","existOnWorkspace","rootComps","nonRootComps","groupComponentsByLoadFromRootComps","shouldLoadFromRootComps","rootDir","rootDirExist","aspectFilePathExist","pluginFiles","getPluginFiles","hasEnvManifest","workspaceDefs","scopeComponents","exports"],"sources":["workspace-aspects-loader.ts"],"sourcesContent":["import { CFG_CAPSULES_BUILD_COMPONENTS_BASE_DIR } from '@teambit/legacy.constants';\nimport findRoot from 'find-root';\nimport { resolveFrom } from '@teambit/toolbox.modules.module-resolver';\nimport { Graph } from '@teambit/graph.cleargraph';\nimport { ExtensionDataList } from '@teambit/legacy.extension-data';\nimport { ExtensionManifest, Harmony, Aspect } from '@teambit/harmony';\nimport {\n AspectDefinition,\n AspectLoaderMain,\n AspectResolver,\n getAspectDef,\n ResolvedAspect,\n} from '@teambit/aspect-loader';\nimport { MainRuntime } from '@teambit/cli';\nimport fs from 'fs-extra';\nimport { RequireableComponent } from '@teambit/harmony.modules.requireable-component';\nimport { linkToNodeModulesByIds } from '@teambit/workspace.modules.node-modules-linker';\nimport { ComponentID } from '@teambit/component-id';\nimport { ComponentNotFound } from '@teambit/legacy.scope';\nimport pMapSeries from 'p-map-series';\nimport { difference, compact, groupBy, partition } from 'lodash';\nimport { Consumer } from '@teambit/legacy.consumer';\nimport { Component, LoadAspectsOptions, ResolveAspectsOptions } from '@teambit/component';\nimport { ScopeMain } from '@teambit/scope';\nimport { Logger } from '@teambit/logger';\nimport { BitError } from '@teambit/bit-error';\nimport { EnvsMain } from '@teambit/envs';\nimport { ConfigMain } from '@teambit/config';\nimport { DependencyResolverMain } from '@teambit/dependency-resolver';\nimport { ShouldLoadFunc } from './build-graph-from-fs';\nimport type { Workspace } from './workspace';\nimport {\n OnAspectsResolve,\n OnAspectsResolveSlot,\n OnRootAspectAdded,\n OnRootAspectAddedSlot,\n} from './workspace.main.runtime';\nimport { ComponentLoadOptions } from './workspace-component/workspace-component-loader';\nimport { ConfigStoreMain } from '@teambit/config-store';\n\nexport type GetConfiguredUserAspectsPackagesOptions = {\n externalsOnly?: boolean;\n};\n\nexport type WorkspaceLoadAspectsOptions = LoadAspectsOptions & {\n useScopeAspectsCapsule?: boolean;\n runSubscribers?: boolean;\n skipDeps?: boolean;\n resolveEnvsFromRoots?: boolean;\n};\n\nexport type AspectPackage = { packageName: string; version: string };\n\nexport class WorkspaceAspectsLoader {\n private consumer: Consumer;\n private resolvedInstalledAspects: Map<string, string | null>;\n\n constructor(\n private workspace: Workspace,\n private scope: ScopeMain,\n private aspectLoader: AspectLoaderMain,\n private envs: EnvsMain,\n private dependencyResolver: DependencyResolverMain,\n private logger: Logger,\n private configStore: ConfigStoreMain,\n private harmony: Harmony,\n private onAspectsResolveSlot: OnAspectsResolveSlot,\n private onRootAspectAddedSlot: OnRootAspectAddedSlot,\n private resolveAspectsFromNodeModules = false,\n private resolveEnvsFromRoots = false\n ) {\n this.consumer = this.workspace.consumer;\n this.resolvedInstalledAspects = new Map();\n // Only enable this when root components is enabled as well\n this.resolveEnvsFromRoots = this.resolveEnvsFromRoots && this.dependencyResolver.hasRootComponents();\n }\n\n /**\n * load aspects from the workspace and if not exists in the workspace, load from the node_modules.\n * keep in mind that the graph may have circles.\n */\n async loadAspects(\n ids: string[] = [],\n throwOnError?: boolean,\n neededFor?: string,\n opts: WorkspaceLoadAspectsOptions = {}\n ): Promise<string[]> {\n const calculatedThrowOnError: boolean = throwOnError ?? false;\n const defaultOpts: Required<WorkspaceLoadAspectsOptions> = {\n useScopeAspectsCapsule: false,\n throwOnError: calculatedThrowOnError,\n runSubscribers: true,\n skipDeps: false,\n hideMissingModuleError: !!this.workspace.inInstallContext,\n ignoreErrorFunc: this.workspace.inInstallContext ? ignoreAspectLoadingError : () => false,\n ignoreErrors: false,\n resolveEnvsFromRoots: this.resolveEnvsFromRoots,\n forceLoad: false,\n };\n const mergedOpts: Required<WorkspaceLoadAspectsOptions> = { ...defaultOpts, ...opts };\n\n // generate a random callId to be able to identify the call from the logs\n const callId = Math.floor(Math.random() * 1000);\n const loggerPrefix = `[${callId}] loadAspects,`;\n this.logger.profile(`[${callId}] workspace.loadAspects`);\n this.logger.info(`${loggerPrefix} loading ${ids.length} aspects.\nids: ${ids.join(', ')}\nneeded-for: ${neededFor || '<unknown>'}. using opts: ${JSON.stringify(mergedOpts, null, 2)}`);\n const [localAspects, nonLocalAspects] = partition(ids, (id) => id.startsWith('file:'));\n const localAspectsMap = await this.aspectLoader.loadAspectFromPath(localAspects);\n this.workspace.localAspects = { ...this.workspace.localAspects, ...localAspectsMap };\n\n let notLoadedIds = nonLocalAspects;\n if (!mergedOpts.forceLoad) {\n notLoadedIds = nonLocalAspects.filter((id) => !this.aspectLoader.isAspectLoaded(id));\n }\n if (!notLoadedIds.length) {\n this.logger.profile(`[${callId}] workspace.loadAspects`);\n return [];\n }\n const coreAspectsStringIds = this.aspectLoader.getCoreAspectIds();\n const idsWithoutCore: string[] = difference(notLoadedIds, coreAspectsStringIds);\n\n const componentIds = await this.workspace.resolveMultipleComponentIds(idsWithoutCore);\n\n const { workspaceIds, nonWorkspaceIds } = await this.groupIdsByWorkspaceExistence(\n componentIds,\n mergedOpts.resolveEnvsFromRoots\n );\n\n this.logFoundWorkspaceVsScope(loggerPrefix, workspaceIds, nonWorkspaceIds);\n let idsToLoadFromWs = componentIds;\n let scopeAspectIds: string[] = [];\n\n // TODO: hard coded use the old approach and loading from the scope capsules\n // This is because right now loading from the ws node_modules causes issues in some cases\n // like for the cloud app\n // it should be removed once we fix the issues\n if (!this.resolveAspectsFromNodeModules) {\n mergedOpts.useScopeAspectsCapsule = true;\n }\n\n if (mergedOpts.useScopeAspectsCapsule) {\n idsToLoadFromWs = workspaceIds;\n scopeAspectIds = await this.loadFromScopeAspectsCapsule(nonWorkspaceIds, throwOnError, neededFor);\n }\n\n const aspectsDefs = await this.resolveAspects(undefined, idsToLoadFromWs, {\n excludeCore: true,\n requestedOnly: false,\n ...mergedOpts,\n });\n\n const { manifests, requireableComponents } = await this.loadAspectDefsByOrder(\n aspectsDefs,\n idsWithoutCore,\n mergedOpts.throwOnError,\n mergedOpts.hideMissingModuleError,\n mergedOpts.ignoreErrorFunc,\n neededFor,\n mergedOpts.runSubscribers\n );\n\n const potentialPluginsIndexes = compact(\n manifests.map((manifest, index) => {\n if (this.aspectLoader.isValidAspect(manifest)) return undefined;\n return index;\n })\n );\n\n // Try require components for potential plugins\n const pluginsRequireableComponents = potentialPluginsIndexes.map((index) => {\n return requireableComponents[index];\n });\n // Do the require again now that the plugins defs already registered\n const pluginsManifests = await this.aspectLoader.getManifestsFromRequireableExtensions(\n pluginsRequireableComponents,\n throwOnError,\n opts.runSubscribers\n );\n await this.aspectLoader.loadExtensionsByManifests(pluginsManifests, undefined, { throwOnError });\n const manifestIds = manifests.map((manifest) => manifest.id);\n this.logger.debug(`${loggerPrefix} finish loading aspects`);\n this.logger.profile(`[${callId}] workspace.loadAspects`);\n return compact(manifestIds.concat(scopeAspectIds));\n }\n\n private async loadFromScopeAspectsCapsule(ids: ComponentID[], throwOnError?: boolean, neededFor?: string) {\n let scopeAspectIds: string[] = [];\n const currentLane = await this.consumer.getCurrentLaneObject();\n\n if (!ids.length) return [];\n\n const nonWorkspaceIdsString = ids.map((id) => id.toString());\n try {\n scopeAspectIds = await this.scope.loadAspects(nonWorkspaceIdsString, throwOnError, neededFor, currentLane, {\n packageManagerConfigRootDir: this.workspace.path,\n workspaceName: this.workspace.name,\n });\n return scopeAspectIds;\n } catch (err: any) {\n this.throwWsJsoncAspectNotFoundError(err);\n return scopeAspectIds;\n\n throw err;\n }\n }\n\n throwWsJsoncAspectNotFoundError(err: any) {\n if (err instanceof ComponentNotFound) {\n const config = this.harmony.get<ConfigMain>('teambit.harmony/config');\n const configStr = JSON.stringify(config.workspaceConfig?.raw || {});\n if (configStr.includes(err.id)) {\n throw new BitError(`error: a component \"${err.id}\" was not found\nyour workspace.jsonc has this component-id set. you might want to remove/change it.`);\n }\n }\n }\n\n private async loadAspectDefsByOrder(\n aspectsDefs: AspectDefinition[],\n seeders: string[],\n throwOnError: boolean,\n hideMissingModuleError: boolean,\n ignoreErrorFunc?: (err: Error) => boolean,\n neededFor?: string,\n runSubscribers = true\n ): Promise<{ manifests: Array<Aspect | ExtensionManifest>; requireableComponents: RequireableComponent[] }> {\n const { nonWorkspaceDefs } = await this.groupAspectDefsByWorkspaceExistence(aspectsDefs);\n const scopeAspectsLoader = this.scope.getScopeAspectsLoader();\n const scopeIds: string[] = compact(nonWorkspaceDefs.map((aspectDef) => aspectDef.getId));\n const scopeIdsGrouped = await scopeAspectsLoader.groupAspectIdsByEnvOfTheList(scopeIds);\n\n // Make sure to first load envs from the list otherwise it will fail when trying to load other aspects\n // as their envs might not be loaded yet\n if (scopeIdsGrouped.envs && scopeIdsGrouped.envs.length && !runSubscribers) {\n await this.scope.loadAspects(scopeIdsGrouped.envs, throwOnError, 'workspace.loadAspects loading scope aspects');\n }\n const requireableComponents = this.aspectDefsToRequireableComponents(aspectsDefs);\n const manifests = await this.aspectLoader.getManifestsFromRequireableExtensions(\n requireableComponents,\n throwOnError,\n runSubscribers\n );\n await this.aspectLoader.loadExtensionsByManifests(\n manifests,\n { seeders, neededFor },\n { throwOnError, hideMissingModuleError, ignoreErrorFunc }\n );\n return { manifests, requireableComponents };\n }\n\n async resolveAspects(\n runtimeName?: string,\n componentIds?: ComponentID[],\n opts?: ResolveAspectsOptions\n ): Promise<AspectDefinition[]> {\n const callId = Math.floor(Math.random() * 1000);\n const loggerPrefix = `[${callId}] workspace resolveAspects,`;\n\n this.logger.debug(\n `${loggerPrefix}, resolving aspects for - runtimeName: ${runtimeName}, componentIds: ${componentIds}`\n );\n const defaultOpts: ResolveAspectsOptions = {\n excludeCore: false,\n requestedOnly: false,\n filterByRuntime: true,\n useScopeAspectsCapsule: false,\n workspaceName: this.workspace.name,\n resolveEnvsFromRoots: this.resolveEnvsFromRoots,\n packageManagerConfigRootDir: this.workspace.path,\n };\n const mergedOpts = { ...defaultOpts, ...opts };\n const idsToResolve = componentIds ? componentIds.map((id) => id.toString()) : this.harmony.extensionsIds;\n const workspaceLocalAspectsIds = Object.keys(this.workspace.localAspects);\n const [localAspectsIds, nonLocalAspectsIds] = partition(idsToResolve, (id) =>\n workspaceLocalAspectsIds.includes(id)\n );\n\n const localDefs = await this.aspectLoader.resolveLocalAspects(\n localAspectsIds.map((id) => this.workspace.localAspects[id]),\n runtimeName\n );\n const coreAspectsIds = this.aspectLoader.getCoreAspectIds();\n const configuredAspects = this.aspectLoader.getConfiguredAspects();\n // it's possible that componentIds are core-aspects that got version for some reason, remove the version to\n // correctly filter them out later.\n const userAspectsIds: string[] = nonLocalAspectsIds\n ? nonLocalAspectsIds.filter((id) => !coreAspectsIds.includes(id.split('@')[0])).map((id) => id.toString())\n : difference(this.harmony.extensionsIds, coreAspectsIds);\n const rootAspectsIds: string[] = difference(configuredAspects, coreAspectsIds);\n const componentIdsToResolve = await this.workspace.resolveMultipleComponentIds(userAspectsIds);\n const components = await this.importAndGetAspects(componentIdsToResolve, opts?.throwOnError);\n // Run the on load slot\n await this.runOnAspectsResolveFunctions(components);\n\n if (opts?.skipDeps) {\n const wsAspectDefs = await this.aspectLoader.resolveAspects(\n components,\n this.getWorkspaceAspectResolver([], runtimeName)\n );\n\n const coreAspectDefs = await Promise.all(\n coreAspectsIds.map(async (coreId) => {\n const rawDef = await getAspectDef(coreId, runtimeName);\n return this.aspectLoader.loadDefinition(rawDef);\n })\n );\n\n const idsToFilter = idsToResolve.map((idStr) => ComponentID.fromString(idStr));\n const targetDefs = wsAspectDefs.concat(coreAspectDefs).concat(localDefs);\n const finalDefs = this.aspectLoader.filterAspectDefs(targetDefs, idsToFilter, runtimeName, mergedOpts);\n\n return finalDefs;\n }\n\n const groupedByIsPlugin = groupBy(components, (component) => {\n return this.aspectLoader.hasPluginFiles(component);\n });\n const graph = await this.getAspectsGraphWithoutCore(groupedByIsPlugin.false, this.isAspect.bind(this));\n const aspectsComponents = graph.nodes.map((node) => node.attr).concat(groupedByIsPlugin.true || []);\n this.logger.debug(`${loggerPrefix} found ${aspectsComponents.length} aspects in the aspects-graph`);\n const { workspaceComps, nonWorkspaceComps } = await this.groupComponentsByWorkspaceExistence(\n aspectsComponents,\n mergedOpts.resolveEnvsFromRoots\n );\n\n const workspaceCompsIds = workspaceComps.map((c) => c.id);\n const nonWorkspaceCompsIds = nonWorkspaceComps.map((c) => c.id);\n this.logFoundWorkspaceVsScope(loggerPrefix, workspaceCompsIds, nonWorkspaceCompsIds);\n\n const stringIds: string[] = [];\n const wsAspectDefs = await this.aspectLoader.resolveAspects(\n workspaceComps,\n this.getWorkspaceAspectResolver(stringIds, runtimeName)\n );\n\n await this.linkIfMissingWorkspaceAspects(wsAspectDefs);\n\n // TODO: hard coded use the old approach and loading from the scope capsules\n // This is because right now loading from the ws node_modules causes issues in some cases\n // like for the cloud app\n // it should be removed once we fix the issues\n if (!this.resolveAspectsFromNodeModules) {\n mergedOpts.useScopeAspectsCapsule = true;\n }\n\n let componentsToResolveFromScope = nonWorkspaceComps;\n let componentsToResolveFromInstalled: Component[] = [];\n if (!mergedOpts.useScopeAspectsCapsule) {\n const nonWorkspaceCompsGroups = groupBy(nonWorkspaceComps, (component) => this.envs.isEnv(component));\n componentsToResolveFromScope = nonWorkspaceCompsGroups.true || [];\n componentsToResolveFromInstalled = nonWorkspaceCompsGroups.false || [];\n }\n\n const scopeIds = componentsToResolveFromScope.map((c) => c.id);\n this.logger.debug(\n `${loggerPrefix} ${\n scopeIds.length\n } components are not in the workspace and are loaded from the scope capsules:\\n${scopeIds\n .map((id) => id.toString())\n .join('\\n')}`\n );\n const scopeAspectsDefs: AspectDefinition[] = scopeIds.length\n ? await this.scope.resolveAspects(runtimeName, scopeIds, mergedOpts)\n : [];\n\n this.logger.debug(\n `${loggerPrefix} ${\n componentsToResolveFromInstalled.length\n } components are not in the workspace and are loaded from the node_modules:\\n${componentsToResolveFromInstalled\n .map((c) => c.id.toString())\n .join('\\n')}`\n );\n const installedAspectsDefs: AspectDefinition[] = componentsToResolveFromInstalled.length\n ? await this.aspectLoader.resolveAspects(\n componentsToResolveFromInstalled,\n this.getInstalledAspectResolver(graph, rootAspectsIds, runtimeName, {\n throwOnError: opts?.throwOnError ?? false,\n })\n )\n : [];\n\n let coreAspectDefs = await Promise.all(\n coreAspectsIds.map(async (coreId) => {\n const rawDef = await getAspectDef(coreId, runtimeName);\n return this.aspectLoader.loadDefinition(rawDef);\n })\n );\n\n // due to lack of workspace and scope runtimes. TODO: fix after adding them.\n if (runtimeName && mergedOpts.filterByRuntime) {\n coreAspectDefs = coreAspectDefs.filter((coreAspect) => {\n return coreAspect.runtimePath;\n });\n }\n const localResolved = await this.aspectLoader.resolveLocalAspects(\n Object.keys(this.workspace.localAspects),\n runtimeName\n );\n const allDefsExceptLocal = [...wsAspectDefs, ...coreAspectDefs, ...scopeAspectsDefs, ...installedAspectsDefs];\n const withoutLocalAspects = allDefsExceptLocal.filter((aspectId) => {\n return !localResolved.find((localAspect) => {\n return localAspect.id === aspectId.component?.id?.toStringWithoutVersion();\n });\n });\n const allDefs = [...withoutLocalAspects, ...localResolved];\n const idsToFilter = idsToResolve.map((idStr) => ComponentID.fromString(idStr));\n const filteredDefs = this.aspectLoader.filterAspectDefs(allDefs, idsToFilter, runtimeName, mergedOpts);\n return filteredDefs;\n }\n\n shouldUseHashForCapsules(): boolean {\n return !this.configStore.getConfig(CFG_CAPSULES_BUILD_COMPONENTS_BASE_DIR);\n }\n\n getCapsulePath() {\n const defaultPath = this.workspace.path;\n return this.configStore.getConfig(CFG_CAPSULES_BUILD_COMPONENTS_BASE_DIR) || defaultPath;\n }\n\n private logFoundWorkspaceVsScope(loggerPrefix: string, workspaceIds: ComponentID[], nonWorkspaceIds: ComponentID[]) {\n const workspaceIdsStr = workspaceIds.length ? workspaceIds.map((id) => id.toString()).join('\\n') : '';\n const nonWorkspaceIdsStr = nonWorkspaceIds.length ? nonWorkspaceIds.map((id) => id.toString()).join('\\n') : '';\n this.logger.debug(\n `${loggerPrefix} found ${workspaceIds.length} components in the workspace, ${nonWorkspaceIds.length} not in the workspace`\n );\n if (workspaceIdsStr) this.logger.debug(`${loggerPrefix} workspace components:\\n${workspaceIdsStr}`);\n if (nonWorkspaceIdsStr)\n this.logger.debug(\n `${loggerPrefix} non workspace components (loaded from the scope capsules or from the node_modules):\\n${nonWorkspaceIdsStr}`\n );\n }\n\n async use(aspectIdStr: string): Promise<string> {\n let aspectId = await this.workspace.resolveComponentId(aspectIdStr);\n const inWs = await this.workspace.hasId(aspectId);\n let aspectIdToAdd = aspectId.toStringWithoutVersion();\n\n let aspectsComponent;\n // let aspectPackage;\n if (!inWs) {\n const aspectsComponents = await this.importAndGetAspects([aspectId]);\n if (aspectsComponents[0]) {\n aspectsComponent = aspectsComponents[0];\n aspectId = aspectsComponent.id;\n aspectIdToAdd = aspectId.toString();\n }\n }\n\n const config = this.harmony.get<ConfigMain>('teambit.harmony/config').workspaceConfig;\n if (!config) {\n throw new Error(`use() unable to get the workspace config`);\n }\n config.setExtension(\n aspectIdToAdd,\n {},\n {\n overrideExisting: false,\n ignoreVersion: false,\n }\n );\n await config.write({ reasonForChange: `use (${aspectIdStr})` });\n this.aspectLoader.addInMemoryConfiguredAspect(aspectIdToAdd);\n await this.runOnRootAspectAddedFunctions(aspectId, inWs);\n return aspectIdToAdd;\n }\n\n async getConfiguredUserAspectsPackages(\n options: GetConfiguredUserAspectsPackagesOptions = {}\n ): Promise<AspectPackage[]> {\n const rawConfiguredAspects = this.workspace.getWorkspaceConfig()?.extensionsIds;\n const coreAspectsIds = this.aspectLoader.getCoreAspectIds();\n const userAspectsIds: string[] = difference(rawConfiguredAspects, coreAspectsIds);\n const componentIdsToResolve = await this.workspace.resolveMultipleComponentIds(\n userAspectsIds.filter((id) => !id.startsWith('file:'))\n );\n const aspectsComponents = await this.importAndGetAspects(componentIdsToResolve);\n let componentsToGetPackages = aspectsComponents;\n if (options.externalsOnly) {\n const { nonWorkspaceComps } = await this.groupComponentsByWorkspaceExistence(aspectsComponents);\n componentsToGetPackages = nonWorkspaceComps;\n }\n const packages = componentsToGetPackages.map((aspectComponent) => {\n const packageName = this.dependencyResolver.getPackageName(aspectComponent);\n const version = aspectComponent.id.version || '*';\n return { packageName, version };\n });\n return packages;\n }\n\n private aspectDefsToRequireableComponents(aspectDefs: AspectDefinition[]): RequireableComponent[] {\n const requireableComponents = aspectDefs.map((aspectDef) => {\n const localPath = aspectDef.aspectPath;\n const component = aspectDef.component;\n if (!component) return undefined;\n const requireFunc = async () => {\n const plugins = this.aspectLoader.getPlugins(component, localPath);\n if (plugins.has()) {\n return plugins.load(MainRuntime.name);\n }\n\n const isModule = await this.aspectLoader.isEsmModule(localPath);\n\n const aspect = !isModule\n ? // eslint-disable-next-line global-require, import/no-dynamic-require\n require(localPath)\n : // : await this.aspectLoader.loadEsm(join(localPath, 'dist', 'index.js'));\n await this.aspectLoader.loadEsm(localPath);\n\n // require aspect runtimes\n const runtimePath = await this.aspectLoader.getRuntimePath(component, localPath, MainRuntime.name);\n if (runtimePath) {\n if (isModule) await this.aspectLoader.loadEsm(runtimePath);\n // eslint-disable-next-line global-require, import/no-dynamic-require\n require(runtimePath);\n }\n return aspect;\n };\n return new RequireableComponent(component, requireFunc);\n });\n return compact(requireableComponents);\n }\n\n private async linkIfMissingWorkspaceAspects(aspects: AspectDefinition[]) {\n const idsToLink = await Promise.all(\n aspects.map(async (aspect) => {\n if (!aspect.component)\n throw new Error(`linkIfMissingWorkspaceAspects, aspect.component is missing for ${aspect.aspectPath}`);\n const isInWs = await this.workspace.hasId(aspect.component.id);\n if (!isInWs) return null;\n const exist = await fs.pathExists(aspect.aspectPath);\n if (!exist) return aspect.component.id;\n return null;\n })\n );\n const idsToLinkWithoutNull = compact(idsToLink);\n if (!idsToLinkWithoutNull.length) return;\n await linkToNodeModulesByIds(this.workspace, idsToLinkWithoutNull);\n }\n\n /**\n * This will return a resolver that knows to resolve aspects which are part of the workspace.\n * means aspects exist in the bitmap file\n * @param stringIds\n * @param runtimeName\n * @returns\n */\n private getWorkspaceAspectResolver(stringIds: string[], runtimeName?: string): AspectResolver {\n const workspaceAspectResolver = async (component: Component): Promise<ResolvedAspect> => {\n const compStringId = component.id.toString();\n stringIds.push(compStringId);\n const localPath = await this.workspace.getComponentPackagePath(component);\n\n const runtimePath = runtimeName\n ? await this.aspectLoader.getRuntimePath(component, localPath, runtimeName)\n : null;\n\n const aspectFilePath = await this.aspectLoader.getAspectFilePath(component, localPath);\n\n this.logger.debug(\n `workspace resolveAspects, resolving id: ${compStringId}, localPath: ${localPath}, runtimePath: ${runtimePath}`\n );\n return {\n aspectPath: localPath,\n aspectFilePath,\n runtimePath,\n };\n };\n return workspaceAspectResolver;\n }\n\n private async runOnAspectsResolveFunctions(aspectsComponents: Component[]): Promise<void> {\n const funcs = this.getOnAspectsResolveFunctions();\n await pMapSeries(funcs, async (func) => {\n try {\n await func(aspectsComponents);\n } catch (err) {\n this.logger.error('failed running onAspectsResolve function', err);\n }\n });\n }\n\n private getOnAspectsResolveFunctions(): OnAspectsResolve[] {\n const aspectsResolveFunctions = this.onAspectsResolveSlot.values();\n return aspectsResolveFunctions;\n }\n\n private async runOnRootAspectAddedFunctions(aspectsId: ComponentID, inWs: boolean): Promise<void> {\n const funcs = this.getOnRootAspectAddedFunctions();\n await pMapSeries(funcs, async (func) => {\n try {\n await func(aspectsId, inWs);\n } catch (err) {\n this.logger.error('failed running onRootAspectAdded function', err);\n }\n });\n }\n\n private getOnRootAspectAddedFunctions(): OnRootAspectAdded[] {\n const RootAspectAddedFunctions = this.onRootAspectAddedSlot.values();\n return RootAspectAddedFunctions;\n }\n\n /**\n * This will return a resolver that knows to resolve aspects which are not part of the workspace.\n * means aspects that does not exist in the bitmap file\n * instead it will resolve them from the node_modules recursively\n * @param graph\n * @param rootIds\n * @param runtimeName\n * @returns\n */\n private getInstalledAspectResolver(\n graph: Graph<Component, string>,\n rootIds: string[],\n runtimeName?: string,\n opts: { throwOnError: boolean } = { throwOnError: false }\n ): AspectResolver {\n const installedAspectsResolver = async (component: Component): Promise<ResolvedAspect | undefined> => {\n const compStringId = component.id.toString();\n // stringIds.push(compStringId);\n const localPath = await this.resolveInstalledAspectRecursively(component, rootIds, graph, opts);\n if (!localPath) return undefined;\n\n const runtimePath = runtimeName\n ? await this.aspectLoader.getRuntimePath(component, localPath, runtimeName)\n : null;\n\n const aspectFilePath = await this.aspectLoader.getAspectFilePath(component, localPath);\n\n this.logger.debug(\n `workspace resolveInstalledAspects, resolving id: ${compStringId}, localPath: ${localPath}, runtimePath: ${runtimePath}`\n );\n return {\n aspectPath: localPath,\n aspectFilePath,\n runtimePath,\n };\n };\n return installedAspectsResolver;\n }\n\n private async resolveInstalledAspectRecursively(\n aspectComponent: Component,\n rootIds: string[],\n graph: Graph<Component, string>,\n opts: { throwOnError: boolean } = { throwOnError: false }\n ): Promise<string | null | undefined> {\n const aspectStringId = aspectComponent.id.toString();\n if (this.resolvedInstalledAspects.has(aspectStringId)) {\n const resolvedPath = this.resolvedInstalledAspects.get(aspectStringId);\n return resolvedPath;\n }\n if (rootIds.includes(aspectStringId)) {\n const localPath = await this.workspace.getComponentPackagePath(aspectComponent);\n this.resolvedInstalledAspects.set(aspectStringId, localPath);\n return localPath;\n }\n const parent = graph.predecessors(aspectStringId)[0];\n if (!parent) return undefined;\n const parentPath = await this.resolveInstalledAspectRecursively(parent.attr, rootIds, graph);\n if (!parentPath) {\n this.resolvedInstalledAspects.set(aspectStringId, null);\n return undefined;\n }\n const packageName = this.dependencyResolver.getPackageName(aspectComponent);\n try {\n const resolvedPath = resolveFrom(parentPath, [packageName]);\n const localPath = findRoot(resolvedPath);\n this.resolvedInstalledAspects.set(aspectStringId, localPath);\n return localPath;\n } catch (error: any) {\n this.resolvedInstalledAspects.set(aspectStringId, null);\n if (opts.throwOnError) {\n throw error;\n }\n this.logger.consoleWarning(\n `failed resolving aspect ${aspectStringId} from ${parentPath}, error: ${error.message}`\n );\n return undefined;\n }\n }\n\n /**\n * Create a graph of aspects without the core aspects.\n * @param components\n * @param isAspect\n * @returns\n */\n private async getAspectsGraphWithoutCore(\n components: Component[] = [],\n isAspect?: ShouldLoadFunc\n ): Promise<Graph<Component, string>> {\n const ids = components.map((component) => component.id);\n const coreAspectsStringIds = this.aspectLoader.getCoreAspectIds();\n // TODO: @gilad it causes many issues we need to find a better solution. removed for now.\n // const coreAspectsComponentIds = coreAspectsStringIds.map((id) => ComponentID.fromString(id));\n // const aspectsIds = components.reduce((acc, curr) => {\n // const currIds = curr.state.aspects.ids;\n // acc = acc.concat(currIds);\n // return acc;\n // }, [] as any);\n // const otherDependenciesMap = components.reduce((acc, curr) => {\n // // const currIds = curr.state.dependencies.dependencies.map(dep => dep.id.toString());\n // const currMap = curr.state.dependencies.getIdsMap();\n // Object.assign(acc, currMap);\n // return acc;\n // }, {});\n\n // const depsWhichAreNotAspects = difference(Object.keys(otherDependenciesMap), aspectsIds);\n // const depsWhichAreNotAspectsBitIds = depsWhichAreNotAspects.map((strId) => otherDependenciesMap[strId]);\n // We only want to load into the graph components which are aspects and not regular dependencies\n // This come to solve a circular loop when an env aspect use an aspect (as regular dep) and the aspect use the env aspect as its env\n return this.workspace.buildOneGraphForComponents(ids, coreAspectsStringIds, isAspect);\n }\n\n /**\n * Load all unloaded extensions from an extension list\n * this will resolve the extensions from the scope aspects capsules if they are not in the ws\n * Only use it for component extensions\n * for workspace/scope root aspect use the load aspects directly\n *\n * The reason we are loading component extensions with \"scope aspects capsules\" is because for component extensions\n * we might have the same extension in multiple versions\n * (for example I might have 2 components using different versions of the same env)\n * in such case, I can't install both version into the root of the node_modules so I need to place it somewhere else (capsules)\n * @param extensions list of extensions with config to load\n */\n async loadComponentsExtensions(\n extensions: ExtensionDataList,\n originatedFrom?: ComponentID,\n opts: WorkspaceLoadAspectsOptions = {}\n ): Promise<void> {\n const defaultOpts: WorkspaceLoadAspectsOptions = {\n useScopeAspectsCapsule: true,\n throwOnError: false,\n hideMissingModuleError: !!this.workspace.inInstallContext,\n ignoreErrorFunc: this.workspace.inInstallContext ? ignoreAspectLoadingError : undefined,\n resolveEnvsFromRoots: this.resolveEnvsFromRoots,\n };\n const mergedOpts = { ...defaultOpts, ...opts };\n const extensionsIdsP = extensions.map(async (extensionEntry) => {\n // Core extension\n if (!extensionEntry.extensionId) {\n return extensionEntry.stringId as string;\n }\n\n const id = await this.workspace.resolveComponentId(extensionEntry.extensionId);\n // return this.resolveComponentId(extensionEntry.extensionId);\n return id.toString();\n });\n const extensionsIds: string[] = await Promise.all(extensionsIdsP);\n const harmonyExtensions = this.harmony.extensionsIds;\n const loadedExtensions = harmonyExtensions.filter((extId) => {\n return this.harmony.extensions.get(extId)?.loaded;\n });\n const extensionsToLoad = difference(extensionsIds, loadedExtensions);\n if (!extensionsToLoad.length) return;\n await this.loadAspects(extensionsToLoad, undefined, originatedFrom?.toString(), mergedOpts);\n }\n\n private async isAspect(id: ComponentID) {\n const component = await this.workspace.get(id);\n const isUsingAspectEnv = this.envs.isUsingAspectEnv(component);\n const isUsingEnvEnv = this.envs.isUsingEnvEnv(component);\n const isValidAspect = isUsingAspectEnv || isUsingEnvEnv;\n return isValidAspect;\n }\n\n /**\n * same as `this.importAndGetMany()` with a specific error handling of ComponentNotFound\n */\n private async importAndGetAspects(componentIds: ComponentID[], throwOnError = true): Promise<Component[]> {\n try {\n // We don't want to load the seeders as aspects as it will cause an infinite loop\n // once you try to load the seeder it will try to load the workspace component\n // that will arrive here again and again\n const loadOpts: ComponentLoadOptions = {\n idsToNotLoadAsAspects: componentIds.map((id) => id.toString()),\n };\n return await this.workspace.importAndGetMany(\n componentIds,\n 'to load aspects from the workspace',\n loadOpts,\n throwOnError\n );\n } catch (err: any) {\n this.throwWsJsoncAspectNotFoundError(err);\n\n throw err;\n }\n }\n\n /**\n * split the provided components into 2 groups, one which are workspace components and the other which are not.\n * @param components\n * @returns\n */\n private async groupComponentsByWorkspaceExistence(\n components: Component[],\n resolveEnvsFromRoots?: boolean\n ): Promise<{ workspaceComps: Component[]; nonWorkspaceComps: Component[] }> {\n let workspaceComps: Component[] = [];\n let nonWorkspaceComps: Component[] = [];\n await Promise.all(\n components.map(async (component) => {\n const existOnWorkspace = await this.workspace.hasId(component.id);\n existOnWorkspace ? workspaceComps.push(component) : nonWorkspaceComps.push(component);\n })\n );\n if (resolveEnvsFromRoots) {\n const { rootComps, nonRootComps } = await this.groupComponentsByLoadFromRootComps(nonWorkspaceComps);\n workspaceComps = workspaceComps.concat(rootComps);\n nonWorkspaceComps = nonRootComps;\n }\n return { workspaceComps, nonWorkspaceComps };\n }\n\n private async groupComponentsByLoadFromRootComps(\n components: Component[]\n ): Promise<{ rootComps: Component[]; nonRootComps: Component[] }> {\n const rootComps: Component[] = [];\n const nonRootComps: Component[] = [];\n await Promise.all(\n components.map(async (component) => {\n const shouldLoadFromRootComps = await this.shouldLoadFromRootComps(component);\n if (shouldLoadFromRootComps) {\n rootComps.push(component);\n return;\n }\n nonRootComps.push(component);\n })\n );\n return { rootComps, nonRootComps };\n }\n\n private async shouldLoadFromRootComps(component: Component): Promise<boolean> {\n const rootDir = await this.workspace.getComponentPackagePath(component);\n const rootDirExist = await fs.pathExists(rootDir);\n const aspectFilePath = await this.aspectLoader.getAspectFilePath(component, rootDir);\n const aspectFilePathExist = aspectFilePath ? await fs.pathExists(aspectFilePath) : false;\n const pluginFiles = await this.aspectLoader.getPluginFiles(component, rootDir);\n\n // checking that we have the root dir (this means it's an aspect that needs to be loaded from there)\n // and validate that localPathExist so we can\n // really load the component from that path (if it's there it means that it's an env)\n if (rootDirExist && (aspectFilePathExist || pluginFiles.length)) {\n return true;\n }\n // If the component has env.jsonc we want to list it to be loaded from the root folder\n // even if it's not there yet\n // in that case we will fail to load it, and the user will need to run bit install\n if (this.envs.hasEnvManifest(component)) {\n return true;\n }\n return false;\n }\n\n /**\n * split the provided components into 2 groups, one which are workspace components and the other which are not.\n * @param components\n * @returns\n */\n private async groupAspectDefsByWorkspaceExistence(\n aspectDefs: AspectDefinition[]\n ): Promise<{ workspaceDefs: AspectDefinition[]; nonWorkspaceDefs: AspectDefinition[] }> {\n const workspaceDefs: AspectDefinition[] = [];\n const nonWorkspaceDefs: AspectDefinition[] = [];\n await Promise.all(\n aspectDefs.map(async (aspectDef) => {\n const id = aspectDef.component?.id;\n const existOnWorkspace = id ? await this.workspace.hasId(id) : true;\n if (existOnWorkspace) {\n workspaceDefs.push(aspectDef);\n return;\n }\n const shouldLoadFromRootComps = aspectDef.component\n ? await this.shouldLoadFromRootComps(aspectDef.component)\n : undefined;\n if (shouldLoadFromRootComps) {\n workspaceDefs.push(aspectDef);\n return;\n }\n nonWorkspaceDefs.push(aspectDef);\n })\n );\n return { workspaceDefs, nonWorkspaceDefs };\n }\n\n private async groupIdsByWorkspaceExistence(\n ids: ComponentID[],\n resolveEnvsFromRoots?: boolean\n ): Promise<{ workspaceIds: ComponentID[]; nonWorkspaceIds: ComponentID[] }> {\n let workspaceIds: ComponentID[] = [];\n let nonWorkspaceIds: ComponentID[] = [];\n await Promise.all(\n ids.map(async (id) => {\n const existOnWorkspace = await this.workspace.hasId(id);\n existOnWorkspace ? workspaceIds.push(id) : nonWorkspaceIds.push(id);\n })\n );\n // We need to bring the components in order to really group them with taking the root comps into account\n const scopeComponents = await this.importAndGetAspects(nonWorkspaceIds);\n const { nonWorkspaceComps, workspaceComps } = await this.groupComponentsByWorkspaceExistence(\n scopeComponents,\n resolveEnvsFromRoots\n );\n workspaceIds = workspaceIds.concat(workspaceComps.map((c) => c.id));\n nonWorkspaceIds = nonWorkspaceComps.map((c) => c.id);\n return { workspaceIds, nonWorkspaceIds };\n }\n}\n\nfunction ignoreAspectLoadingError(err: Error) {\n // Ignoring that error as probably we are in the middle of the installation process\n // so we didn't yet compile the aspect to esm correctly\n if (err.message.includes(`Cannot use 'import.meta' outside a module`)) {\n return true;\n }\n return false;\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_legacy","data","require","_findRoot","_interopRequireDefault","_toolboxModules","_aspectLoader","_cli","_fsExtra","_harmonyModules","_workspaceModules","_componentId","_legacy2","_pMapSeries","_lodash","_bitError","e","__esModule","default","ownKeys","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","_toPropertyKey","value","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","WorkspaceAspectsLoader","constructor","workspace","scope","aspectLoader","envs","dependencyResolver","logger","configStore","harmony","onAspectsResolveSlot","onRootAspectAddedSlot","resolveAspectsFromNodeModules","resolveEnvsFromRoots","consumer","resolvedInstalledAspects","Map","hasRootComponents","loadAspects","ids","throwOnError","neededFor","opts","calculatedThrowOnError","defaultOpts","useScopeAspectsCapsule","runSubscribers","skipDeps","hideMissingModuleError","inInstallContext","ignoreErrorFunc","ignoreAspectLoadingError","ignoreErrors","forceLoad","mergedOpts","callId","Math","floor","random","loggerPrefix","profileTrace","info","join","JSON","stringify","localAspects","nonLocalAspects","partition","id","startsWith","localAspectsMap","loadAspectFromPath","notLoadedIds","isAspectLoaded","coreAspectsStringIds","getCoreAspectIds","idsWithoutCore","difference","componentIds","resolveMultipleComponentIds","workspaceIds","nonWorkspaceIds","groupIdsByWorkspaceExistence","logFoundWorkspaceVsScope","idsToLoadFromWs","scopeAspectIds","loadFromScopeAspectsCapsule","aspectsDefs","resolveAspects","undefined","excludeCore","requestedOnly","manifests","requireableComponents","loadAspectDefsByOrder","potentialPluginsIndexes","compact","map","manifest","index","isValidAspect","pluginsRequireableComponents","pluginsManifests","getManifestsFromRequireableExtensions","loadExtensionsByManifests","manifestIds","debug","concat","currentLane","getCurrentLaneObject","nonWorkspaceIdsString","toString","packageManagerConfigRootDir","path","workspaceName","name","err","throwWsJsoncAspectNotFoundError","ComponentNotFound","config","get","configStr","workspaceConfig","raw","includes","BitError","seeders","nonWorkspaceDefs","groupAspectDefsByWorkspaceExistence","scopeAspectsLoader","getScopeAspectsLoader","scopeIds","aspectDef","getId","scopeIdsGrouped","groupAspectIdsByEnvOfTheList","aspectDefsToRequireableComponents","runtimeName","filterByRuntime","idsToResolve","extensionsIds","workspaceLocalAspectsIds","localAspectsIds","nonLocalAspectsIds","localDefs","resolveLocalAspects","coreAspectsIds","configuredAspects","getConfiguredAspects","userAspectsIds","split","rootAspectsIds","componentIdsToResolve","components","importAndGetAspects","runOnAspectsResolveFunctions","wsAspectDefs","getWorkspaceAspectResolver","coreAspectDefs","Promise","all","coreId","rawDef","getAspectDef","loadDefinition","idsToFilter","idStr","ComponentID","fromString","targetDefs","finalDefs","filterAspectDefs","groupedByIsPlugin","groupBy","component","hasPluginFiles","graph","getAspectsGraphWithoutCore","false","isAspect","bind","aspectsComponents","nodes","node","attr","true","workspaceComps","nonWorkspaceComps","groupComponentsByWorkspaceExistence","workspaceCompsIds","c","nonWorkspaceCompsIds","stringIds","linkIfMissingWorkspaceAspects","componentsToResolveFromScope","componentsToResolveFromInstalled","nonWorkspaceCompsGroups","isEnv","scopeAspectsDefs","installedAspectsDefs","getInstalledAspectResolver","coreAspect","runtimePath","localResolved","allDefsExceptLocal","withoutLocalAspects","aspectId","find","localAspect","toStringWithoutVersion","allDefs","filteredDefs","shouldUseHashForCapsules","getConfig","CFG_CAPSULES_BUILD_COMPONENTS_BASE_DIR","getCapsulePath","defaultPath","workspaceIdsStr","nonWorkspaceIdsStr","use","aspectIdStr","resolveComponentId","inWs","hasId","aspectIdToAdd","aspectsComponent","Error","setExtension","overrideExisting","ignoreVersion","write","reasonForChange","addInMemoryConfiguredAspect","runOnRootAspectAddedFunctions","getConfiguredUserAspectsPackages","options","rawConfiguredAspects","getWorkspaceConfig","componentsToGetPackages","externalsOnly","packages","aspectComponent","packageName","getPackageName","version","aspectDefs","localPath","aspectPath","requireFunc","plugins","getPlugins","has","load","MainRuntime","isModule","isEsmModule","aspect","loadEsm","getRuntimePath","RequireableComponent","aspects","idsToLink","isInWs","exist","fs","pathExists","idsToLinkWithoutNull","linkToNodeModulesByIds","workspaceAspectResolver","compStringId","getComponentPackagePath","aspectFilePath","getAspectFilePath","funcs","getOnAspectsResolveFunctions","pMapSeries","func","error","aspectsResolveFunctions","values","aspectsId","getOnRootAspectAddedFunctions","RootAspectAddedFunctions","rootIds","installedAspectsResolver","resolveInstalledAspectRecursively","aspectStringId","resolvedPath","set","parent","predecessors","parentPath","resolveFrom","findRoot","consoleWarning","message","buildOneGraphForComponents","loadComponentsExtensions","extensions","originatedFrom","extensionsIdsP","extensionEntry","extensionId","stringId","harmonyExtensions","loadedExtensions","extId","loaded","extensionsToLoad","isUsingAspectEnv","isUsingEnvEnv","loadOpts","idsToNotLoadAsAspects","importAndGetMany","existOnWorkspace","rootComps","nonRootComps","groupComponentsByLoadFromRootComps","shouldLoadFromRootComps","rootDir","rootDirExist","aspectFilePathExist","pluginFiles","getPluginFiles","hasEnvManifest","workspaceDefs","scopeComponents","exports"],"sources":["workspace-aspects-loader.ts"],"sourcesContent":["import { CFG_CAPSULES_BUILD_COMPONENTS_BASE_DIR } from '@teambit/legacy.constants';\nimport findRoot from 'find-root';\nimport { resolveFrom } from '@teambit/toolbox.modules.module-resolver';\nimport { Graph } from '@teambit/graph.cleargraph';\nimport { ExtensionDataList } from '@teambit/legacy.extension-data';\nimport { ExtensionManifest, Harmony, Aspect } from '@teambit/harmony';\nimport {\n AspectDefinition,\n AspectLoaderMain,\n AspectResolver,\n getAspectDef,\n ResolvedAspect,\n} from '@teambit/aspect-loader';\nimport { MainRuntime } from '@teambit/cli';\nimport fs from 'fs-extra';\nimport { RequireableComponent } from '@teambit/harmony.modules.requireable-component';\nimport { linkToNodeModulesByIds } from '@teambit/workspace.modules.node-modules-linker';\nimport { ComponentID } from '@teambit/component-id';\nimport { ComponentNotFound } from '@teambit/legacy.scope';\nimport pMapSeries from 'p-map-series';\nimport { difference, compact, groupBy, partition } from 'lodash';\nimport { Consumer } from '@teambit/legacy.consumer';\nimport { Component, LoadAspectsOptions, ResolveAspectsOptions } from '@teambit/component';\nimport { ScopeMain } from '@teambit/scope';\nimport { Logger } from '@teambit/logger';\nimport { BitError } from '@teambit/bit-error';\nimport { EnvsMain } from '@teambit/envs';\nimport { ConfigMain } from '@teambit/config';\nimport { DependencyResolverMain } from '@teambit/dependency-resolver';\nimport { ShouldLoadFunc } from './build-graph-from-fs';\nimport type { Workspace } from './workspace';\nimport {\n OnAspectsResolve,\n OnAspectsResolveSlot,\n OnRootAspectAdded,\n OnRootAspectAddedSlot,\n} from './workspace.main.runtime';\nimport { ComponentLoadOptions } from './workspace-component/workspace-component-loader';\nimport { ConfigStoreMain } from '@teambit/config-store';\n\nexport type GetConfiguredUserAspectsPackagesOptions = {\n externalsOnly?: boolean;\n};\n\nexport type WorkspaceLoadAspectsOptions = LoadAspectsOptions & {\n useScopeAspectsCapsule?: boolean;\n runSubscribers?: boolean;\n skipDeps?: boolean;\n resolveEnvsFromRoots?: boolean;\n};\n\nexport type AspectPackage = { packageName: string; version: string };\n\nexport class WorkspaceAspectsLoader {\n private consumer: Consumer;\n private resolvedInstalledAspects: Map<string, string | null>;\n\n constructor(\n private workspace: Workspace,\n private scope: ScopeMain,\n private aspectLoader: AspectLoaderMain,\n private envs: EnvsMain,\n private dependencyResolver: DependencyResolverMain,\n private logger: Logger,\n private configStore: ConfigStoreMain,\n private harmony: Harmony,\n private onAspectsResolveSlot: OnAspectsResolveSlot,\n private onRootAspectAddedSlot: OnRootAspectAddedSlot,\n private resolveAspectsFromNodeModules = false,\n private resolveEnvsFromRoots = false\n ) {\n this.consumer = this.workspace.consumer;\n this.resolvedInstalledAspects = new Map();\n // Only enable this when root components is enabled as well\n this.resolveEnvsFromRoots = this.resolveEnvsFromRoots && this.dependencyResolver.hasRootComponents();\n }\n\n /**\n * load aspects from the workspace and if not exists in the workspace, load from the node_modules.\n * keep in mind that the graph may have circles.\n */\n async loadAspects(\n ids: string[] = [],\n throwOnError?: boolean,\n neededFor?: string,\n opts: WorkspaceLoadAspectsOptions = {}\n ): Promise<string[]> {\n const calculatedThrowOnError: boolean = throwOnError ?? false;\n const defaultOpts: Required<WorkspaceLoadAspectsOptions> = {\n useScopeAspectsCapsule: false,\n throwOnError: calculatedThrowOnError,\n runSubscribers: true,\n skipDeps: false,\n hideMissingModuleError: !!this.workspace.inInstallContext,\n ignoreErrorFunc: this.workspace.inInstallContext ? ignoreAspectLoadingError : () => false,\n ignoreErrors: false,\n resolveEnvsFromRoots: this.resolveEnvsFromRoots,\n forceLoad: false,\n };\n const mergedOpts: Required<WorkspaceLoadAspectsOptions> = { ...defaultOpts, ...opts };\n\n // generate a random callId to be able to identify the call from the logs\n const callId = Math.floor(Math.random() * 1000);\n const loggerPrefix = `[${callId}] loadAspects,`;\n this.logger.profileTrace(`[${callId}] workspace.loadAspects`);\n this.logger.info(`${loggerPrefix} loading ${ids.length} aspects.\nids: ${ids.join(', ')}\nneeded-for: ${neededFor || '<unknown>'}. using opts: ${JSON.stringify(mergedOpts, null, 2)}`);\n const [localAspects, nonLocalAspects] = partition(ids, (id) => id.startsWith('file:'));\n const localAspectsMap = await this.aspectLoader.loadAspectFromPath(localAspects);\n this.workspace.localAspects = { ...this.workspace.localAspects, ...localAspectsMap };\n\n let notLoadedIds = nonLocalAspects;\n if (!mergedOpts.forceLoad) {\n notLoadedIds = nonLocalAspects.filter((id) => !this.aspectLoader.isAspectLoaded(id));\n }\n if (!notLoadedIds.length) {\n this.logger.profileTrace(`[${callId}] workspace.loadAspects`);\n return [];\n }\n const coreAspectsStringIds = this.aspectLoader.getCoreAspectIds();\n const idsWithoutCore: string[] = difference(notLoadedIds, coreAspectsStringIds);\n\n const componentIds = await this.workspace.resolveMultipleComponentIds(idsWithoutCore);\n\n const { workspaceIds, nonWorkspaceIds } = await this.groupIdsByWorkspaceExistence(\n componentIds,\n mergedOpts.resolveEnvsFromRoots\n );\n\n this.logFoundWorkspaceVsScope(loggerPrefix, workspaceIds, nonWorkspaceIds);\n let idsToLoadFromWs = componentIds;\n let scopeAspectIds: string[] = [];\n\n // TODO: hard coded use the old approach and loading from the scope capsules\n // This is because right now loading from the ws node_modules causes issues in some cases\n // like for the cloud app\n // it should be removed once we fix the issues\n if (!this.resolveAspectsFromNodeModules) {\n mergedOpts.useScopeAspectsCapsule = true;\n }\n\n if (mergedOpts.useScopeAspectsCapsule) {\n idsToLoadFromWs = workspaceIds;\n scopeAspectIds = await this.loadFromScopeAspectsCapsule(nonWorkspaceIds, throwOnError, neededFor);\n }\n\n const aspectsDefs = await this.resolveAspects(undefined, idsToLoadFromWs, {\n excludeCore: true,\n requestedOnly: false,\n ...mergedOpts,\n });\n\n const { manifests, requireableComponents } = await this.loadAspectDefsByOrder(\n aspectsDefs,\n idsWithoutCore,\n mergedOpts.throwOnError,\n mergedOpts.hideMissingModuleError,\n mergedOpts.ignoreErrorFunc,\n neededFor,\n mergedOpts.runSubscribers\n );\n\n const potentialPluginsIndexes = compact(\n manifests.map((manifest, index) => {\n if (this.aspectLoader.isValidAspect(manifest)) return undefined;\n return index;\n })\n );\n\n // Try require components for potential plugins\n const pluginsRequireableComponents = potentialPluginsIndexes.map((index) => {\n return requireableComponents[index];\n });\n // Do the require again now that the plugins defs already registered\n const pluginsManifests = await this.aspectLoader.getManifestsFromRequireableExtensions(\n pluginsRequireableComponents,\n throwOnError,\n opts.runSubscribers\n );\n await this.aspectLoader.loadExtensionsByManifests(pluginsManifests, undefined, { throwOnError });\n const manifestIds = manifests.map((manifest) => manifest.id);\n this.logger.debug(`${loggerPrefix} finish loading aspects`);\n this.logger.profileTrace(`[${callId}] workspace.loadAspects`);\n return compact(manifestIds.concat(scopeAspectIds));\n }\n\n private async loadFromScopeAspectsCapsule(ids: ComponentID[], throwOnError?: boolean, neededFor?: string) {\n let scopeAspectIds: string[] = [];\n const currentLane = await this.consumer.getCurrentLaneObject();\n\n if (!ids.length) return [];\n\n const nonWorkspaceIdsString = ids.map((id) => id.toString());\n try {\n scopeAspectIds = await this.scope.loadAspects(nonWorkspaceIdsString, throwOnError, neededFor, currentLane, {\n packageManagerConfigRootDir: this.workspace.path,\n workspaceName: this.workspace.name,\n });\n return scopeAspectIds;\n } catch (err: any) {\n this.throwWsJsoncAspectNotFoundError(err);\n return scopeAspectIds;\n\n throw err;\n }\n }\n\n throwWsJsoncAspectNotFoundError(err: any) {\n if (err instanceof ComponentNotFound) {\n const config = this.harmony.get<ConfigMain>('teambit.harmony/config');\n const configStr = JSON.stringify(config.workspaceConfig?.raw || {});\n if (configStr.includes(err.id)) {\n throw new BitError(`error: a component \"${err.id}\" was not found\nyour workspace.jsonc has this component-id set. you might want to remove/change it.`);\n }\n }\n }\n\n private async loadAspectDefsByOrder(\n aspectsDefs: AspectDefinition[],\n seeders: string[],\n throwOnError: boolean,\n hideMissingModuleError: boolean,\n ignoreErrorFunc?: (err: Error) => boolean,\n neededFor?: string,\n runSubscribers = true\n ): Promise<{ manifests: Array<Aspect | ExtensionManifest>; requireableComponents: RequireableComponent[] }> {\n const { nonWorkspaceDefs } = await this.groupAspectDefsByWorkspaceExistence(aspectsDefs);\n const scopeAspectsLoader = this.scope.getScopeAspectsLoader();\n const scopeIds: string[] = compact(nonWorkspaceDefs.map((aspectDef) => aspectDef.getId));\n const scopeIdsGrouped = await scopeAspectsLoader.groupAspectIdsByEnvOfTheList(scopeIds);\n\n // Make sure to first load envs from the list otherwise it will fail when trying to load other aspects\n // as their envs might not be loaded yet\n if (scopeIdsGrouped.envs && scopeIdsGrouped.envs.length && !runSubscribers) {\n await this.scope.loadAspects(scopeIdsGrouped.envs, throwOnError, 'workspace.loadAspects loading scope aspects');\n }\n const requireableComponents = this.aspectDefsToRequireableComponents(aspectsDefs);\n const manifests = await this.aspectLoader.getManifestsFromRequireableExtensions(\n requireableComponents,\n throwOnError,\n runSubscribers\n );\n await this.aspectLoader.loadExtensionsByManifests(\n manifests,\n { seeders, neededFor },\n { throwOnError, hideMissingModuleError, ignoreErrorFunc }\n );\n return { manifests, requireableComponents };\n }\n\n async resolveAspects(\n runtimeName?: string,\n componentIds?: ComponentID[],\n opts?: ResolveAspectsOptions\n ): Promise<AspectDefinition[]> {\n const callId = Math.floor(Math.random() * 1000);\n const loggerPrefix = `[${callId}] workspace resolveAspects,`;\n\n this.logger.debug(\n `${loggerPrefix}, resolving aspects for - runtimeName: ${runtimeName}, componentIds: ${componentIds}`\n );\n const defaultOpts: ResolveAspectsOptions = {\n excludeCore: false,\n requestedOnly: false,\n filterByRuntime: true,\n useScopeAspectsCapsule: false,\n workspaceName: this.workspace.name,\n resolveEnvsFromRoots: this.resolveEnvsFromRoots,\n packageManagerConfigRootDir: this.workspace.path,\n };\n const mergedOpts = { ...defaultOpts, ...opts };\n const idsToResolve = componentIds ? componentIds.map((id) => id.toString()) : this.harmony.extensionsIds;\n const workspaceLocalAspectsIds = Object.keys(this.workspace.localAspects);\n const [localAspectsIds, nonLocalAspectsIds] = partition(idsToResolve, (id) =>\n workspaceLocalAspectsIds.includes(id)\n );\n\n const localDefs = await this.aspectLoader.resolveLocalAspects(\n localAspectsIds.map((id) => this.workspace.localAspects[id]),\n runtimeName\n );\n const coreAspectsIds = this.aspectLoader.getCoreAspectIds();\n const configuredAspects = this.aspectLoader.getConfiguredAspects();\n // it's possible that componentIds are core-aspects that got version for some reason, remove the version to\n // correctly filter them out later.\n const userAspectsIds: string[] = nonLocalAspectsIds\n ? nonLocalAspectsIds.filter((id) => !coreAspectsIds.includes(id.split('@')[0])).map((id) => id.toString())\n : difference(this.harmony.extensionsIds, coreAspectsIds);\n const rootAspectsIds: string[] = difference(configuredAspects, coreAspectsIds);\n const componentIdsToResolve = await this.workspace.resolveMultipleComponentIds(userAspectsIds);\n const components = await this.importAndGetAspects(componentIdsToResolve, opts?.throwOnError);\n // Run the on load slot\n await this.runOnAspectsResolveFunctions(components);\n\n if (opts?.skipDeps) {\n const wsAspectDefs = await this.aspectLoader.resolveAspects(\n components,\n this.getWorkspaceAspectResolver([], runtimeName)\n );\n\n const coreAspectDefs = await Promise.all(\n coreAspectsIds.map(async (coreId) => {\n const rawDef = await getAspectDef(coreId, runtimeName);\n return this.aspectLoader.loadDefinition(rawDef);\n })\n );\n\n const idsToFilter = idsToResolve.map((idStr) => ComponentID.fromString(idStr));\n const targetDefs = wsAspectDefs.concat(coreAspectDefs).concat(localDefs);\n const finalDefs = this.aspectLoader.filterAspectDefs(targetDefs, idsToFilter, runtimeName, mergedOpts);\n\n return finalDefs;\n }\n\n const groupedByIsPlugin = groupBy(components, (component) => {\n return this.aspectLoader.hasPluginFiles(component);\n });\n const graph = await this.getAspectsGraphWithoutCore(groupedByIsPlugin.false, this.isAspect.bind(this));\n const aspectsComponents = graph.nodes.map((node) => node.attr).concat(groupedByIsPlugin.true || []);\n this.logger.debug(`${loggerPrefix} found ${aspectsComponents.length} aspects in the aspects-graph`);\n const { workspaceComps, nonWorkspaceComps } = await this.groupComponentsByWorkspaceExistence(\n aspectsComponents,\n mergedOpts.resolveEnvsFromRoots\n );\n\n const workspaceCompsIds = workspaceComps.map((c) => c.id);\n const nonWorkspaceCompsIds = nonWorkspaceComps.map((c) => c.id);\n this.logFoundWorkspaceVsScope(loggerPrefix, workspaceCompsIds, nonWorkspaceCompsIds);\n\n const stringIds: string[] = [];\n const wsAspectDefs = await this.aspectLoader.resolveAspects(\n workspaceComps,\n this.getWorkspaceAspectResolver(stringIds, runtimeName)\n );\n\n await this.linkIfMissingWorkspaceAspects(wsAspectDefs);\n\n // TODO: hard coded use the old approach and loading from the scope capsules\n // This is because right now loading from the ws node_modules causes issues in some cases\n // like for the cloud app\n // it should be removed once we fix the issues\n if (!this.resolveAspectsFromNodeModules) {\n mergedOpts.useScopeAspectsCapsule = true;\n }\n\n let componentsToResolveFromScope = nonWorkspaceComps;\n let componentsToResolveFromInstalled: Component[] = [];\n if (!mergedOpts.useScopeAspectsCapsule) {\n const nonWorkspaceCompsGroups = groupBy(nonWorkspaceComps, (component) => this.envs.isEnv(component));\n componentsToResolveFromScope = nonWorkspaceCompsGroups.true || [];\n componentsToResolveFromInstalled = nonWorkspaceCompsGroups.false || [];\n }\n\n const scopeIds = componentsToResolveFromScope.map((c) => c.id);\n this.logger.debug(\n `${loggerPrefix} ${\n scopeIds.length\n } components are not in the workspace and are loaded from the scope capsules:\\n${scopeIds\n .map((id) => id.toString())\n .join('\\n')}`\n );\n const scopeAspectsDefs: AspectDefinition[] = scopeIds.length\n ? await this.scope.resolveAspects(runtimeName, scopeIds, mergedOpts)\n : [];\n\n this.logger.debug(\n `${loggerPrefix} ${\n componentsToResolveFromInstalled.length\n } components are not in the workspace and are loaded from the node_modules:\\n${componentsToResolveFromInstalled\n .map((c) => c.id.toString())\n .join('\\n')}`\n );\n const installedAspectsDefs: AspectDefinition[] = componentsToResolveFromInstalled.length\n ? await this.aspectLoader.resolveAspects(\n componentsToResolveFromInstalled,\n this.getInstalledAspectResolver(graph, rootAspectsIds, runtimeName, {\n throwOnError: opts?.throwOnError ?? false,\n })\n )\n : [];\n\n let coreAspectDefs = await Promise.all(\n coreAspectsIds.map(async (coreId) => {\n const rawDef = await getAspectDef(coreId, runtimeName);\n return this.aspectLoader.loadDefinition(rawDef);\n })\n );\n\n // due to lack of workspace and scope runtimes. TODO: fix after adding them.\n if (runtimeName && mergedOpts.filterByRuntime) {\n coreAspectDefs = coreAspectDefs.filter((coreAspect) => {\n return coreAspect.runtimePath;\n });\n }\n const localResolved = await this.aspectLoader.resolveLocalAspects(\n Object.keys(this.workspace.localAspects),\n runtimeName\n );\n const allDefsExceptLocal = [...wsAspectDefs, ...coreAspectDefs, ...scopeAspectsDefs, ...installedAspectsDefs];\n const withoutLocalAspects = allDefsExceptLocal.filter((aspectId) => {\n return !localResolved.find((localAspect) => {\n return localAspect.id === aspectId.component?.id?.toStringWithoutVersion();\n });\n });\n const allDefs = [...withoutLocalAspects, ...localResolved];\n const idsToFilter = idsToResolve.map((idStr) => ComponentID.fromString(idStr));\n const filteredDefs = this.aspectLoader.filterAspectDefs(allDefs, idsToFilter, runtimeName, mergedOpts);\n return filteredDefs;\n }\n\n shouldUseHashForCapsules(): boolean {\n return !this.configStore.getConfig(CFG_CAPSULES_BUILD_COMPONENTS_BASE_DIR);\n }\n\n getCapsulePath() {\n const defaultPath = this.workspace.path;\n return this.configStore.getConfig(CFG_CAPSULES_BUILD_COMPONENTS_BASE_DIR) || defaultPath;\n }\n\n private logFoundWorkspaceVsScope(loggerPrefix: string, workspaceIds: ComponentID[], nonWorkspaceIds: ComponentID[]) {\n const workspaceIdsStr = workspaceIds.length ? workspaceIds.map((id) => id.toString()).join('\\n') : '';\n const nonWorkspaceIdsStr = nonWorkspaceIds.length ? nonWorkspaceIds.map((id) => id.toString()).join('\\n') : '';\n this.logger.debug(\n `${loggerPrefix} found ${workspaceIds.length} components in the workspace, ${nonWorkspaceIds.length} not in the workspace`\n );\n if (workspaceIdsStr) this.logger.debug(`${loggerPrefix} workspace components:\\n${workspaceIdsStr}`);\n if (nonWorkspaceIdsStr)\n this.logger.debug(\n `${loggerPrefix} non workspace components (loaded from the scope capsules or from the node_modules):\\n${nonWorkspaceIdsStr}`\n );\n }\n\n async use(aspectIdStr: string): Promise<string> {\n let aspectId = await this.workspace.resolveComponentId(aspectIdStr);\n const inWs = await this.workspace.hasId(aspectId);\n let aspectIdToAdd = aspectId.toStringWithoutVersion();\n\n let aspectsComponent;\n // let aspectPackage;\n if (!inWs) {\n const aspectsComponents = await this.importAndGetAspects([aspectId]);\n if (aspectsComponents[0]) {\n aspectsComponent = aspectsComponents[0];\n aspectId = aspectsComponent.id;\n aspectIdToAdd = aspectId.toString();\n }\n }\n\n const config = this.harmony.get<ConfigMain>('teambit.harmony/config').workspaceConfig;\n if (!config) {\n throw new Error(`use() unable to get the workspace config`);\n }\n config.setExtension(\n aspectIdToAdd,\n {},\n {\n overrideExisting: false,\n ignoreVersion: false,\n }\n );\n await config.write({ reasonForChange: `use (${aspectIdStr})` });\n this.aspectLoader.addInMemoryConfiguredAspect(aspectIdToAdd);\n await this.runOnRootAspectAddedFunctions(aspectId, inWs);\n return aspectIdToAdd;\n }\n\n async getConfiguredUserAspectsPackages(\n options: GetConfiguredUserAspectsPackagesOptions = {}\n ): Promise<AspectPackage[]> {\n const rawConfiguredAspects = this.workspace.getWorkspaceConfig()?.extensionsIds;\n const coreAspectsIds = this.aspectLoader.getCoreAspectIds();\n const userAspectsIds: string[] = difference(rawConfiguredAspects, coreAspectsIds);\n const componentIdsToResolve = await this.workspace.resolveMultipleComponentIds(\n userAspectsIds.filter((id) => !id.startsWith('file:'))\n );\n const aspectsComponents = await this.importAndGetAspects(componentIdsToResolve);\n let componentsToGetPackages = aspectsComponents;\n if (options.externalsOnly) {\n const { nonWorkspaceComps } = await this.groupComponentsByWorkspaceExistence(aspectsComponents);\n componentsToGetPackages = nonWorkspaceComps;\n }\n const packages = componentsToGetPackages.map((aspectComponent) => {\n const packageName = this.dependencyResolver.getPackageName(aspectComponent);\n const version = aspectComponent.id.version || '*';\n return { packageName, version };\n });\n return packages;\n }\n\n private aspectDefsToRequireableComponents(aspectDefs: AspectDefinition[]): RequireableComponent[] {\n const requireableComponents = aspectDefs.map((aspectDef) => {\n const localPath = aspectDef.aspectPath;\n const component = aspectDef.component;\n if (!component) return undefined;\n const requireFunc = async () => {\n const plugins = this.aspectLoader.getPlugins(component, localPath);\n if (plugins.has()) {\n return plugins.load(MainRuntime.name);\n }\n\n const isModule = await this.aspectLoader.isEsmModule(localPath);\n\n const aspect = !isModule\n ? // eslint-disable-next-line global-require, import/no-dynamic-require\n require(localPath)\n : // : await this.aspectLoader.loadEsm(join(localPath, 'dist', 'index.js'));\n await this.aspectLoader.loadEsm(localPath);\n\n // require aspect runtimes\n const runtimePath = await this.aspectLoader.getRuntimePath(component, localPath, MainRuntime.name);\n if (runtimePath) {\n if (isModule) await this.aspectLoader.loadEsm(runtimePath);\n // eslint-disable-next-line global-require, import/no-dynamic-require\n require(runtimePath);\n }\n return aspect;\n };\n return new RequireableComponent(component, requireFunc);\n });\n return compact(requireableComponents);\n }\n\n private async linkIfMissingWorkspaceAspects(aspects: AspectDefinition[]) {\n const idsToLink = await Promise.all(\n aspects.map(async (aspect) => {\n if (!aspect.component)\n throw new Error(`linkIfMissingWorkspaceAspects, aspect.component is missing for ${aspect.aspectPath}`);\n const isInWs = await this.workspace.hasId(aspect.component.id);\n if (!isInWs) return null;\n const exist = await fs.pathExists(aspect.aspectPath);\n if (!exist) return aspect.component.id;\n return null;\n })\n );\n const idsToLinkWithoutNull = compact(idsToLink);\n if (!idsToLinkWithoutNull.length) return;\n await linkToNodeModulesByIds(this.workspace, idsToLinkWithoutNull);\n }\n\n /**\n * This will return a resolver that knows to resolve aspects which are part of the workspace.\n * means aspects exist in the bitmap file\n * @param stringIds\n * @param runtimeName\n * @returns\n */\n private getWorkspaceAspectResolver(stringIds: string[], runtimeName?: string): AspectResolver {\n const workspaceAspectResolver = async (component: Component): Promise<ResolvedAspect> => {\n const compStringId = component.id.toString();\n stringIds.push(compStringId);\n const localPath = await this.workspace.getComponentPackagePath(component);\n\n const runtimePath = runtimeName\n ? await this.aspectLoader.getRuntimePath(component, localPath, runtimeName)\n : null;\n\n const aspectFilePath = await this.aspectLoader.getAspectFilePath(component, localPath);\n\n this.logger.debug(\n `workspace resolveAspects, resolving id: ${compStringId}, localPath: ${localPath}, runtimePath: ${runtimePath}`\n );\n return {\n aspectPath: localPath,\n aspectFilePath,\n runtimePath,\n };\n };\n return workspaceAspectResolver;\n }\n\n private async runOnAspectsResolveFunctions(aspectsComponents: Component[]): Promise<void> {\n const funcs = this.getOnAspectsResolveFunctions();\n await pMapSeries(funcs, async (func) => {\n try {\n await func(aspectsComponents);\n } catch (err) {\n this.logger.error('failed running onAspectsResolve function', err);\n }\n });\n }\n\n private getOnAspectsResolveFunctions(): OnAspectsResolve[] {\n const aspectsResolveFunctions = this.onAspectsResolveSlot.values();\n return aspectsResolveFunctions;\n }\n\n private async runOnRootAspectAddedFunctions(aspectsId: ComponentID, inWs: boolean): Promise<void> {\n const funcs = this.getOnRootAspectAddedFunctions();\n await pMapSeries(funcs, async (func) => {\n try {\n await func(aspectsId, inWs);\n } catch (err) {\n this.logger.error('failed running onRootAspectAdded function', err);\n }\n });\n }\n\n private getOnRootAspectAddedFunctions(): OnRootAspectAdded[] {\n const RootAspectAddedFunctions = this.onRootAspectAddedSlot.values();\n return RootAspectAddedFunctions;\n }\n\n /**\n * This will return a resolver that knows to resolve aspects which are not part of the workspace.\n * means aspects that does not exist in the bitmap file\n * instead it will resolve them from the node_modules recursively\n * @param graph\n * @param rootIds\n * @param runtimeName\n * @returns\n */\n private getInstalledAspectResolver(\n graph: Graph<Component, string>,\n rootIds: string[],\n runtimeName?: string,\n opts: { throwOnError: boolean } = { throwOnError: false }\n ): AspectResolver {\n const installedAspectsResolver = async (component: Component): Promise<ResolvedAspect | undefined> => {\n const compStringId = component.id.toString();\n // stringIds.push(compStringId);\n const localPath = await this.resolveInstalledAspectRecursively(component, rootIds, graph, opts);\n if (!localPath) return undefined;\n\n const runtimePath = runtimeName\n ? await this.aspectLoader.getRuntimePath(component, localPath, runtimeName)\n : null;\n\n const aspectFilePath = await this.aspectLoader.getAspectFilePath(component, localPath);\n\n this.logger.debug(\n `workspace resolveInstalledAspects, resolving id: ${compStringId}, localPath: ${localPath}, runtimePath: ${runtimePath}`\n );\n return {\n aspectPath: localPath,\n aspectFilePath,\n runtimePath,\n };\n };\n return installedAspectsResolver;\n }\n\n private async resolveInstalledAspectRecursively(\n aspectComponent: Component,\n rootIds: string[],\n graph: Graph<Component, string>,\n opts: { throwOnError: boolean } = { throwOnError: false }\n ): Promise<string | null | undefined> {\n const aspectStringId = aspectComponent.id.toString();\n if (this.resolvedInstalledAspects.has(aspectStringId)) {\n const resolvedPath = this.resolvedInstalledAspects.get(aspectStringId);\n return resolvedPath;\n }\n if (rootIds.includes(aspectStringId)) {\n const localPath = await this.workspace.getComponentPackagePath(aspectComponent);\n this.resolvedInstalledAspects.set(aspectStringId, localPath);\n return localPath;\n }\n const parent = graph.predecessors(aspectStringId)[0];\n if (!parent) return undefined;\n const parentPath = await this.resolveInstalledAspectRecursively(parent.attr, rootIds, graph);\n if (!parentPath) {\n this.resolvedInstalledAspects.set(aspectStringId, null);\n return undefined;\n }\n const packageName = this.dependencyResolver.getPackageName(aspectComponent);\n try {\n const resolvedPath = resolveFrom(parentPath, [packageName]);\n const localPath = findRoot(resolvedPath);\n this.resolvedInstalledAspects.set(aspectStringId, localPath);\n return localPath;\n } catch (error: any) {\n this.resolvedInstalledAspects.set(aspectStringId, null);\n if (opts.throwOnError) {\n throw error;\n }\n this.logger.consoleWarning(\n `failed resolving aspect ${aspectStringId} from ${parentPath}, error: ${error.message}`\n );\n return undefined;\n }\n }\n\n /**\n * Create a graph of aspects without the core aspects.\n * @param components\n * @param isAspect\n * @returns\n */\n private async getAspectsGraphWithoutCore(\n components: Component[] = [],\n isAspect?: ShouldLoadFunc\n ): Promise<Graph<Component, string>> {\n const ids = components.map((component) => component.id);\n const coreAspectsStringIds = this.aspectLoader.getCoreAspectIds();\n // TODO: @gilad it causes many issues we need to find a better solution. removed for now.\n // const coreAspectsComponentIds = coreAspectsStringIds.map((id) => ComponentID.fromString(id));\n // const aspectsIds = components.reduce((acc, curr) => {\n // const currIds = curr.state.aspects.ids;\n // acc = acc.concat(currIds);\n // return acc;\n // }, [] as any);\n // const otherDependenciesMap = components.reduce((acc, curr) => {\n // // const currIds = curr.state.dependencies.dependencies.map(dep => dep.id.toString());\n // const currMap = curr.state.dependencies.getIdsMap();\n // Object.assign(acc, currMap);\n // return acc;\n // }, {});\n\n // const depsWhichAreNotAspects = difference(Object.keys(otherDependenciesMap), aspectsIds);\n // const depsWhichAreNotAspectsBitIds = depsWhichAreNotAspects.map((strId) => otherDependenciesMap[strId]);\n // We only want to load into the graph components which are aspects and not regular dependencies\n // This come to solve a circular loop when an env aspect use an aspect (as regular dep) and the aspect use the env aspect as its env\n return this.workspace.buildOneGraphForComponents(ids, coreAspectsStringIds, isAspect);\n }\n\n /**\n * Load all unloaded extensions from an extension list\n * this will resolve the extensions from the scope aspects capsules if they are not in the ws\n * Only use it for component extensions\n * for workspace/scope root aspect use the load aspects directly\n *\n * The reason we are loading component extensions with \"scope aspects capsules\" is because for component extensions\n * we might have the same extension in multiple versions\n * (for example I might have 2 components using different versions of the same env)\n * in such case, I can't install both version into the root of the node_modules so I need to place it somewhere else (capsules)\n * @param extensions list of extensions with config to load\n */\n async loadComponentsExtensions(\n extensions: ExtensionDataList,\n originatedFrom?: ComponentID,\n opts: WorkspaceLoadAspectsOptions = {}\n ): Promise<void> {\n const defaultOpts: WorkspaceLoadAspectsOptions = {\n useScopeAspectsCapsule: true,\n throwOnError: false,\n hideMissingModuleError: !!this.workspace.inInstallContext,\n ignoreErrorFunc: this.workspace.inInstallContext ? ignoreAspectLoadingError : undefined,\n resolveEnvsFromRoots: this.resolveEnvsFromRoots,\n };\n const mergedOpts = { ...defaultOpts, ...opts };\n const extensionsIdsP = extensions.map(async (extensionEntry) => {\n // Core extension\n if (!extensionEntry.extensionId) {\n return extensionEntry.stringId as string;\n }\n\n const id = await this.workspace.resolveComponentId(extensionEntry.extensionId);\n // return this.resolveComponentId(extensionEntry.extensionId);\n return id.toString();\n });\n const extensionsIds: string[] = await Promise.all(extensionsIdsP);\n const harmonyExtensions = this.harmony.extensionsIds;\n const loadedExtensions = harmonyExtensions.filter((extId) => {\n return this.harmony.extensions.get(extId)?.loaded;\n });\n const extensionsToLoad = difference(extensionsIds, loadedExtensions);\n if (!extensionsToLoad.length) return;\n await this.loadAspects(extensionsToLoad, undefined, originatedFrom?.toString(), mergedOpts);\n }\n\n private async isAspect(id: ComponentID) {\n const component = await this.workspace.get(id);\n const isUsingAspectEnv = this.envs.isUsingAspectEnv(component);\n const isUsingEnvEnv = this.envs.isUsingEnvEnv(component);\n const isValidAspect = isUsingAspectEnv || isUsingEnvEnv;\n return isValidAspect;\n }\n\n /**\n * same as `this.importAndGetMany()` with a specific error handling of ComponentNotFound\n */\n private async importAndGetAspects(componentIds: ComponentID[], throwOnError = true): Promise<Component[]> {\n try {\n // We don't want to load the seeders as aspects as it will cause an infinite loop\n // once you try to load the seeder it will try to load the workspace component\n // that will arrive here again and again\n const loadOpts: ComponentLoadOptions = {\n idsToNotLoadAsAspects: componentIds.map((id) => id.toString()),\n };\n return await this.workspace.importAndGetMany(\n componentIds,\n 'to load aspects from the workspace',\n loadOpts,\n throwOnError\n );\n } catch (err: any) {\n this.throwWsJsoncAspectNotFoundError(err);\n\n throw err;\n }\n }\n\n /**\n * split the provided components into 2 groups, one which are workspace components and the other which are not.\n * @param components\n * @returns\n */\n private async groupComponentsByWorkspaceExistence(\n components: Component[],\n resolveEnvsFromRoots?: boolean\n ): Promise<{ workspaceComps: Component[]; nonWorkspaceComps: Component[] }> {\n let workspaceComps: Component[] = [];\n let nonWorkspaceComps: Component[] = [];\n await Promise.all(\n components.map(async (component) => {\n const existOnWorkspace = await this.workspace.hasId(component.id);\n existOnWorkspace ? workspaceComps.push(component) : nonWorkspaceComps.push(component);\n })\n );\n if (resolveEnvsFromRoots) {\n const { rootComps, nonRootComps } = await this.groupComponentsByLoadFromRootComps(nonWorkspaceComps);\n workspaceComps = workspaceComps.concat(rootComps);\n nonWorkspaceComps = nonRootComps;\n }\n return { workspaceComps, nonWorkspaceComps };\n }\n\n private async groupComponentsByLoadFromRootComps(\n components: Component[]\n ): Promise<{ rootComps: Component[]; nonRootComps: Component[] }> {\n const rootComps: Component[] = [];\n const nonRootComps: Component[] = [];\n await Promise.all(\n components.map(async (component) => {\n const shouldLoadFromRootComps = await this.shouldLoadFromRootComps(component);\n if (shouldLoadFromRootComps) {\n rootComps.push(component);\n return;\n }\n nonRootComps.push(component);\n })\n );\n return { rootComps, nonRootComps };\n }\n\n private async shouldLoadFromRootComps(component: Component): Promise<boolean> {\n const rootDir = await this.workspace.getComponentPackagePath(component);\n const rootDirExist = await fs.pathExists(rootDir);\n const aspectFilePath = await this.aspectLoader.getAspectFilePath(component, rootDir);\n const aspectFilePathExist = aspectFilePath ? await fs.pathExists(aspectFilePath) : false;\n const pluginFiles = await this.aspectLoader.getPluginFiles(component, rootDir);\n\n // checking that we have the root dir (this means it's an aspect that needs to be loaded from there)\n // and validate that localPathExist so we can\n // really load the component from that path (if it's there it means that it's an env)\n if (rootDirExist && (aspectFilePathExist || pluginFiles.length)) {\n return true;\n }\n // If the component has env.jsonc we want to list it to be loaded from the root folder\n // even if it's not there yet\n // in that case we will fail to load it, and the user will need to run bit install\n if (this.envs.hasEnvManifest(component)) {\n return true;\n }\n return false;\n }\n\n /**\n * split the provided components into 2 groups, one which are workspace components and the other which are not.\n * @param components\n * @returns\n */\n private async groupAspectDefsByWorkspaceExistence(\n aspectDefs: AspectDefinition[]\n ): Promise<{ workspaceDefs: AspectDefinition[]; nonWorkspaceDefs: AspectDefinition[] }> {\n const workspaceDefs: AspectDefinition[] = [];\n const nonWorkspaceDefs: AspectDefinition[] = [];\n await Promise.all(\n aspectDefs.map(async (aspectDef) => {\n const id = aspectDef.component?.id;\n const existOnWorkspace = id ? await this.workspace.hasId(id) : true;\n if (existOnWorkspace) {\n workspaceDefs.push(aspectDef);\n return;\n }\n const shouldLoadFromRootComps = aspectDef.component\n ? await this.shouldLoadFromRootComps(aspectDef.component)\n : undefined;\n if (shouldLoadFromRootComps) {\n workspaceDefs.push(aspectDef);\n return;\n }\n nonWorkspaceDefs.push(aspectDef);\n })\n );\n return { workspaceDefs, nonWorkspaceDefs };\n }\n\n private async groupIdsByWorkspaceExistence(\n ids: ComponentID[],\n resolveEnvsFromRoots?: boolean\n ): Promise<{ workspaceIds: ComponentID[]; nonWorkspaceIds: ComponentID[] }> {\n let workspaceIds: ComponentID[] = [];\n let nonWorkspaceIds: ComponentID[] = [];\n await Promise.all(\n ids.map(async (id) => {\n const existOnWorkspace = await this.workspace.hasId(id);\n existOnWorkspace ? workspaceIds.push(id) : nonWorkspaceIds.push(id);\n })\n );\n // We need to bring the components in order to really group them with taking the root comps into account\n const scopeComponents = await this.importAndGetAspects(nonWorkspaceIds);\n const { nonWorkspaceComps, workspaceComps } = await this.groupComponentsByWorkspaceExistence(\n scopeComponents,\n resolveEnvsFromRoots\n );\n workspaceIds = workspaceIds.concat(workspaceComps.map((c) => c.id));\n nonWorkspaceIds = nonWorkspaceComps.map((c) => c.id);\n return { workspaceIds, nonWorkspaceIds };\n }\n}\n\nfunction ignoreAspectLoadingError(err: Error) {\n // Ignoring that error as probably we are in the middle of the installation process\n // so we didn't yet compile the aspect to esm correctly\n if (err.message.includes(`Cannot use 'import.meta' outside a module`)) {\n return true;\n }\n return false;\n}\n"],"mappings":"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","ignoreList":[]}
@@ -178,7 +178,7 @@ class WorkspaceComponentLoader {
178
178
  };
179
179
  }
180
180
  const callId = Math.floor(Math.random() * 1000); // generate a random callId to be able to identify the call from the logs
181
- this.logger.profile(`getMany-${callId}`);
181
+ this.logger.profileTrace(`getMany-${callId}`);
182
182
  this.logger.setStatusLine(`loading ${ids.length} component(s)`);
183
183
  const loadOptsWithDefaults = Object.assign(
184
184
  // We don't want to load extension or execute the load slot at this step
@@ -227,7 +227,7 @@ class WorkspaceComponentLoader {
227
227
  });
228
228
  const idsWithEmptyStrs = ids.map(id => id.toString());
229
229
  const requestedComponents = components.filter(comp => idsWithEmptyStrs.includes(comp.id.toString()) || idsWithEmptyStrs.includes(comp.id.toStringWithoutVersion()));
230
- this.logger.profile(`getMany-${callId}`);
230
+ this.logger.profileTrace(`getMany-${callId}`);
231
231
  this.logger.clearStatusLine();
232
232
  return {
233
233
  components: requestedComponents,
@@ -240,9 +240,9 @@ class WorkspaceComponentLoader {
240
240
  invalidComponents: []
241
241
  };
242
242
  const workspaceScopeIdsMap = await this.groupAndUpdateIds(ids);
243
- this.logger.profile('buildLoadGroups');
243
+ this.logger.profileTrace('buildLoadGroups');
244
244
  const groupsToHandle = await this.buildLoadGroups(workspaceScopeIdsMap);
245
- this.logger.profile('buildLoadGroups');
245
+ this.logger.profileTrace('buildLoadGroups');
246
246
  // prefix your command with "BIT_LOG=*" to see the detailed groups
247
247
  if (process.env.BIT_LOG) {
248
248
  printGroupsToHandle(groupsToHandle, this.logger);
@@ -257,7 +257,7 @@ class WorkspaceComponentLoader {
257
257
  envs
258
258
  } = group;
259
259
  const groupDesc = `getMany-${callId} group ${index + 1}/${groupsToHandle.length} - ${loadGroupToStr(group)}`;
260
- this.logger.profile(groupDesc);
260
+ this.logger.profileTrace(groupDesc);
261
261
  if (!workspaceIds.length && !scopeIds.length) {
262
262
  throw new Error('getAndLoadSlotOrdered - group has no ids to load');
263
263
  }
@@ -267,7 +267,7 @@ class WorkspaceComponentLoader {
267
267
  aspects,
268
268
  envs
269
269
  }));
270
- this.logger.profile(groupDesc);
270
+ this.logger.profileTrace(groupDesc);
271
271
  // We don't want to return components that were not asked originally (we do want to load them)
272
272
  if (!group.seeders) return undefined;
273
273
  return res;
@@ -484,17 +484,17 @@ class WorkspaceComponentLoader {
484
484
  return !loadOpts.idsToNotLoadAsAspects?.includes(ext.stringId);
485
485
  });
486
486
  if (loadOpts.loadExtensions) {
487
- this.logger.profile('loadComponentsExtensions');
487
+ this.logger.profileTrace('loadComponentsExtensions');
488
488
  await this.workspace.loadComponentsExtensions(filteredMergeExtensions);
489
- this.logger.profile('loadComponentsExtensions');
489
+ this.logger.profileTrace('loadComponentsExtensions');
490
490
  }
491
491
  let wsComponentsWithAspects = workspaceComponents;
492
492
  // if (loadOpts.seeders) {
493
- this.logger.profile('executeLoadSlot');
493
+ this.logger.profileTrace('executeLoadSlot');
494
494
  wsComponentsWithAspects = await (0, _toolboxPromise().pMapPool)(workspaceComponents, component => this.executeLoadSlot(component), {
495
495
  concurrency: (0, _harmonyModules().concurrentComponentsLimit)()
496
496
  });
497
- this.logger.profile('executeLoadSlot');
497
+ this.logger.profileTrace('executeLoadSlot');
498
498
  await this.warnAboutMisconfiguredEnvs(wsComponentsWithAspects);
499
499
  // }
500
500
 
@@ -503,7 +503,7 @@ class WorkspaceComponentLoader {
503
503
  // It's important to load the workspace components as aspects here
504
504
  // otherwise the envs from the workspace won't be loaded at time
505
505
  // so we will get wrong dependencies from component who uses envs from the workspace
506
- this.logger.profile('loadCompsAsAspects');
506
+ this.logger.profileTrace('loadCompsAsAspects');
507
507
  if (loadOpts.loadSeedersAsAspects || loadOpts.core && loadOpts.aspects) {
508
508
  await this.loadCompsAsAspects(workspaceComponents.concat(scopeComponents), {
509
509
  loadApps: true,
@@ -514,7 +514,7 @@ class WorkspaceComponentLoader {
514
514
  idsToNotLoadAsAspects: loadOpts.idsToNotLoadAsAspects
515
515
  });
516
516
  }
517
- this.logger.profile('loadCompsAsAspects');
517
+ this.logger.profileTrace('loadCompsAsAspects');
518
518
  return {
519
519
  components: withAspects,
520
520
  invalidComponents
@@ -645,13 +645,13 @@ class WorkspaceComponentLoader {
645
645
  workspaceIds.forEach(id => {
646
646
  idsIndex[id.toString()] = id;
647
647
  });
648
- this.logger.profile('consumer.loadComponents');
648
+ this.logger.profileTrace('consumer.loadComponents');
649
649
  const {
650
650
  components: legacyComponents,
651
651
  invalidComponents: legacyInvalidComponents,
652
652
  removedComponents
653
653
  } = await this.workspace.consumer.loadComponents(_componentId().ComponentIdList.fromArray(workspaceIds), false, loadOptsWithDefaults);
654
- this.logger.profile('consumer.loadComponents');
654
+ this.logger.profileTrace('consumer.loadComponents');
655
655
  const allLegacyComponents = legacyComponents.concat(removedComponents);
656
656
  legacyInvalidComponents.forEach(invalidComponent => {
657
657
  const entry = {