@teambit/importer 0.0.394 → 0.0.396

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.
@@ -678,9 +678,9 @@ bit import ${idsFromRemote.map(id => id.toStringWithoutVersion()).join(' ')}`);
678
678
  componentsWithDependencies: componentsToWrite,
679
679
  writeToPath: this.options.writeToPath,
680
680
  writeConfig: this.options.writeConfig,
681
- installNpmPackages: this.options.installNpmPackages,
681
+ skipDependencyInstallation: !this.options.installNpmPackages,
682
682
  verbose: this.options.verbose,
683
- override: this.options.override
683
+ throwForExistingDir: !this.options.override
684
684
  };
685
685
  await this.componentWriter.writeMany(manyComponentsWriterOpts);
686
686
  }
@@ -1 +1 @@
1
- {"version":3,"names":["ImportComponents","constructor","workspace","graph","componentWriter","options","consumer","scope","laneObjects","lanes","importComponents","loader","start","BEFORE_IMPORT_ACTION","saveDependenciesAsComponents","config","_saveDependenciesAsComponents","ids","length","importObjectsOnLane","importSpecificComponents","importAccordingToBitMap","objectsOnly","Error","lane","undefined","bitIds","getBitIds","logger","debug","id","toString","beforeImportVersions","_getCurrentVersions","versionDependenciesArr","_importComponentsObjects","mainIdsLatest","BitIds","fromArray","toBitIds","map","m","changeVersion","ignoreMissingHead","mergeAllLanesResults","pMapSeries","laneObject","sources","mergeLane","mergedLanes","result","Promise","all","mergedLane","saveLane","importDetails","_getImportDetails","importedIds","v","component","flat","importedDeps","allDependenciesIds","join","_throwForPotentialIssues","writtenComponents","componentsWithDependencies","multipleVersionDependenciesToConsumer","objects","_fetchDivergeData","_throwForDivergedHistory","_writeToFileSystem","_saveLaneDataIfNeeded","c","modelComponent","getModelComponent","setDivergeData","divergeData","push","merge","divergedComponents","filter","getDivergeData","isDiverged","snapsLocal","snapsOnSourceOnly","snapsRemote","snapsOnTargetOnly","ComponentsPendingMerge","fromOriginalScope","scopeComponentsImporter","ScopeComponentsImporter","getInstance","importManyDeltaWithoutDeps","fromHead","allHistory","collectParents","results","importManyFromOriginalScopes","importMany","preferDependencyGraph","fetchDeps","getBitIdsForLanes","bitIdsFromLane","flatMap","mainIds","bitMap","getAuthoredAndImportedBitIdsOfDefaultLane","mainIdsToImport","hasScope","hasWithoutVersion","idsWithWildcard","hasWildcard","idsWithoutWildcard","idsWithoutWildcardPreferFromLane","idStr","BitId","parse","fromLane","searchWithoutVersion","idsFromRemote","getRemoteBitIdsByWildcards","existingOnLanes","BitError","l","name","toStringWithoutVersion","getBitIdsForNonLanes","importDependenciesDirectly","importDependents","graphs","_getComponentsGraphs","dependenciesIds","_getDependenciesFromGraph","getGraphIds","targetCompIds","resolveMultipleComponentIds","sourceIds","listIds","findIdsFromSourcesToTargets","_legacy","uniqFromArray","dependencies","bitId","componentGraph","find","scopeName","dependenciesInfo","getDependenciesInfo","d","R","flatten","_getDependentsFromGraph","dependents","dependentsInfo","getDependentsInfo","remotes","getScopeRemotes","scopeGraphs","override","componentsIdsToImport","getIdsToImportFromBitmap","isEmpty","NothingToImport","_throwForModifiedOrNewComponents","componentWithDependencies","allIds","getAllBitIdsFromAllLanes","versionsP","getModelComponentIfExist","listVersions","versions","fromPairs","currentVersions","components","detailsP","Object","keys","ShowDoctorError","afterImportVersions","versionDifference","difference","getStatus","filesStatus","mergeStatus","deprecated","isDeprecated","removed","isRemoved","latestVersion","getHeadRegardlessOfLaneAsTagOrHash","includes","status","missingDeps","getMissingDependencies","_throwForDifferentComponentWithSameName","componentsStatuses","getManyComponentsStatuses","modifiedComponents","modified","newlyCreated","GeneralError","chalk","yellow","forEach","existingId","getParsedIdIfExist","_getMergeStatus","componentStatus","getComponentStatusById","mergeResults","componentModel","existingBitMapBitId","getBitId","ignoreVersion","fsComponent","loadComponent","currentlyUsedVersion","version","baseComponent","loadVersion","otherComponent","threeWayMerge","otherLabel","currentComponent","currentLabel","_updateComponentFilesPerMergeStrategy","componentMergeStatus","files","hasConflicts","mergeStrategy","MergeOptions","ours","file","pathNormalizeToLinux","relative","FileStatus","unchanged","updateComponentId","hasChanged","theirs","updated","modifiedFiles","applyModifiedVersion","updateAllComponentsAccordingToMergeStrategy","componentsStatusP","componentsStatus","componentWithConflict","getMergeStrategyInteractive","componentsToWrite","unchangedFiles","removeNulls","reject","isNil","_shouldSaveLaneData","isOnLane","currentLane","getCurrentLaneObject","idsFromRemoteLanes","comp","existOnRemoteLane","has","saveInLane","setComponentProp","ref","getRef","addComponent","head","manyComponentsWriterOpts","writeToPath","writeConfig","installNpmPackages","verbose","writeMany"],"sources":["import-components.ts"],"sourcesContent":["import chalk from 'chalk';\nimport R from 'ramda';\nimport { BitError } from '@teambit/bit-error';\nimport { LaneId } from '@teambit/lane-id';\nimport pMapSeries from 'p-map-series';\nimport { getRemoteBitIdsByWildcards } from '@teambit/legacy/dist/api/consumer/lib/list-scope';\nimport { BitId, BitIds } from '@teambit/legacy/dist/bit-id';\nimport { Consumer } from '@teambit/legacy/dist/consumer';\nimport loader from '@teambit/legacy/dist/cli/loader';\nimport { BEFORE_IMPORT_ACTION } from '@teambit/legacy/dist/cli/loader/loader-messages';\nimport GeneralError from '@teambit/legacy/dist/error/general-error';\nimport ShowDoctorError from '@teambit/legacy/dist/error/show-doctor-error';\nimport logger from '@teambit/legacy/dist/logger/logger';\nimport Remotes from '@teambit/legacy/dist/remotes/remotes';\nimport { ComponentWithDependencies, Scope } from '@teambit/legacy/dist/scope';\nimport DependencyGraph from '@teambit/legacy/dist/scope/graph/scope-graph';\nimport { Lane, ModelComponent, Version } from '@teambit/legacy/dist/scope/models';\nimport { getScopeRemotes } from '@teambit/legacy/dist/scope/scope-remotes';\nimport { pathNormalizeToLinux } from '@teambit/legacy/dist/utils';\nimport hasWildcard from '@teambit/legacy/dist/utils/string/has-wildcard';\nimport Component from '@teambit/legacy/dist/consumer/component';\nimport { NothingToImport } from '@teambit/legacy/dist/consumer/exceptions';\nimport { applyModifiedVersion } from '@teambit/legacy/dist/consumer/versions-ops/checkout-version';\nimport {\n FileStatus,\n getMergeStrategyInteractive,\n MergeOptions,\n threeWayMerge,\n} from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport { FilesStatus, MergeStrategy } from '@teambit/legacy/dist/consumer/versions-ops/merge-version/merge-version';\nimport { MergeResultsThreeWay } from '@teambit/legacy/dist/consumer/versions-ops/merge-version/three-way-merge';\nimport ComponentsPendingMerge from '@teambit/legacy/dist/consumer/component-ops/exceptions/components-pending-merge';\nimport ScopeComponentsImporter from '@teambit/legacy/dist/scope/component-ops/scope-components-importer';\nimport VersionDependencies, {\n multipleVersionDependenciesToConsumer,\n} from '@teambit/legacy/dist/scope/version-dependencies';\nimport { GraphMain } from '@teambit/graph';\nimport { Workspace } from '@teambit/workspace';\nimport { ComponentWriterMain } from '@teambit/component-writer';\n\nexport type ImportOptions = {\n ids: string[]; // array might be empty\n verbose?: boolean;\n merge?: boolean;\n mergeStrategy?: MergeStrategy;\n writeToPath?: string;\n writeConfig?: boolean;\n override?: boolean;\n installNpmPackages: boolean; // default: true\n objectsOnly?: boolean;\n saveDependenciesAsComponents?: boolean;\n importDependenciesDirectly?: boolean; // default: false, normally it imports them as packages or nested, not as imported\n importDependents?: boolean;\n fromOriginalScope?: boolean; // default: false, otherwise, it fetches flattened dependencies from their dependents\n saveInLane?: boolean; // save the imported component on the current lane (won't be available on main)\n lanes?: {\n laneIds: LaneId[];\n lanes: Lane[]; // it can be an empty array when a lane is a local lane and doesn't exist on the remote\n };\n allHistory?: boolean;\n fetchDeps?: boolean; // by default, if a component was tagged with > 0.0.900, it has the flattened-deps-graph in the object\n};\ntype ComponentMergeStatus = {\n componentWithDependencies: ComponentWithDependencies;\n mergeResults: MergeResultsThreeWay | null | undefined;\n};\ntype ImportedVersions = { [id: string]: string[] };\nexport type ImportStatus = 'added' | 'updated' | 'up to date';\nexport type ImportDetails = {\n id: string;\n versions: string[];\n latestVersion: string | null;\n status: ImportStatus;\n filesStatus: FilesStatus | null | undefined;\n missingDeps: BitId[];\n deprecated: boolean;\n removed?: boolean;\n};\nexport type ImportResult = {\n importedIds: BitId[];\n importedDeps: BitId[];\n writtenComponents?: Component[];\n importDetails: ImportDetails[];\n cancellationMessage?: string;\n};\n\nexport default class ImportComponents {\n consumer: Consumer;\n scope: Scope;\n mergeStatus: { [id: string]: FilesStatus };\n private laneObjects: Lane[];\n private divergeData: Array<ModelComponent> = [];\n constructor(\n private workspace: Workspace,\n private graph: GraphMain,\n private componentWriter: ComponentWriterMain,\n public options: ImportOptions\n ) {\n this.consumer = this.workspace.consumer;\n this.scope = this.consumer.scope;\n this.laneObjects = this.options.lanes ? (this.options.lanes.lanes as Lane[]) : [];\n }\n\n importComponents(): Promise<ImportResult> {\n loader.start(BEFORE_IMPORT_ACTION);\n this.options.saveDependenciesAsComponents = this.consumer.config._saveDependenciesAsComponents;\n if (this.options.lanes && !this.options.ids.length) {\n return this.importObjectsOnLane();\n }\n if (this.options.ids.length) {\n return this.importSpecificComponents();\n }\n return this.importAccordingToBitMap();\n }\n\n async importObjectsOnLane(): Promise<ImportResult> {\n if (!this.options.objectsOnly) {\n throw new Error(`importObjectsOnLane should have objectsOnly=true`);\n }\n if (this.laneObjects.length > 1) {\n throw new Error(`importObjectsOnLane does not support more than one lane`);\n }\n const lane = this.laneObjects.length ? this.laneObjects[0] : undefined;\n const bitIds: BitIds = await this.getBitIds();\n lane\n ? logger.debug(`importObjectsOnLane, Lane: ${lane.id()}, Ids: ${bitIds.toString()}`)\n : logger.debug(`importObjectsOnLane, the lane does not exist on the remote. importing only the main components`);\n const beforeImportVersions = await this._getCurrentVersions(bitIds);\n const versionDependenciesArr = await this._importComponentsObjects(bitIds, {\n lane,\n });\n\n // import lane components from their original scope, this way, it's possible to run diff/merge on them.\n // don't use `scope.getDefaultLaneIdsFromLane()`. we need all components, because it's possible that a component\n // does't have \"head\" locally although it exits in the origin-scope. it happens when the component was created on\n // the origin-scope after a component with the same-name was created on the lane\n if (lane) {\n // @todo: optimize this maybe. currently, it imports twice.\n // try to make the previous `importComponentsObjectsHarmony` import the same component once from the original\n // scope and once from the lane-scope.\n const mainIdsLatest = BitIds.fromArray(lane.toBitIds().map((m) => m.changeVersion(undefined)));\n await this._importComponentsObjects(mainIdsLatest, {\n ignoreMissingHead: true,\n });\n }\n\n // merge the lane objects\n const mergeAllLanesResults = await pMapSeries(this.laneObjects, (laneObject) =>\n this.scope.sources.mergeLane(laneObject, true)\n );\n const mergedLanes = mergeAllLanesResults.map((result) => result.mergeLane);\n await Promise.all(mergedLanes.map((mergedLane) => this.scope.lanes.saveLane(mergedLane)));\n\n const importDetails = await this._getImportDetails(beforeImportVersions, versionDependenciesArr);\n return {\n importedIds: versionDependenciesArr.map((v) => v.component.id).flat(),\n importedDeps: versionDependenciesArr.map((v) => v.allDependenciesIds).flat(),\n importDetails,\n };\n }\n\n async importSpecificComponents(): Promise<ImportResult> {\n logger.debug(`importSpecificComponents, Ids: ${this.options.ids.join(', ')}`);\n const bitIds: BitIds = await this.getBitIds();\n const beforeImportVersions = await this._getCurrentVersions(bitIds);\n await this._throwForPotentialIssues(bitIds);\n const versionDependenciesArr = await this._importComponentsObjects(bitIds, {\n lane: this.laneObjects?.[0],\n });\n if (this.laneObjects && this.options.objectsOnly) {\n // merge the lane objects\n const mergeAllLanesResults = await pMapSeries(this.laneObjects, (laneObject) =>\n this.scope.sources.mergeLane(laneObject, true)\n );\n const mergedLanes = mergeAllLanesResults.map((result) => result.mergeLane);\n await Promise.all(mergedLanes.map((mergedLane) => this.scope.lanes.saveLane(mergedLane)));\n }\n let writtenComponents: Component[] = [];\n if (!this.options.objectsOnly) {\n const componentsWithDependencies = await multipleVersionDependenciesToConsumer(\n versionDependenciesArr,\n this.scope.objects\n );\n await this._fetchDivergeData(componentsWithDependencies);\n this._throwForDivergedHistory();\n await this._writeToFileSystem(componentsWithDependencies);\n await this._saveLaneDataIfNeeded(componentsWithDependencies);\n writtenComponents = componentsWithDependencies.map((c) => c.component);\n }\n\n const importDetails = await this._getImportDetails(beforeImportVersions, versionDependenciesArr);\n return {\n importedIds: versionDependenciesArr.map((v) => v.component.id).flat(),\n importedDeps: versionDependenciesArr.map((v) => v.allDependenciesIds).flat(),\n writtenComponents,\n importDetails,\n };\n }\n\n async _fetchDivergeData(componentsWithDependencies: ComponentWithDependencies[]) {\n if (this.options.objectsOnly) {\n // no need for it when importing objects only. if it's enabled, in case when on a lane and a non-lane\n // component is in bitmap using an older version, it throws \"getDivergeData: unable to find Version X of Y\"\n return;\n }\n await Promise.all(\n componentsWithDependencies.map(async ({ component }) => {\n const modelComponent = await this.scope.getModelComponent(component.id);\n await modelComponent.setDivergeData(this.scope.objects, undefined, false);\n this.divergeData.push(modelComponent);\n })\n );\n }\n\n _throwForDivergedHistory() {\n if (this.options.merge || this.options.objectsOnly) return;\n const divergedComponents = this.divergeData.filter((modelComponent) =>\n modelComponent.getDivergeData().isDiverged()\n );\n if (divergedComponents.length) {\n const divergeData = divergedComponents.map((modelComponent) => ({\n id: modelComponent.id(),\n snapsLocal: modelComponent.getDivergeData().snapsOnSourceOnly.length,\n snapsRemote: modelComponent.getDivergeData().snapsOnTargetOnly.length,\n }));\n throw new ComponentsPendingMerge(divergeData);\n }\n }\n\n private async _importComponentsObjects(\n ids: BitIds,\n {\n fromOriginalScope = false,\n lane,\n ignoreMissingHead = false,\n }: {\n fromOriginalScope?: boolean;\n lane?: Lane;\n ignoreMissingHead?: boolean;\n }\n ): Promise<VersionDependencies[]> {\n const scopeComponentsImporter = ScopeComponentsImporter.getInstance(this.scope);\n await scopeComponentsImporter.importManyDeltaWithoutDeps({\n ids,\n fromHead: this.options.allHistory,\n collectParents: this.options.allHistory,\n lane,\n // in case a user is merging a lane into a new workspace, then, locally main has head, but remotely the head is\n // empty, until it's exported. going to the remote and asking this component will throw an error if ignoreMissingHead is false\n ignoreMissingHead: true,\n });\n loader.start(`import ${ids.length} components with their dependencies (if missing)`);\n const results = fromOriginalScope\n ? await scopeComponentsImporter.importManyFromOriginalScopes(ids)\n : await scopeComponentsImporter.importMany({\n ids,\n ignoreMissingHead,\n lanes: lane ? [lane] : undefined,\n preferDependencyGraph: !this.options.fetchDeps,\n });\n\n return results;\n }\n\n /**\n * consider the following use cases:\n * 1) no ids were provided. it should import all the lanes components objects AND main components objects\n * (otherwise, if main components are not imported and are missing, then bit-status complains about it)\n * 2) ids are provided with wildcards. we assume the user wants only the ids that are available on the lane.\n * because a user may entered \"bit import scope/*\" and this scope has many component on the lane and many not on the lane.\n * we want to bring only the components on the lane.\n * 3) ids are provided without wildcards. here, the user knows exactly what's needed and it's ok to get the ids from\n * main if not found on the lane.\n */\n private async getBitIdsForLanes(): Promise<BitId[]> {\n if (!this.options.lanes) {\n throw new Error(`getBitIdsForLanes: this.options.lanes must be set`);\n }\n const bitIdsFromLane = BitIds.fromArray(this.laneObjects.flatMap((lane) => lane.toBitIds()));\n\n if (!this.options.ids.length) {\n const mainIds = this.consumer.bitMap.getAuthoredAndImportedBitIdsOfDefaultLane();\n const mainIdsToImport = mainIds.filter((id) => id.hasScope() && !bitIdsFromLane.hasWithoutVersion(id));\n bitIdsFromLane.push(...mainIdsToImport);\n return bitIdsFromLane;\n }\n\n const idsWithWildcard = this.options.ids.filter((id) => hasWildcard(id));\n const idsWithoutWildcard = this.options.ids.filter((id) => !hasWildcard(id));\n const idsWithoutWildcardPreferFromLane = idsWithoutWildcard.map((idStr) => {\n const id = BitId.parse(idStr, true);\n const fromLane = bitIdsFromLane.searchWithoutVersion(id);\n return fromLane || id;\n });\n\n const bitIds: BitId[] = [...idsWithoutWildcardPreferFromLane];\n\n if (!idsWithWildcard) {\n return bitIds;\n }\n\n await pMapSeries(idsWithWildcard, async (idStr: string) => {\n const idsFromRemote = await getRemoteBitIdsByWildcards(idStr);\n const existingOnLanes = idsFromRemote.filter((id) => bitIdsFromLane.hasWithoutVersion(id));\n if (!existingOnLanes.length) {\n throw new BitError(`the id with the the wildcard \"${idStr}\" has been parsed to multiple component ids.\nhowever, none of them existing on the lane \"${this.laneObjects.map((l) => l.name).join(', ')}\"\nin case you intend to import these components from main, please run the following:\nbit import ${idsFromRemote.map((id) => id.toStringWithoutVersion()).join(' ')}`);\n }\n bitIds.push(...existingOnLanes);\n });\n\n return bitIds;\n }\n\n private async getBitIdsForNonLanes() {\n const bitIds: BitId[] = [];\n await Promise.all(\n this.options.ids.map(async (idStr: string) => {\n if (hasWildcard(idStr)) {\n const ids = await getRemoteBitIdsByWildcards(idStr);\n loader.start(BEFORE_IMPORT_ACTION); // it stops the previous loader of BEFORE_REMOTE_LIST\n bitIds.push(...ids);\n } else {\n bitIds.push(BitId.parse(idStr, true)); // we don't support importing without a scope name\n }\n })\n );\n\n return bitIds;\n }\n\n private async getBitIds(): Promise<BitIds> {\n const bitIds: BitId[] = this.options.lanes ? await this.getBitIdsForLanes() : await this.getBitIdsForNonLanes();\n if (this.options.importDependenciesDirectly || this.options.importDependents) {\n const graphs = await this._getComponentsGraphs(bitIds);\n if (this.options.importDependenciesDirectly) {\n const dependenciesIds = this._getDependenciesFromGraph(bitIds, graphs);\n bitIds.push(...dependenciesIds);\n }\n if (this.options.importDependents) {\n const graph = await this.graph.getGraphIds();\n const targetCompIds = await this.workspace.resolveMultipleComponentIds(bitIds);\n const sourceIds = await this.workspace.listIds();\n const ids = graph.findIdsFromSourcesToTargets(sourceIds, targetCompIds);\n logger.debug(\n `found ${ids.length} component for --dependents flag`,\n ids.map((id) => id.toString())\n );\n bitIds.push(...ids.map((id) => id._legacy));\n }\n }\n return BitIds.uniqFromArray(bitIds);\n }\n\n _getDependenciesFromGraph(bitIds: BitId[], graphs: DependencyGraph[]): BitId[] {\n const dependencies = bitIds.map((bitId) => {\n const componentGraph = graphs.find((graph) => graph.scopeName === bitId.scope);\n if (!componentGraph) {\n throw new Error(`unable to find a graph for ${bitId.toString()}`);\n }\n const dependenciesInfo = componentGraph.getDependenciesInfo(bitId);\n return dependenciesInfo.map((d) => d.id);\n });\n return R.flatten(dependencies);\n }\n\n _getDependentsFromGraph(bitIds: BitId[], graphs: DependencyGraph[]): BitId[] {\n const dependents = bitIds.map((bitId) => {\n const componentGraph = graphs.find((graph) => graph.scopeName === bitId.scope);\n if (!componentGraph) {\n throw new Error(`unable to find a graph for ${bitId.toString()}`);\n }\n const dependentsInfo = componentGraph.getDependentsInfo(bitId);\n return dependentsInfo.map((d) => d.id);\n });\n return R.flatten(dependents);\n }\n\n async _getComponentsGraphs(bitIds: BitId[]): Promise<DependencyGraph[]> {\n const remotes: Remotes = await getScopeRemotes(this.consumer.scope);\n return remotes.scopeGraphs(bitIds, this.consumer.scope);\n }\n\n async importAccordingToBitMap(): Promise<ImportResult> {\n this.options.objectsOnly = !this.options.merge && !this.options.override;\n const componentsIdsToImport = this.getIdsToImportFromBitmap();\n\n if (R.isEmpty(componentsIdsToImport)) {\n throw new NothingToImport();\n }\n await this._throwForModifiedOrNewComponents(componentsIdsToImport);\n const beforeImportVersions = await this._getCurrentVersions(componentsIdsToImport);\n if (!componentsIdsToImport.length) {\n return {\n importedIds: [],\n importedDeps: [],\n importDetails: [],\n };\n }\n if (!this.options.objectsOnly) {\n throw new Error(`bit import with no ids and --merge flag was not implemented yet`);\n }\n const versionDependenciesArr = await this._importComponentsObjects(componentsIdsToImport, {\n fromOriginalScope: this.options.fromOriginalScope,\n });\n let writtenComponents: Component[] = [];\n if (!this.options.objectsOnly) {\n const componentWithDependencies = await multipleVersionDependenciesToConsumer(\n versionDependenciesArr,\n this.scope.objects\n );\n await this._writeToFileSystem(componentWithDependencies);\n writtenComponents = componentWithDependencies.map((c) => c.component);\n }\n\n const importDetails = await this._getImportDetails(beforeImportVersions, versionDependenciesArr);\n\n return {\n importedIds: versionDependenciesArr.map((v) => v.component.id).flat(),\n importedDeps: versionDependenciesArr.map((v) => v.allDependenciesIds).flat(),\n writtenComponents,\n importDetails,\n };\n }\n\n private getIdsToImportFromBitmap() {\n const allIds = this.consumer.bitMap.getAllBitIdsFromAllLanes();\n return BitIds.fromArray(allIds.filter((id) => id.hasScope()));\n }\n\n async _getCurrentVersions(ids: BitIds): Promise<ImportedVersions> {\n const versionsP = ids.map(async (id) => {\n const modelComponent = await this.consumer.scope.getModelComponentIfExist(id.changeVersion(undefined));\n const idStr = id.toStringWithoutVersion();\n if (!modelComponent) return [idStr, []];\n return [idStr, modelComponent.listVersions()];\n });\n const versions = await Promise.all(versionsP);\n return R.fromPairs(versions);\n }\n\n /**\n * get import details, includes the diff between the versions array before import and after import\n */\n async _getImportDetails(\n currentVersions: ImportedVersions,\n components: VersionDependencies[]\n ): Promise<ImportDetails[]> {\n const detailsP = components.map(async (component) => {\n const id = component.component.id;\n const idStr = id.toStringWithoutVersion();\n const beforeImportVersions = currentVersions[idStr];\n if (!beforeImportVersions) {\n throw new Error(\n `_getImportDetails failed finding ${idStr} in currentVersions, which has ${Object.keys(currentVersions).join(\n ', '\n )}`\n );\n }\n const modelComponent = await this.consumer.scope.getModelComponentIfExist(id);\n if (!modelComponent) throw new ShowDoctorError(`imported component ${idStr} was not found in the model`);\n const afterImportVersions = modelComponent.listVersions();\n const versionDifference: string[] = R.difference(afterImportVersions, beforeImportVersions);\n const getStatus = (): ImportStatus => {\n if (!versionDifference.length) return 'up to date';\n if (!beforeImportVersions.length) return 'added';\n return 'updated';\n };\n const filesStatus = this.mergeStatus && this.mergeStatus[idStr] ? this.mergeStatus[idStr] : null;\n const deprecated = await modelComponent.isDeprecated(this.scope.objects);\n const removed = await component.component.component.isRemoved(this.scope.objects);\n const latestVersion = modelComponent.getHeadRegardlessOfLaneAsTagOrHash(true);\n return {\n id: idStr,\n versions: versionDifference,\n latestVersion: versionDifference.includes(latestVersion) ? latestVersion : null,\n status: getStatus(),\n filesStatus,\n missingDeps: this.options.fetchDeps ? component.getMissingDependencies() : [],\n deprecated,\n removed,\n };\n });\n return Promise.all(detailsP);\n }\n\n async _throwForPotentialIssues(ids: BitIds): Promise<void> {\n await this._throwForModifiedOrNewComponents(ids);\n this._throwForDifferentComponentWithSameName(ids);\n }\n\n async _throwForModifiedOrNewComponents(ids: BitIds): Promise<void> {\n // the typical objectsOnly option is when a user cloned a project with components tagged to the source code, but\n // doesn't have the model objects. in that case, calling getComponentStatusById() may return an error as it relies\n // on the model objects when there are dependencies\n if (this.options.override || this.options.objectsOnly || this.options.merge) return;\n const componentsStatuses = await this.consumer.getManyComponentsStatuses(ids);\n const modifiedComponents = componentsStatuses\n .filter(({ status }) => status.modified || status.newlyCreated)\n .map((c) => c.id);\n if (modifiedComponents.length) {\n throw new GeneralError(\n chalk.yellow(\n `unable to import the following components due to local changes, use --merge flag to merge your local changes or --override to override them\\n${modifiedComponents.join(\n '\\n'\n )} `\n )\n );\n }\n }\n\n /**\n * Model Component id() calculation uses id.toString() for the hash.\n * If an imported component has scopereadonly name equals to a local name, both will have the exact same\n * hash and they'll override each other.\n */\n _throwForDifferentComponentWithSameName(ids: BitIds): void {\n ids.forEach((id: BitId) => {\n const existingId = this.consumer.getParsedIdIfExist(id.toStringWithoutVersion());\n if (existingId && !existingId.hasScope()) {\n throw new GeneralError(`unable to import ${id.toString()}. the component name conflicted with your local component with the same name.\n it's fine to have components with the same name as long as their scope names are different.\n Make sure to export your component first to get a scope and then try importing again`);\n }\n });\n }\n\n async _getMergeStatus(componentWithDependencies: ComponentWithDependencies): Promise<ComponentMergeStatus> {\n const component = componentWithDependencies.component;\n const componentStatus = await this.consumer.getComponentStatusById(component.id);\n const mergeStatus: ComponentMergeStatus = { componentWithDependencies, mergeResults: null };\n if (!componentStatus.modified) return mergeStatus;\n const componentModel = await this.consumer.scope.getModelComponent(component.id);\n const existingBitMapBitId = this.consumer.bitMap.getBitId(component.id, { ignoreVersion: true });\n const fsComponent = await this.consumer.loadComponent(existingBitMapBitId);\n const currentlyUsedVersion = existingBitMapBitId.version;\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n const baseComponent: Version = await componentModel.loadVersion(currentlyUsedVersion, this.consumer.scope.objects);\n const otherComponent: Version = await componentModel.loadVersion(\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n component.id.version,\n this.consumer.scope.objects\n );\n const mergeResults = await threeWayMerge({\n consumer: this.consumer,\n otherComponent,\n otherLabel: component.id.version as string,\n currentComponent: fsComponent,\n currentLabel: `${currentlyUsedVersion} modified`,\n baseComponent,\n });\n mergeStatus.mergeResults = mergeResults;\n return mergeStatus;\n }\n\n /**\n * 1) when there are conflicts and the strategy is \"ours\", don't write the imported component to\n * the filesystem, only update bitmap.\n *\n * 2) when there are conflicts and the strategy is \"theirs\", override the local changes by the\n * imported component. (similar to --override)\n *\n * 3) when there is no conflict or there are conflicts and the strategy is manual, write the files\n * according to the merge result. (done by applyModifiedVersion())\n */\n _updateComponentFilesPerMergeStrategy(componentMergeStatus: ComponentMergeStatus): FilesStatus | null | undefined {\n const mergeResults = componentMergeStatus.mergeResults;\n if (!mergeResults) return null;\n const component = componentMergeStatus.componentWithDependencies.component;\n const files = component.files;\n\n if (mergeResults.hasConflicts && this.options.mergeStrategy === MergeOptions.ours) {\n const filesStatus = {};\n // don't write the files to the filesystem, only bump the bitmap version.\n files.forEach((file) => {\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n filesStatus[pathNormalizeToLinux(file.relative)] = FileStatus.unchanged;\n });\n this.consumer.bitMap.updateComponentId(component.id);\n this.consumer.bitMap.hasChanged = true;\n return filesStatus;\n }\n if (mergeResults.hasConflicts && this.options.mergeStrategy === MergeOptions.theirs) {\n const filesStatus = {};\n // the local changes will be overridden (as if the user entered --override flag for this component)\n files.forEach((file) => {\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n filesStatus[pathNormalizeToLinux(file.relative)] = FileStatus.updated;\n });\n return filesStatus;\n }\n const { filesStatus, modifiedFiles } = applyModifiedVersion(\n component.files,\n mergeResults,\n this.options.mergeStrategy\n );\n component.files = modifiedFiles;\n\n return filesStatus;\n }\n\n /**\n * update the component files if they are modified and there is a merge strategy.\n * returns only the components that need to be written to the filesystem\n */\n async updateAllComponentsAccordingToMergeStrategy(\n componentsWithDependencies: ComponentWithDependencies[]\n ): Promise<ComponentWithDependencies[]> {\n if (!this.options.merge) return componentsWithDependencies;\n const componentsStatusP = componentsWithDependencies.map((componentWithDependencies: ComponentWithDependencies) => {\n return this._getMergeStatus(componentWithDependencies);\n });\n const componentsStatus = await Promise.all(componentsStatusP);\n const componentWithConflict = componentsStatus.find(\n (component) => component.mergeResults && component.mergeResults.hasConflicts\n );\n if (componentWithConflict && !this.options.mergeStrategy) {\n this.options.mergeStrategy = await getMergeStrategyInteractive();\n }\n this.mergeStatus = {};\n\n const componentsToWrite = componentsStatus.map((componentStatus) => {\n const filesStatus: FilesStatus | null | undefined = this._updateComponentFilesPerMergeStrategy(componentStatus);\n const componentWithDependencies = componentStatus.componentWithDependencies;\n if (!filesStatus) return componentWithDependencies;\n this.mergeStatus[componentWithDependencies.component.id.toStringWithoutVersion()] = filesStatus;\n const unchangedFiles = Object.keys(filesStatus).filter((file) => filesStatus[file] === FileStatus.unchanged);\n if (unchangedFiles.length === Object.keys(filesStatus).length) {\n // all files are unchanged\n return null;\n }\n return componentWithDependencies;\n });\n const removeNulls = R.reject(R.isNil);\n return removeNulls(componentsToWrite);\n }\n\n _shouldSaveLaneData(): boolean {\n if (this.options.objectsOnly) {\n return false;\n }\n return this.consumer.isOnLane();\n }\n\n async _saveLaneDataIfNeeded(componentsWithDependencies: ComponentWithDependencies[]): Promise<void> {\n if (!this._shouldSaveLaneData()) {\n return;\n }\n const currentLane = await this.consumer.getCurrentLaneObject();\n if (!currentLane) {\n return; // user on main\n }\n const idsFromRemoteLanes = BitIds.fromArray(this.laneObjects.flatMap((lane) => lane.toBitIds()));\n const components = componentsWithDependencies.map((c) => c.component);\n await Promise.all(\n components.map(async (comp) => {\n const existOnRemoteLane = idsFromRemoteLanes.has(comp.id);\n if (!existOnRemoteLane && !this.options.saveInLane) {\n this.consumer.bitMap.setComponentProp(comp.id, 'onLanesOnly', false);\n return;\n }\n const modelComponent = await this.scope.getModelComponent(comp.id);\n const ref = modelComponent.getRef(comp.id.version as string);\n if (!ref) throw new Error(`_saveLaneDataIfNeeded unable to get ref for ${comp.id.toString()}`);\n currentLane.addComponent({ id: comp.id, head: ref });\n })\n );\n await this.scope.lanes.saveLane(currentLane);\n }\n\n async _writeToFileSystem(componentsWithDependencies: ComponentWithDependencies[]) {\n if (this.options.objectsOnly) {\n return;\n }\n const componentsToWrite = await this.updateAllComponentsAccordingToMergeStrategy(componentsWithDependencies);\n const manyComponentsWriterOpts = {\n consumer: this.consumer,\n componentsWithDependencies: componentsToWrite,\n writeToPath: this.options.writeToPath,\n writeConfig: this.options.writeConfig,\n installNpmPackages: this.options.installNpmPackages,\n verbose: this.options.verbose,\n override: this.options.override,\n };\n await this.componentWriter.writeMany(manyComponentsWriterOpts);\n }\n}\n"],"mappings":"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"}
1
+ {"version":3,"names":["ImportComponents","constructor","workspace","graph","componentWriter","options","consumer","scope","laneObjects","lanes","importComponents","loader","start","BEFORE_IMPORT_ACTION","saveDependenciesAsComponents","config","_saveDependenciesAsComponents","ids","length","importObjectsOnLane","importSpecificComponents","importAccordingToBitMap","objectsOnly","Error","lane","undefined","bitIds","getBitIds","logger","debug","id","toString","beforeImportVersions","_getCurrentVersions","versionDependenciesArr","_importComponentsObjects","mainIdsLatest","BitIds","fromArray","toBitIds","map","m","changeVersion","ignoreMissingHead","mergeAllLanesResults","pMapSeries","laneObject","sources","mergeLane","mergedLanes","result","Promise","all","mergedLane","saveLane","importDetails","_getImportDetails","importedIds","v","component","flat","importedDeps","allDependenciesIds","join","_throwForPotentialIssues","writtenComponents","componentsWithDependencies","multipleVersionDependenciesToConsumer","objects","_fetchDivergeData","_throwForDivergedHistory","_writeToFileSystem","_saveLaneDataIfNeeded","c","modelComponent","getModelComponent","setDivergeData","divergeData","push","merge","divergedComponents","filter","getDivergeData","isDiverged","snapsLocal","snapsOnSourceOnly","snapsRemote","snapsOnTargetOnly","ComponentsPendingMerge","fromOriginalScope","scopeComponentsImporter","ScopeComponentsImporter","getInstance","importManyDeltaWithoutDeps","fromHead","allHistory","collectParents","results","importManyFromOriginalScopes","importMany","preferDependencyGraph","fetchDeps","getBitIdsForLanes","bitIdsFromLane","flatMap","mainIds","bitMap","getAuthoredAndImportedBitIdsOfDefaultLane","mainIdsToImport","hasScope","hasWithoutVersion","idsWithWildcard","hasWildcard","idsWithoutWildcard","idsWithoutWildcardPreferFromLane","idStr","BitId","parse","fromLane","searchWithoutVersion","idsFromRemote","getRemoteBitIdsByWildcards","existingOnLanes","BitError","l","name","toStringWithoutVersion","getBitIdsForNonLanes","importDependenciesDirectly","importDependents","graphs","_getComponentsGraphs","dependenciesIds","_getDependenciesFromGraph","getGraphIds","targetCompIds","resolveMultipleComponentIds","sourceIds","listIds","findIdsFromSourcesToTargets","_legacy","uniqFromArray","dependencies","bitId","componentGraph","find","scopeName","dependenciesInfo","getDependenciesInfo","d","R","flatten","_getDependentsFromGraph","dependents","dependentsInfo","getDependentsInfo","remotes","getScopeRemotes","scopeGraphs","override","componentsIdsToImport","getIdsToImportFromBitmap","isEmpty","NothingToImport","_throwForModifiedOrNewComponents","componentWithDependencies","allIds","getAllBitIdsFromAllLanes","versionsP","getModelComponentIfExist","listVersions","versions","fromPairs","currentVersions","components","detailsP","Object","keys","ShowDoctorError","afterImportVersions","versionDifference","difference","getStatus","filesStatus","mergeStatus","deprecated","isDeprecated","removed","isRemoved","latestVersion","getHeadRegardlessOfLaneAsTagOrHash","includes","status","missingDeps","getMissingDependencies","_throwForDifferentComponentWithSameName","componentsStatuses","getManyComponentsStatuses","modifiedComponents","modified","newlyCreated","GeneralError","chalk","yellow","forEach","existingId","getParsedIdIfExist","_getMergeStatus","componentStatus","getComponentStatusById","mergeResults","componentModel","existingBitMapBitId","getBitId","ignoreVersion","fsComponent","loadComponent","currentlyUsedVersion","version","baseComponent","loadVersion","otherComponent","threeWayMerge","otherLabel","currentComponent","currentLabel","_updateComponentFilesPerMergeStrategy","componentMergeStatus","files","hasConflicts","mergeStrategy","MergeOptions","ours","file","pathNormalizeToLinux","relative","FileStatus","unchanged","updateComponentId","hasChanged","theirs","updated","modifiedFiles","applyModifiedVersion","updateAllComponentsAccordingToMergeStrategy","componentsStatusP","componentsStatus","componentWithConflict","getMergeStrategyInteractive","componentsToWrite","unchangedFiles","removeNulls","reject","isNil","_shouldSaveLaneData","isOnLane","currentLane","getCurrentLaneObject","idsFromRemoteLanes","comp","existOnRemoteLane","has","saveInLane","setComponentProp","ref","getRef","addComponent","head","manyComponentsWriterOpts","writeToPath","writeConfig","skipDependencyInstallation","installNpmPackages","verbose","throwForExistingDir","writeMany"],"sources":["import-components.ts"],"sourcesContent":["import chalk from 'chalk';\nimport R from 'ramda';\nimport { BitError } from '@teambit/bit-error';\nimport { LaneId } from '@teambit/lane-id';\nimport pMapSeries from 'p-map-series';\nimport { getRemoteBitIdsByWildcards } from '@teambit/legacy/dist/api/consumer/lib/list-scope';\nimport { BitId, BitIds } from '@teambit/legacy/dist/bit-id';\nimport { Consumer } from '@teambit/legacy/dist/consumer';\nimport loader from '@teambit/legacy/dist/cli/loader';\nimport { BEFORE_IMPORT_ACTION } from '@teambit/legacy/dist/cli/loader/loader-messages';\nimport GeneralError from '@teambit/legacy/dist/error/general-error';\nimport ShowDoctorError from '@teambit/legacy/dist/error/show-doctor-error';\nimport logger from '@teambit/legacy/dist/logger/logger';\nimport Remotes from '@teambit/legacy/dist/remotes/remotes';\nimport { ComponentWithDependencies, Scope } from '@teambit/legacy/dist/scope';\nimport DependencyGraph from '@teambit/legacy/dist/scope/graph/scope-graph';\nimport { Lane, ModelComponent, Version } from '@teambit/legacy/dist/scope/models';\nimport { getScopeRemotes } from '@teambit/legacy/dist/scope/scope-remotes';\nimport { pathNormalizeToLinux } from '@teambit/legacy/dist/utils';\nimport hasWildcard from '@teambit/legacy/dist/utils/string/has-wildcard';\nimport Component from '@teambit/legacy/dist/consumer/component';\nimport { NothingToImport } from '@teambit/legacy/dist/consumer/exceptions';\nimport { applyModifiedVersion } from '@teambit/legacy/dist/consumer/versions-ops/checkout-version';\nimport {\n FileStatus,\n getMergeStrategyInteractive,\n MergeOptions,\n threeWayMerge,\n} from '@teambit/legacy/dist/consumer/versions-ops/merge-version';\nimport { FilesStatus, MergeStrategy } from '@teambit/legacy/dist/consumer/versions-ops/merge-version/merge-version';\nimport { MergeResultsThreeWay } from '@teambit/legacy/dist/consumer/versions-ops/merge-version/three-way-merge';\nimport ComponentsPendingMerge from '@teambit/legacy/dist/consumer/component-ops/exceptions/components-pending-merge';\nimport ScopeComponentsImporter from '@teambit/legacy/dist/scope/component-ops/scope-components-importer';\nimport VersionDependencies, {\n multipleVersionDependenciesToConsumer,\n} from '@teambit/legacy/dist/scope/version-dependencies';\nimport { GraphMain } from '@teambit/graph';\nimport { Workspace } from '@teambit/workspace';\nimport { ComponentWriterMain } from '@teambit/component-writer';\n\nexport type ImportOptions = {\n ids: string[]; // array might be empty\n verbose?: boolean;\n merge?: boolean;\n mergeStrategy?: MergeStrategy;\n writeToPath?: string;\n writeConfig?: boolean;\n override?: boolean;\n installNpmPackages: boolean; // default: true\n objectsOnly?: boolean;\n saveDependenciesAsComponents?: boolean;\n importDependenciesDirectly?: boolean; // default: false, normally it imports them as packages or nested, not as imported\n importDependents?: boolean;\n fromOriginalScope?: boolean; // default: false, otherwise, it fetches flattened dependencies from their dependents\n saveInLane?: boolean; // save the imported component on the current lane (won't be available on main)\n lanes?: {\n laneIds: LaneId[];\n lanes: Lane[]; // it can be an empty array when a lane is a local lane and doesn't exist on the remote\n };\n allHistory?: boolean;\n fetchDeps?: boolean; // by default, if a component was tagged with > 0.0.900, it has the flattened-deps-graph in the object\n};\ntype ComponentMergeStatus = {\n componentWithDependencies: ComponentWithDependencies;\n mergeResults: MergeResultsThreeWay | null | undefined;\n};\ntype ImportedVersions = { [id: string]: string[] };\nexport type ImportStatus = 'added' | 'updated' | 'up to date';\nexport type ImportDetails = {\n id: string;\n versions: string[];\n latestVersion: string | null;\n status: ImportStatus;\n filesStatus: FilesStatus | null | undefined;\n missingDeps: BitId[];\n deprecated: boolean;\n removed?: boolean;\n};\nexport type ImportResult = {\n importedIds: BitId[];\n importedDeps: BitId[];\n writtenComponents?: Component[];\n importDetails: ImportDetails[];\n cancellationMessage?: string;\n};\n\nexport default class ImportComponents {\n consumer: Consumer;\n scope: Scope;\n mergeStatus: { [id: string]: FilesStatus };\n private laneObjects: Lane[];\n private divergeData: Array<ModelComponent> = [];\n constructor(\n private workspace: Workspace,\n private graph: GraphMain,\n private componentWriter: ComponentWriterMain,\n public options: ImportOptions\n ) {\n this.consumer = this.workspace.consumer;\n this.scope = this.consumer.scope;\n this.laneObjects = this.options.lanes ? (this.options.lanes.lanes as Lane[]) : [];\n }\n\n importComponents(): Promise<ImportResult> {\n loader.start(BEFORE_IMPORT_ACTION);\n this.options.saveDependenciesAsComponents = this.consumer.config._saveDependenciesAsComponents;\n if (this.options.lanes && !this.options.ids.length) {\n return this.importObjectsOnLane();\n }\n if (this.options.ids.length) {\n return this.importSpecificComponents();\n }\n return this.importAccordingToBitMap();\n }\n\n async importObjectsOnLane(): Promise<ImportResult> {\n if (!this.options.objectsOnly) {\n throw new Error(`importObjectsOnLane should have objectsOnly=true`);\n }\n if (this.laneObjects.length > 1) {\n throw new Error(`importObjectsOnLane does not support more than one lane`);\n }\n const lane = this.laneObjects.length ? this.laneObjects[0] : undefined;\n const bitIds: BitIds = await this.getBitIds();\n lane\n ? logger.debug(`importObjectsOnLane, Lane: ${lane.id()}, Ids: ${bitIds.toString()}`)\n : logger.debug(`importObjectsOnLane, the lane does not exist on the remote. importing only the main components`);\n const beforeImportVersions = await this._getCurrentVersions(bitIds);\n const versionDependenciesArr = await this._importComponentsObjects(bitIds, {\n lane,\n });\n\n // import lane components from their original scope, this way, it's possible to run diff/merge on them.\n // don't use `scope.getDefaultLaneIdsFromLane()`. we need all components, because it's possible that a component\n // does't have \"head\" locally although it exits in the origin-scope. it happens when the component was created on\n // the origin-scope after a component with the same-name was created on the lane\n if (lane) {\n // @todo: optimize this maybe. currently, it imports twice.\n // try to make the previous `importComponentsObjectsHarmony` import the same component once from the original\n // scope and once from the lane-scope.\n const mainIdsLatest = BitIds.fromArray(lane.toBitIds().map((m) => m.changeVersion(undefined)));\n await this._importComponentsObjects(mainIdsLatest, {\n ignoreMissingHead: true,\n });\n }\n\n // merge the lane objects\n const mergeAllLanesResults = await pMapSeries(this.laneObjects, (laneObject) =>\n this.scope.sources.mergeLane(laneObject, true)\n );\n const mergedLanes = mergeAllLanesResults.map((result) => result.mergeLane);\n await Promise.all(mergedLanes.map((mergedLane) => this.scope.lanes.saveLane(mergedLane)));\n\n const importDetails = await this._getImportDetails(beforeImportVersions, versionDependenciesArr);\n return {\n importedIds: versionDependenciesArr.map((v) => v.component.id).flat(),\n importedDeps: versionDependenciesArr.map((v) => v.allDependenciesIds).flat(),\n importDetails,\n };\n }\n\n async importSpecificComponents(): Promise<ImportResult> {\n logger.debug(`importSpecificComponents, Ids: ${this.options.ids.join(', ')}`);\n const bitIds: BitIds = await this.getBitIds();\n const beforeImportVersions = await this._getCurrentVersions(bitIds);\n await this._throwForPotentialIssues(bitIds);\n const versionDependenciesArr = await this._importComponentsObjects(bitIds, {\n lane: this.laneObjects?.[0],\n });\n if (this.laneObjects && this.options.objectsOnly) {\n // merge the lane objects\n const mergeAllLanesResults = await pMapSeries(this.laneObjects, (laneObject) =>\n this.scope.sources.mergeLane(laneObject, true)\n );\n const mergedLanes = mergeAllLanesResults.map((result) => result.mergeLane);\n await Promise.all(mergedLanes.map((mergedLane) => this.scope.lanes.saveLane(mergedLane)));\n }\n let writtenComponents: Component[] = [];\n if (!this.options.objectsOnly) {\n const componentsWithDependencies = await multipleVersionDependenciesToConsumer(\n versionDependenciesArr,\n this.scope.objects\n );\n await this._fetchDivergeData(componentsWithDependencies);\n this._throwForDivergedHistory();\n await this._writeToFileSystem(componentsWithDependencies);\n await this._saveLaneDataIfNeeded(componentsWithDependencies);\n writtenComponents = componentsWithDependencies.map((c) => c.component);\n }\n\n const importDetails = await this._getImportDetails(beforeImportVersions, versionDependenciesArr);\n return {\n importedIds: versionDependenciesArr.map((v) => v.component.id).flat(),\n importedDeps: versionDependenciesArr.map((v) => v.allDependenciesIds).flat(),\n writtenComponents,\n importDetails,\n };\n }\n\n async _fetchDivergeData(componentsWithDependencies: ComponentWithDependencies[]) {\n if (this.options.objectsOnly) {\n // no need for it when importing objects only. if it's enabled, in case when on a lane and a non-lane\n // component is in bitmap using an older version, it throws \"getDivergeData: unable to find Version X of Y\"\n return;\n }\n await Promise.all(\n componentsWithDependencies.map(async ({ component }) => {\n const modelComponent = await this.scope.getModelComponent(component.id);\n await modelComponent.setDivergeData(this.scope.objects, undefined, false);\n this.divergeData.push(modelComponent);\n })\n );\n }\n\n _throwForDivergedHistory() {\n if (this.options.merge || this.options.objectsOnly) return;\n const divergedComponents = this.divergeData.filter((modelComponent) =>\n modelComponent.getDivergeData().isDiverged()\n );\n if (divergedComponents.length) {\n const divergeData = divergedComponents.map((modelComponent) => ({\n id: modelComponent.id(),\n snapsLocal: modelComponent.getDivergeData().snapsOnSourceOnly.length,\n snapsRemote: modelComponent.getDivergeData().snapsOnTargetOnly.length,\n }));\n throw new ComponentsPendingMerge(divergeData);\n }\n }\n\n private async _importComponentsObjects(\n ids: BitIds,\n {\n fromOriginalScope = false,\n lane,\n ignoreMissingHead = false,\n }: {\n fromOriginalScope?: boolean;\n lane?: Lane;\n ignoreMissingHead?: boolean;\n }\n ): Promise<VersionDependencies[]> {\n const scopeComponentsImporter = ScopeComponentsImporter.getInstance(this.scope);\n await scopeComponentsImporter.importManyDeltaWithoutDeps({\n ids,\n fromHead: this.options.allHistory,\n collectParents: this.options.allHistory,\n lane,\n // in case a user is merging a lane into a new workspace, then, locally main has head, but remotely the head is\n // empty, until it's exported. going to the remote and asking this component will throw an error if ignoreMissingHead is false\n ignoreMissingHead: true,\n });\n loader.start(`import ${ids.length} components with their dependencies (if missing)`);\n const results = fromOriginalScope\n ? await scopeComponentsImporter.importManyFromOriginalScopes(ids)\n : await scopeComponentsImporter.importMany({\n ids,\n ignoreMissingHead,\n lanes: lane ? [lane] : undefined,\n preferDependencyGraph: !this.options.fetchDeps,\n });\n\n return results;\n }\n\n /**\n * consider the following use cases:\n * 1) no ids were provided. it should import all the lanes components objects AND main components objects\n * (otherwise, if main components are not imported and are missing, then bit-status complains about it)\n * 2) ids are provided with wildcards. we assume the user wants only the ids that are available on the lane.\n * because a user may entered \"bit import scope/*\" and this scope has many component on the lane and many not on the lane.\n * we want to bring only the components on the lane.\n * 3) ids are provided without wildcards. here, the user knows exactly what's needed and it's ok to get the ids from\n * main if not found on the lane.\n */\n private async getBitIdsForLanes(): Promise<BitId[]> {\n if (!this.options.lanes) {\n throw new Error(`getBitIdsForLanes: this.options.lanes must be set`);\n }\n const bitIdsFromLane = BitIds.fromArray(this.laneObjects.flatMap((lane) => lane.toBitIds()));\n\n if (!this.options.ids.length) {\n const mainIds = this.consumer.bitMap.getAuthoredAndImportedBitIdsOfDefaultLane();\n const mainIdsToImport = mainIds.filter((id) => id.hasScope() && !bitIdsFromLane.hasWithoutVersion(id));\n bitIdsFromLane.push(...mainIdsToImport);\n return bitIdsFromLane;\n }\n\n const idsWithWildcard = this.options.ids.filter((id) => hasWildcard(id));\n const idsWithoutWildcard = this.options.ids.filter((id) => !hasWildcard(id));\n const idsWithoutWildcardPreferFromLane = idsWithoutWildcard.map((idStr) => {\n const id = BitId.parse(idStr, true);\n const fromLane = bitIdsFromLane.searchWithoutVersion(id);\n return fromLane || id;\n });\n\n const bitIds: BitId[] = [...idsWithoutWildcardPreferFromLane];\n\n if (!idsWithWildcard) {\n return bitIds;\n }\n\n await pMapSeries(idsWithWildcard, async (idStr: string) => {\n const idsFromRemote = await getRemoteBitIdsByWildcards(idStr);\n const existingOnLanes = idsFromRemote.filter((id) => bitIdsFromLane.hasWithoutVersion(id));\n if (!existingOnLanes.length) {\n throw new BitError(`the id with the the wildcard \"${idStr}\" has been parsed to multiple component ids.\nhowever, none of them existing on the lane \"${this.laneObjects.map((l) => l.name).join(', ')}\"\nin case you intend to import these components from main, please run the following:\nbit import ${idsFromRemote.map((id) => id.toStringWithoutVersion()).join(' ')}`);\n }\n bitIds.push(...existingOnLanes);\n });\n\n return bitIds;\n }\n\n private async getBitIdsForNonLanes() {\n const bitIds: BitId[] = [];\n await Promise.all(\n this.options.ids.map(async (idStr: string) => {\n if (hasWildcard(idStr)) {\n const ids = await getRemoteBitIdsByWildcards(idStr);\n loader.start(BEFORE_IMPORT_ACTION); // it stops the previous loader of BEFORE_REMOTE_LIST\n bitIds.push(...ids);\n } else {\n bitIds.push(BitId.parse(idStr, true)); // we don't support importing without a scope name\n }\n })\n );\n\n return bitIds;\n }\n\n private async getBitIds(): Promise<BitIds> {\n const bitIds: BitId[] = this.options.lanes ? await this.getBitIdsForLanes() : await this.getBitIdsForNonLanes();\n if (this.options.importDependenciesDirectly || this.options.importDependents) {\n const graphs = await this._getComponentsGraphs(bitIds);\n if (this.options.importDependenciesDirectly) {\n const dependenciesIds = this._getDependenciesFromGraph(bitIds, graphs);\n bitIds.push(...dependenciesIds);\n }\n if (this.options.importDependents) {\n const graph = await this.graph.getGraphIds();\n const targetCompIds = await this.workspace.resolveMultipleComponentIds(bitIds);\n const sourceIds = await this.workspace.listIds();\n const ids = graph.findIdsFromSourcesToTargets(sourceIds, targetCompIds);\n logger.debug(\n `found ${ids.length} component for --dependents flag`,\n ids.map((id) => id.toString())\n );\n bitIds.push(...ids.map((id) => id._legacy));\n }\n }\n return BitIds.uniqFromArray(bitIds);\n }\n\n _getDependenciesFromGraph(bitIds: BitId[], graphs: DependencyGraph[]): BitId[] {\n const dependencies = bitIds.map((bitId) => {\n const componentGraph = graphs.find((graph) => graph.scopeName === bitId.scope);\n if (!componentGraph) {\n throw new Error(`unable to find a graph for ${bitId.toString()}`);\n }\n const dependenciesInfo = componentGraph.getDependenciesInfo(bitId);\n return dependenciesInfo.map((d) => d.id);\n });\n return R.flatten(dependencies);\n }\n\n _getDependentsFromGraph(bitIds: BitId[], graphs: DependencyGraph[]): BitId[] {\n const dependents = bitIds.map((bitId) => {\n const componentGraph = graphs.find((graph) => graph.scopeName === bitId.scope);\n if (!componentGraph) {\n throw new Error(`unable to find a graph for ${bitId.toString()}`);\n }\n const dependentsInfo = componentGraph.getDependentsInfo(bitId);\n return dependentsInfo.map((d) => d.id);\n });\n return R.flatten(dependents);\n }\n\n async _getComponentsGraphs(bitIds: BitId[]): Promise<DependencyGraph[]> {\n const remotes: Remotes = await getScopeRemotes(this.consumer.scope);\n return remotes.scopeGraphs(bitIds, this.consumer.scope);\n }\n\n async importAccordingToBitMap(): Promise<ImportResult> {\n this.options.objectsOnly = !this.options.merge && !this.options.override;\n const componentsIdsToImport = this.getIdsToImportFromBitmap();\n\n if (R.isEmpty(componentsIdsToImport)) {\n throw new NothingToImport();\n }\n await this._throwForModifiedOrNewComponents(componentsIdsToImport);\n const beforeImportVersions = await this._getCurrentVersions(componentsIdsToImport);\n if (!componentsIdsToImport.length) {\n return {\n importedIds: [],\n importedDeps: [],\n importDetails: [],\n };\n }\n if (!this.options.objectsOnly) {\n throw new Error(`bit import with no ids and --merge flag was not implemented yet`);\n }\n const versionDependenciesArr = await this._importComponentsObjects(componentsIdsToImport, {\n fromOriginalScope: this.options.fromOriginalScope,\n });\n let writtenComponents: Component[] = [];\n if (!this.options.objectsOnly) {\n const componentWithDependencies = await multipleVersionDependenciesToConsumer(\n versionDependenciesArr,\n this.scope.objects\n );\n await this._writeToFileSystem(componentWithDependencies);\n writtenComponents = componentWithDependencies.map((c) => c.component);\n }\n\n const importDetails = await this._getImportDetails(beforeImportVersions, versionDependenciesArr);\n\n return {\n importedIds: versionDependenciesArr.map((v) => v.component.id).flat(),\n importedDeps: versionDependenciesArr.map((v) => v.allDependenciesIds).flat(),\n writtenComponents,\n importDetails,\n };\n }\n\n private getIdsToImportFromBitmap() {\n const allIds = this.consumer.bitMap.getAllBitIdsFromAllLanes();\n return BitIds.fromArray(allIds.filter((id) => id.hasScope()));\n }\n\n async _getCurrentVersions(ids: BitIds): Promise<ImportedVersions> {\n const versionsP = ids.map(async (id) => {\n const modelComponent = await this.consumer.scope.getModelComponentIfExist(id.changeVersion(undefined));\n const idStr = id.toStringWithoutVersion();\n if (!modelComponent) return [idStr, []];\n return [idStr, modelComponent.listVersions()];\n });\n const versions = await Promise.all(versionsP);\n return R.fromPairs(versions);\n }\n\n /**\n * get import details, includes the diff between the versions array before import and after import\n */\n async _getImportDetails(\n currentVersions: ImportedVersions,\n components: VersionDependencies[]\n ): Promise<ImportDetails[]> {\n const detailsP = components.map(async (component) => {\n const id = component.component.id;\n const idStr = id.toStringWithoutVersion();\n const beforeImportVersions = currentVersions[idStr];\n if (!beforeImportVersions) {\n throw new Error(\n `_getImportDetails failed finding ${idStr} in currentVersions, which has ${Object.keys(currentVersions).join(\n ', '\n )}`\n );\n }\n const modelComponent = await this.consumer.scope.getModelComponentIfExist(id);\n if (!modelComponent) throw new ShowDoctorError(`imported component ${idStr} was not found in the model`);\n const afterImportVersions = modelComponent.listVersions();\n const versionDifference: string[] = R.difference(afterImportVersions, beforeImportVersions);\n const getStatus = (): ImportStatus => {\n if (!versionDifference.length) return 'up to date';\n if (!beforeImportVersions.length) return 'added';\n return 'updated';\n };\n const filesStatus = this.mergeStatus && this.mergeStatus[idStr] ? this.mergeStatus[idStr] : null;\n const deprecated = await modelComponent.isDeprecated(this.scope.objects);\n const removed = await component.component.component.isRemoved(this.scope.objects);\n const latestVersion = modelComponent.getHeadRegardlessOfLaneAsTagOrHash(true);\n return {\n id: idStr,\n versions: versionDifference,\n latestVersion: versionDifference.includes(latestVersion) ? latestVersion : null,\n status: getStatus(),\n filesStatus,\n missingDeps: this.options.fetchDeps ? component.getMissingDependencies() : [],\n deprecated,\n removed,\n };\n });\n return Promise.all(detailsP);\n }\n\n async _throwForPotentialIssues(ids: BitIds): Promise<void> {\n await this._throwForModifiedOrNewComponents(ids);\n this._throwForDifferentComponentWithSameName(ids);\n }\n\n async _throwForModifiedOrNewComponents(ids: BitIds): Promise<void> {\n // the typical objectsOnly option is when a user cloned a project with components tagged to the source code, but\n // doesn't have the model objects. in that case, calling getComponentStatusById() may return an error as it relies\n // on the model objects when there are dependencies\n if (this.options.override || this.options.objectsOnly || this.options.merge) return;\n const componentsStatuses = await this.consumer.getManyComponentsStatuses(ids);\n const modifiedComponents = componentsStatuses\n .filter(({ status }) => status.modified || status.newlyCreated)\n .map((c) => c.id);\n if (modifiedComponents.length) {\n throw new GeneralError(\n chalk.yellow(\n `unable to import the following components due to local changes, use --merge flag to merge your local changes or --override to override them\\n${modifiedComponents.join(\n '\\n'\n )} `\n )\n );\n }\n }\n\n /**\n * Model Component id() calculation uses id.toString() for the hash.\n * If an imported component has scopereadonly name equals to a local name, both will have the exact same\n * hash and they'll override each other.\n */\n _throwForDifferentComponentWithSameName(ids: BitIds): void {\n ids.forEach((id: BitId) => {\n const existingId = this.consumer.getParsedIdIfExist(id.toStringWithoutVersion());\n if (existingId && !existingId.hasScope()) {\n throw new GeneralError(`unable to import ${id.toString()}. the component name conflicted with your local component with the same name.\n it's fine to have components with the same name as long as their scope names are different.\n Make sure to export your component first to get a scope and then try importing again`);\n }\n });\n }\n\n async _getMergeStatus(componentWithDependencies: ComponentWithDependencies): Promise<ComponentMergeStatus> {\n const component = componentWithDependencies.component;\n const componentStatus = await this.consumer.getComponentStatusById(component.id);\n const mergeStatus: ComponentMergeStatus = { componentWithDependencies, mergeResults: null };\n if (!componentStatus.modified) return mergeStatus;\n const componentModel = await this.consumer.scope.getModelComponent(component.id);\n const existingBitMapBitId = this.consumer.bitMap.getBitId(component.id, { ignoreVersion: true });\n const fsComponent = await this.consumer.loadComponent(existingBitMapBitId);\n const currentlyUsedVersion = existingBitMapBitId.version;\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n const baseComponent: Version = await componentModel.loadVersion(currentlyUsedVersion, this.consumer.scope.objects);\n const otherComponent: Version = await componentModel.loadVersion(\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n component.id.version,\n this.consumer.scope.objects\n );\n const mergeResults = await threeWayMerge({\n consumer: this.consumer,\n otherComponent,\n otherLabel: component.id.version as string,\n currentComponent: fsComponent,\n currentLabel: `${currentlyUsedVersion} modified`,\n baseComponent,\n });\n mergeStatus.mergeResults = mergeResults;\n return mergeStatus;\n }\n\n /**\n * 1) when there are conflicts and the strategy is \"ours\", don't write the imported component to\n * the filesystem, only update bitmap.\n *\n * 2) when there are conflicts and the strategy is \"theirs\", override the local changes by the\n * imported component. (similar to --override)\n *\n * 3) when there is no conflict or there are conflicts and the strategy is manual, write the files\n * according to the merge result. (done by applyModifiedVersion())\n */\n _updateComponentFilesPerMergeStrategy(componentMergeStatus: ComponentMergeStatus): FilesStatus | null | undefined {\n const mergeResults = componentMergeStatus.mergeResults;\n if (!mergeResults) return null;\n const component = componentMergeStatus.componentWithDependencies.component;\n const files = component.files;\n\n if (mergeResults.hasConflicts && this.options.mergeStrategy === MergeOptions.ours) {\n const filesStatus = {};\n // don't write the files to the filesystem, only bump the bitmap version.\n files.forEach((file) => {\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n filesStatus[pathNormalizeToLinux(file.relative)] = FileStatus.unchanged;\n });\n this.consumer.bitMap.updateComponentId(component.id);\n this.consumer.bitMap.hasChanged = true;\n return filesStatus;\n }\n if (mergeResults.hasConflicts && this.options.mergeStrategy === MergeOptions.theirs) {\n const filesStatus = {};\n // the local changes will be overridden (as if the user entered --override flag for this component)\n files.forEach((file) => {\n // @ts-ignore AUTO-ADDED-AFTER-MIGRATION-PLEASE-FIX!\n filesStatus[pathNormalizeToLinux(file.relative)] = FileStatus.updated;\n });\n return filesStatus;\n }\n const { filesStatus, modifiedFiles } = applyModifiedVersion(\n component.files,\n mergeResults,\n this.options.mergeStrategy\n );\n component.files = modifiedFiles;\n\n return filesStatus;\n }\n\n /**\n * update the component files if they are modified and there is a merge strategy.\n * returns only the components that need to be written to the filesystem\n */\n async updateAllComponentsAccordingToMergeStrategy(\n componentsWithDependencies: ComponentWithDependencies[]\n ): Promise<ComponentWithDependencies[]> {\n if (!this.options.merge) return componentsWithDependencies;\n const componentsStatusP = componentsWithDependencies.map((componentWithDependencies: ComponentWithDependencies) => {\n return this._getMergeStatus(componentWithDependencies);\n });\n const componentsStatus = await Promise.all(componentsStatusP);\n const componentWithConflict = componentsStatus.find(\n (component) => component.mergeResults && component.mergeResults.hasConflicts\n );\n if (componentWithConflict && !this.options.mergeStrategy) {\n this.options.mergeStrategy = await getMergeStrategyInteractive();\n }\n this.mergeStatus = {};\n\n const componentsToWrite = componentsStatus.map((componentStatus) => {\n const filesStatus: FilesStatus | null | undefined = this._updateComponentFilesPerMergeStrategy(componentStatus);\n const componentWithDependencies = componentStatus.componentWithDependencies;\n if (!filesStatus) return componentWithDependencies;\n this.mergeStatus[componentWithDependencies.component.id.toStringWithoutVersion()] = filesStatus;\n const unchangedFiles = Object.keys(filesStatus).filter((file) => filesStatus[file] === FileStatus.unchanged);\n if (unchangedFiles.length === Object.keys(filesStatus).length) {\n // all files are unchanged\n return null;\n }\n return componentWithDependencies;\n });\n const removeNulls = R.reject(R.isNil);\n return removeNulls(componentsToWrite);\n }\n\n _shouldSaveLaneData(): boolean {\n if (this.options.objectsOnly) {\n return false;\n }\n return this.consumer.isOnLane();\n }\n\n async _saveLaneDataIfNeeded(componentsWithDependencies: ComponentWithDependencies[]): Promise<void> {\n if (!this._shouldSaveLaneData()) {\n return;\n }\n const currentLane = await this.consumer.getCurrentLaneObject();\n if (!currentLane) {\n return; // user on main\n }\n const idsFromRemoteLanes = BitIds.fromArray(this.laneObjects.flatMap((lane) => lane.toBitIds()));\n const components = componentsWithDependencies.map((c) => c.component);\n await Promise.all(\n components.map(async (comp) => {\n const existOnRemoteLane = idsFromRemoteLanes.has(comp.id);\n if (!existOnRemoteLane && !this.options.saveInLane) {\n this.consumer.bitMap.setComponentProp(comp.id, 'onLanesOnly', false);\n return;\n }\n const modelComponent = await this.scope.getModelComponent(comp.id);\n const ref = modelComponent.getRef(comp.id.version as string);\n if (!ref) throw new Error(`_saveLaneDataIfNeeded unable to get ref for ${comp.id.toString()}`);\n currentLane.addComponent({ id: comp.id, head: ref });\n })\n );\n await this.scope.lanes.saveLane(currentLane);\n }\n\n async _writeToFileSystem(componentsWithDependencies: ComponentWithDependencies[]) {\n if (this.options.objectsOnly) {\n return;\n }\n const componentsToWrite = await this.updateAllComponentsAccordingToMergeStrategy(componentsWithDependencies);\n const manyComponentsWriterOpts = {\n consumer: this.consumer,\n componentsWithDependencies: componentsToWrite,\n writeToPath: this.options.writeToPath,\n writeConfig: this.options.writeConfig,\n skipDependencyInstallation: !this.options.installNpmPackages,\n verbose: this.options.verbose,\n throwForExistingDir: !this.options.override,\n };\n await this.componentWriter.writeMany(manyComponentsWriterOpts);\n }\n}\n"],"mappings":"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"}
@@ -20,14 +20,12 @@ export declare class ImporterMain {
20
20
  constructor(workspace: Workspace, depResolver: DependencyResolverMain, graph: GraphMain, scope: ScopeMain, componentWriter: ComponentWriterMain, logger: Logger);
21
21
  import(importOptions: ImportOptions, packageManagerArgs: string[]): Promise<ImportResult>;
22
22
  importObjects(): Promise<void>;
23
- /**
24
- * @todo: combine with this.import()
25
- */
26
- importWithOptions(importOptions: ImportOptions): Promise<ImportResult>;
27
- fetch(ids: string[], lanes: boolean, components: boolean, fromOriginalScope: boolean): Promise<{
23
+ fetchLaneWithComponents(lane: Lane): Promise<ImportResult>;
24
+ fetch(ids: string[], lanes: boolean, components: boolean, fromOriginalScope: boolean): Promise<ImportResult | {
28
25
  importedIds: import("@teambit/legacy/dist/bit-id").BitId[];
29
26
  importDetails: import("./import-components").ImportDetails[];
30
27
  }>;
28
+ fetchMultipleLanes(lanes: Lane[]): Promise<ImportResult>;
31
29
  /**
32
30
  * get a Lane object from the remote.
33
31
  * `persistIfNotExists` saves the object in the local scope only if the lane is not there yet.
@@ -63,6 +63,13 @@ function _legacyBitId() {
63
63
  };
64
64
  return data;
65
65
  }
66
+ function _pMapSeries() {
67
+ const data = _interopRequireDefault(require("p-map-series"));
68
+ _pMapSeries = function () {
69
+ return data;
70
+ };
71
+ return data;
72
+ }
66
73
  function _componentWriter() {
67
74
  const data = _interopRequireDefault(require("@teambit/component-writer"));
68
75
  _componentWriter = function () {
@@ -236,12 +243,19 @@ class ImporterMain {
236
243
  throw err;
237
244
  }
238
245
  }
239
-
240
- /**
241
- * @todo: combine with this.import()
242
- */
243
- async importWithOptions(importOptions) {
244
- if (!this.workspace) throw new (_workspace().OutsideWorkspaceError)();
246
+ async fetchLaneWithComponents(lane) {
247
+ const importOptions = {
248
+ ids: [],
249
+ objectsOnly: true,
250
+ verbose: false,
251
+ writeConfig: false,
252
+ override: false,
253
+ installNpmPackages: false,
254
+ lanes: {
255
+ laneIds: [lane.toLaneId()],
256
+ lanes: [lane]
257
+ }
258
+ };
245
259
  const importComponents = new (_importComponents().default)(this.workspace, this.graph, this.componentWriter, importOptions);
246
260
  return importComponents.importComponents();
247
261
  }
@@ -264,6 +278,9 @@ class ImporterMain {
264
278
  if (lanes) {
265
279
  importOptions.lanes = await getLanes(this.logger);
266
280
  importOptions.ids = [];
281
+ if (importOptions.lanes.lanes.length > 1) {
282
+ return this.fetchMultipleLanes(importOptions.lanes.lanes);
283
+ }
267
284
  }
268
285
  const importComponents = new (_importComponents().default)(this.workspace, this.graph, this.componentWriter, importOptions);
269
286
  const {
@@ -308,6 +325,24 @@ class ImporterMain {
308
325
  return result;
309
326
  }
310
327
  }
328
+ async fetchMultipleLanes(lanes) {
329
+ // workaround for an issue where we have the current-lane object at hand but not its components, the sources.get
330
+ // throws an error about missing the Version object in the filesystem. to reproduce, comment the following line and
331
+ // run the e2e-test "import objects for multiple lanes".
332
+ await this.importObjects();
333
+ const resultsPerLane = await (0, _pMapSeries().default)(lanes, async lane => {
334
+ this.logger.setStatusLine(`fetching lane ${lane.name}`);
335
+ const results = await this.fetchLaneWithComponents(lane);
336
+ this.logger.consoleSuccess();
337
+ return results;
338
+ });
339
+ const results = resultsPerLane.reduce((acc, curr) => {
340
+ acc.importedIds.push(...curr.importedIds);
341
+ acc.importDetails.push(...curr.importDetails);
342
+ return acc;
343
+ });
344
+ return results;
345
+ }
311
346
 
312
347
  /**
313
348
  * get a Lane object from the remote.
@@ -1 +1 @@
1
- {"version":3,"names":["ImporterMain","constructor","workspace","depResolver","graph","scope","componentWriter","logger","import","importOptions","packageManagerArgs","OutsideWorkspaceError","consumer","ids","length","objectsOnly","isOnLane","currentRemoteLane","getCurrentRemoteLane","lanes","laneIds","toLaneId","currentLaneId","getCurrentLaneId","importComponents","ImportComponents","results","Analytics","setExtraData","importedIds","writtenComponents","removeFromWorkspaceConfig","onDestroy","importObjects","installNpmPackages","err","NothingToImport","importWithOptions","fetch","components","fromOriginalScope","BitError","loader","start","verbose","writeConfig","override","getLanes","importDetails","result","remoteLaneIds","map","id","trackLane","getRemoteTrackedDataByLocalLane","LaneId","from","remoteLane","remoteScope","parse","objects","remoteLanes","getAllRemoteLaneIds","scopeComponentImporter","ScopeComponentsImporter","getInstance","importLanes","push","InvalidScopeName","ScopeNotFoundOrDenied","LaneNotFound","InvalidScopeNameFromRemote","stop","console","message","importLaneObject","laneId","persistIfNotExists","legacyScope","scopeImporter","laneObject","name","exists","loadLane","saveLane","component","importedPackageNames","getImportedPackagesNames","removeFromRootPolicy","persistConfig","path","componentIdToPackageName","provider","cli","community","install","loggerMain","createLogger","ImporterAspect","importerMain","registerPreInstall","opts","setStatusLine","consoleSuccess","registerPreLink","fetchObject","register","ImportCmd","getDocsDomain","FetchCmd","CLIAspect","WorkspaceAspect","DependencyResolverAspect","CommunityAspect","GraphAspect","ScopeAspect","ComponentWriterAspect","InstallAspect","LoggerAspect","MainRuntime","addRuntime"],"sources":["importer.main.runtime.ts"],"sourcesContent":["import { CLIAspect, CLIMain, MainRuntime } from '@teambit/cli';\nimport { DependencyResolverAspect, DependencyResolverMain } from '@teambit/dependency-resolver';\nimport WorkspaceAspect, { OutsideWorkspaceError, Workspace } from '@teambit/workspace';\nimport { CommunityAspect } from '@teambit/community';\nimport type { CommunityMain } from '@teambit/community';\nimport { Analytics } from '@teambit/legacy/dist/analytics/analytics';\nimport ConsumerComponent from '@teambit/legacy/dist/consumer/component';\nimport componentIdToPackageName from '@teambit/legacy/dist/utils/bit/component-id-to-package-name';\nimport { InvalidScopeName, InvalidScopeNameFromRemote } from '@teambit/legacy-bit-id';\nimport ComponentWriterAspect, { ComponentWriterMain } from '@teambit/component-writer';\nimport { Logger, LoggerAspect, LoggerMain } from '@teambit/logger';\nimport ScopeAspect, { ScopeMain } from '@teambit/scope';\nimport { LaneId } from '@teambit/lane-id';\nimport ScopeComponentsImporter from '@teambit/legacy/dist/scope/component-ops/scope-components-importer';\nimport InstallAspect, { InstallMain } from '@teambit/install';\nimport loader from '@teambit/legacy/dist/cli/loader';\nimport { NothingToImport } from '@teambit/legacy/dist/consumer/exceptions';\nimport { Lane } from '@teambit/legacy/dist/scope/models';\nimport { ScopeNotFoundOrDenied } from '@teambit/legacy/dist/remotes/exceptions/scope-not-found-or-denied';\nimport GraphAspect, { GraphMain } from '@teambit/graph';\nimport { LaneNotFound } from '@teambit/legacy/dist/api/scope/lib/exceptions/lane-not-found';\nimport { BitError } from '@teambit/bit-error';\nimport { ImportCmd } from './import.cmd';\nimport { ImporterAspect } from './importer.aspect';\nimport { FetchCmd } from './fetch-cmd';\nimport ImportComponents, { ImportOptions, ImportResult } from './import-components';\n\nexport class ImporterMain {\n constructor(\n private workspace: Workspace,\n private depResolver: DependencyResolverMain,\n private graph: GraphMain,\n private scope: ScopeMain,\n private componentWriter: ComponentWriterMain,\n private logger: Logger\n ) {}\n\n async import(importOptions: ImportOptions, packageManagerArgs: string[]): Promise<ImportResult> {\n if (!this.workspace) throw new OutsideWorkspaceError();\n const consumer = this.workspace.consumer;\n consumer.packageManagerArgs = packageManagerArgs;\n if (!importOptions.ids.length) {\n importOptions.objectsOnly = true;\n }\n if (this.workspace.consumer.isOnLane()) {\n const currentRemoteLane = await this.workspace.getCurrentRemoteLane();\n if (currentRemoteLane) {\n importOptions.lanes = { laneIds: [currentRemoteLane.toLaneId()], lanes: [currentRemoteLane] };\n } else if (!importOptions.ids.length) {\n // this is probably a local lane that was never exported.\n // although no need to fetch from the lane, still, the import is needed for main (which are available on this\n // local lane)\n const currentLaneId = this.workspace.getCurrentLaneId();\n importOptions.lanes = { laneIds: [currentLaneId], lanes: [] };\n }\n }\n const importComponents = new ImportComponents(this.workspace, this.graph, this.componentWriter, importOptions);\n const results = await importComponents.importComponents();\n Analytics.setExtraData('num_components', results.importedIds.length);\n if (results.writtenComponents && results.writtenComponents.length) {\n await this.removeFromWorkspaceConfig(results.writtenComponents);\n }\n await consumer.onDestroy();\n return results;\n }\n\n async importObjects() {\n try {\n await this.import(\n {\n ids: [],\n objectsOnly: true,\n installNpmPackages: false,\n },\n []\n );\n } catch (err: any) {\n // TODO: this is a hack since the legacy throw an error, we should provide a way to not throw this error from the legacy\n if (err instanceof NothingToImport) {\n // Do not write nothing to import warning\n return;\n }\n throw err;\n }\n }\n\n /**\n * @todo: combine with this.import()\n */\n async importWithOptions(importOptions: ImportOptions) {\n if (!this.workspace) throw new OutsideWorkspaceError();\n const importComponents = new ImportComponents(this.workspace, this.graph, this.componentWriter, importOptions);\n return importComponents.importComponents();\n }\n\n async fetch(ids: string[], lanes: boolean, components: boolean, fromOriginalScope: boolean) {\n if (!lanes && !components) {\n throw new BitError(\n `please provide the type of objects you would like to pull, the options are --components and --lanes`\n );\n }\n loader.start('fetching objects...');\n if (!this.workspace) throw new OutsideWorkspaceError();\n const consumer = this.workspace.consumer;\n const importOptions: ImportOptions = {\n ids,\n objectsOnly: true,\n verbose: false,\n writeConfig: false,\n override: false,\n installNpmPackages: false,\n fromOriginalScope,\n };\n if (lanes) {\n importOptions.lanes = await getLanes(this.logger);\n importOptions.ids = [];\n }\n const importComponents = new ImportComponents(this.workspace, this.graph, this.componentWriter, importOptions);\n const { importedIds, importDetails } = await importComponents.importComponents();\n Analytics.setExtraData('num_components', importedIds.length);\n await consumer.onDestroy();\n return { importedIds, importDetails };\n\n async function getLanes(logger: Logger): Promise<{ laneIds: LaneId[]; lanes: Lane[] }> {\n const result: { laneIds: LaneId[]; lanes: Lane[] } = { laneIds: [], lanes: [] };\n let remoteLaneIds: LaneId[] = [];\n if (ids.length) {\n remoteLaneIds = ids.map((id) => {\n const trackLane = consumer.scope.lanes.getRemoteTrackedDataByLocalLane(id);\n if (trackLane) return LaneId.from(trackLane.remoteLane, trackLane.remoteScope);\n return LaneId.parse(id);\n });\n } else {\n remoteLaneIds = await consumer.scope.objects.remoteLanes.getAllRemoteLaneIds();\n }\n const scopeComponentImporter = ScopeComponentsImporter.getInstance(consumer.scope);\n try {\n const remoteLanes = await scopeComponentImporter.importLanes(remoteLaneIds);\n result.laneIds.push(...remoteLaneIds);\n result.lanes.push(...remoteLanes);\n } catch (err) {\n if (\n err instanceof InvalidScopeName ||\n err instanceof ScopeNotFoundOrDenied ||\n err instanceof LaneNotFound ||\n err instanceof InvalidScopeNameFromRemote\n ) {\n // the lane could be a local lane so no need to throw an error in such case\n loader.stop();\n logger.console(`unable to get lane's data from a remote due to an error:\\n${err.message}`, 'warn', 'yellow');\n } else {\n throw err;\n }\n }\n\n return result;\n }\n }\n\n /**\n * get a Lane object from the remote.\n * `persistIfNotExists` saves the object in the local scope only if the lane is not there yet.\n * otherwise, it needs some merging mechanism, which is done differently whether it's export or import.\n * see `sources.mergeLane()` for export and `import-components._saveLaneDataIfNeeded()` for import.\n * in this case, because we only bring the lane object and not the components, it's not easy to do the merge.\n */\n async importLaneObject(laneId: LaneId, persistIfNotExists = true): Promise<Lane> {\n const legacyScope = this.scope.legacyScope;\n const results = await legacyScope.scopeImporter.importLanes([laneId]);\n const laneObject = results[0];\n if (!laneObject) throw new LaneNotFound(laneId.scope, laneId.name);\n\n if (persistIfNotExists) {\n const exists = await legacyScope.loadLane(laneId);\n if (!exists) {\n await legacyScope.lanes.saveLane(laneObject);\n }\n }\n\n return laneObject;\n }\n\n private async removeFromWorkspaceConfig(component: ConsumerComponent[]) {\n const importedPackageNames = this.getImportedPackagesNames(component);\n this.depResolver.removeFromRootPolicy(importedPackageNames);\n await this.depResolver.persistConfig(this.workspace.path);\n }\n\n private getImportedPackagesNames(components: ConsumerComponent[]): string[] {\n return components.map((component) => componentIdToPackageName(component));\n }\n\n static slots = [];\n static dependencies = [\n CLIAspect,\n WorkspaceAspect,\n DependencyResolverAspect,\n CommunityAspect,\n GraphAspect,\n ScopeAspect,\n ComponentWriterAspect,\n InstallAspect,\n LoggerAspect,\n ];\n static runtime = MainRuntime;\n static async provider([cli, workspace, depResolver, community, graph, scope, componentWriter, install, loggerMain]: [\n CLIMain,\n Workspace,\n DependencyResolverMain,\n CommunityMain,\n GraphMain,\n ScopeMain,\n ComponentWriterMain,\n InstallMain,\n LoggerMain\n ]) {\n const logger = loggerMain.createLogger(ImporterAspect.id);\n const importerMain = new ImporterMain(workspace, depResolver, graph, scope, componentWriter, logger);\n install.registerPreInstall(async (opts) => {\n if (!opts?.import) return;\n logger.setStatusLine('importing missing objects');\n await importerMain.importObjects();\n logger.consoleSuccess();\n });\n install.registerPreLink(async (opts) => {\n if (opts?.fetchObject) await importerMain.importObjects();\n });\n cli.register(new ImportCmd(importerMain, community.getDocsDomain()), new FetchCmd(importerMain));\n return importerMain;\n }\n}\n\nImporterAspect.addRuntime(ImporterMain);\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAEA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AACA;EAAA;EAAA;IAAA;EAAA;EAAA;AAAA;AAAoF;AAAA;AAE7E,MAAMA,YAAY,CAAC;EACxBC,WAAW,CACDC,SAAoB,EACpBC,WAAmC,EACnCC,KAAgB,EAChBC,KAAgB,EAChBC,eAAoC,EACpCC,MAAc,EACtB;IAAA,KANQL,SAAoB,GAApBA,SAAoB;IAAA,KACpBC,WAAmC,GAAnCA,WAAmC;IAAA,KACnCC,KAAgB,GAAhBA,KAAgB;IAAA,KAChBC,KAAgB,GAAhBA,KAAgB;IAAA,KAChBC,eAAoC,GAApCA,eAAoC;IAAA,KACpCC,MAAc,GAAdA,MAAc;EACrB;EAEH,MAAMC,MAAM,CAACC,aAA4B,EAAEC,kBAA4B,EAAyB;IAC9F,IAAI,CAAC,IAAI,CAACR,SAAS,EAAE,MAAM,KAAIS,kCAAqB,GAAE;IACtD,MAAMC,QAAQ,GAAG,IAAI,CAACV,SAAS,CAACU,QAAQ;IACxCA,QAAQ,CAACF,kBAAkB,GAAGA,kBAAkB;IAChD,IAAI,CAACD,aAAa,CAACI,GAAG,CAACC,MAAM,EAAE;MAC7BL,aAAa,CAACM,WAAW,GAAG,IAAI;IAClC;IACA,IAAI,IAAI,CAACb,SAAS,CAACU,QAAQ,CAACI,QAAQ,EAAE,EAAE;MACtC,MAAMC,iBAAiB,GAAG,MAAM,IAAI,CAACf,SAAS,CAACgB,oBAAoB,EAAE;MACrE,IAAID,iBAAiB,EAAE;QACrBR,aAAa,CAACU,KAAK,GAAG;UAAEC,OAAO,EAAE,CAACH,iBAAiB,CAACI,QAAQ,EAAE,CAAC;UAAEF,KAAK,EAAE,CAACF,iBAAiB;QAAE,CAAC;MAC/F,CAAC,MAAM,IAAI,CAACR,aAAa,CAACI,GAAG,CAACC,MAAM,EAAE;QACpC;QACA;QACA;QACA,MAAMQ,aAAa,GAAG,IAAI,CAACpB,SAAS,CAACqB,gBAAgB,EAAE;QACvDd,aAAa,CAACU,KAAK,GAAG;UAAEC,OAAO,EAAE,CAACE,aAAa,CAAC;UAAEH,KAAK,EAAE;QAAG,CAAC;MAC/D;IACF;IACA,MAAMK,gBAAgB,GAAG,KAAIC,2BAAgB,EAAC,IAAI,CAACvB,SAAS,EAAE,IAAI,CAACE,KAAK,EAAE,IAAI,CAACE,eAAe,EAAEG,aAAa,CAAC;IAC9G,MAAMiB,OAAO,GAAG,MAAMF,gBAAgB,CAACA,gBAAgB,EAAE;IACzDG,sBAAS,CAACC,YAAY,CAAC,gBAAgB,EAAEF,OAAO,CAACG,WAAW,CAACf,MAAM,CAAC;IACpE,IAAIY,OAAO,CAACI,iBAAiB,IAAIJ,OAAO,CAACI,iBAAiB,CAAChB,MAAM,EAAE;MACjE,MAAM,IAAI,CAACiB,yBAAyB,CAACL,OAAO,CAACI,iBAAiB,CAAC;IACjE;IACA,MAAMlB,QAAQ,CAACoB,SAAS,EAAE;IAC1B,OAAON,OAAO;EAChB;EAEA,MAAMO,aAAa,GAAG;IACpB,IAAI;MACF,MAAM,IAAI,CAACzB,MAAM,CACf;QACEK,GAAG,EAAE,EAAE;QACPE,WAAW,EAAE,IAAI;QACjBmB,kBAAkB,EAAE;MACtB,CAAC,EACD,EAAE,CACH;IACH,CAAC,CAAC,OAAOC,GAAQ,EAAE;MACjB;MACA,IAAIA,GAAG,YAAYC,6BAAe,EAAE;QAClC;QACA;MACF;MACA,MAAMD,GAAG;IACX;EACF;;EAEA;AACF;AACA;EACE,MAAME,iBAAiB,CAAC5B,aAA4B,EAAE;IACpD,IAAI,CAAC,IAAI,CAACP,SAAS,EAAE,MAAM,KAAIS,kCAAqB,GAAE;IACtD,MAAMa,gBAAgB,GAAG,KAAIC,2BAAgB,EAAC,IAAI,CAACvB,SAAS,EAAE,IAAI,CAACE,KAAK,EAAE,IAAI,CAACE,eAAe,EAAEG,aAAa,CAAC;IAC9G,OAAOe,gBAAgB,CAACA,gBAAgB,EAAE;EAC5C;EAEA,MAAMc,KAAK,CAACzB,GAAa,EAAEM,KAAc,EAAEoB,UAAmB,EAAEC,iBAA0B,EAAE;IAC1F,IAAI,CAACrB,KAAK,IAAI,CAACoB,UAAU,EAAE;MACzB,MAAM,KAAIE,oBAAQ,EACf,qGAAoG,CACtG;IACH;IACAC,iBAAM,CAACC,KAAK,CAAC,qBAAqB,CAAC;IACnC,IAAI,CAAC,IAAI,CAACzC,SAAS,EAAE,MAAM,KAAIS,kCAAqB,GAAE;IACtD,MAAMC,QAAQ,GAAG,IAAI,CAACV,SAAS,CAACU,QAAQ;IACxC,MAAMH,aAA4B,GAAG;MACnCI,GAAG;MACHE,WAAW,EAAE,IAAI;MACjB6B,OAAO,EAAE,KAAK;MACdC,WAAW,EAAE,KAAK;MAClBC,QAAQ,EAAE,KAAK;MACfZ,kBAAkB,EAAE,KAAK;MACzBM;IACF,CAAC;IACD,IAAIrB,KAAK,EAAE;MACTV,aAAa,CAACU,KAAK,GAAG,MAAM4B,QAAQ,CAAC,IAAI,CAACxC,MAAM,CAAC;MACjDE,aAAa,CAACI,GAAG,GAAG,EAAE;IACxB;IACA,MAAMW,gBAAgB,GAAG,KAAIC,2BAAgB,EAAC,IAAI,CAACvB,SAAS,EAAE,IAAI,CAACE,KAAK,EAAE,IAAI,CAACE,eAAe,EAAEG,aAAa,CAAC;IAC9G,MAAM;MAAEoB,WAAW;MAAEmB;IAAc,CAAC,GAAG,MAAMxB,gBAAgB,CAACA,gBAAgB,EAAE;IAChFG,sBAAS,CAACC,YAAY,CAAC,gBAAgB,EAAEC,WAAW,CAACf,MAAM,CAAC;IAC5D,MAAMF,QAAQ,CAACoB,SAAS,EAAE;IAC1B,OAAO;MAAEH,WAAW;MAAEmB;IAAc,CAAC;IAErC,eAAeD,QAAQ,CAACxC,MAAc,EAAiD;MACrF,MAAM0C,MAA4C,GAAG;QAAE7B,OAAO,EAAE,EAAE;QAAED,KAAK,EAAE;MAAG,CAAC;MAC/E,IAAI+B,aAAuB,GAAG,EAAE;MAChC,IAAIrC,GAAG,CAACC,MAAM,EAAE;QACdoC,aAAa,GAAGrC,GAAG,CAACsC,GAAG,CAAEC,EAAE,IAAK;UAC9B,MAAMC,SAAS,GAAGzC,QAAQ,CAACP,KAAK,CAACc,KAAK,CAACmC,+BAA+B,CAACF,EAAE,CAAC;UAC1E,IAAIC,SAAS,EAAE,OAAOE,gBAAM,CAACC,IAAI,CAACH,SAAS,CAACI,UAAU,EAAEJ,SAAS,CAACK,WAAW,CAAC;UAC9E,OAAOH,gBAAM,CAACI,KAAK,CAACP,EAAE,CAAC;QACzB,CAAC,CAAC;MACJ,CAAC,MAAM;QACLF,aAAa,GAAG,MAAMtC,QAAQ,CAACP,KAAK,CAACuD,OAAO,CAACC,WAAW,CAACC,mBAAmB,EAAE;MAChF;MACA,MAAMC,sBAAsB,GAAGC,kCAAuB,CAACC,WAAW,CAACrD,QAAQ,CAACP,KAAK,CAAC;MAClF,IAAI;QACF,MAAMwD,WAAW,GAAG,MAAME,sBAAsB,CAACG,WAAW,CAAChB,aAAa,CAAC;QAC3ED,MAAM,CAAC7B,OAAO,CAAC+C,IAAI,CAAC,GAAGjB,aAAa,CAAC;QACrCD,MAAM,CAAC9B,KAAK,CAACgD,IAAI,CAAC,GAAGN,WAAW,CAAC;MACnC,CAAC,CAAC,OAAO1B,GAAG,EAAE;QACZ,IACEA,GAAG,YAAYiC,+BAAgB,IAC/BjC,GAAG,YAAYkC,8CAAqB,IACpClC,GAAG,YAAYmC,4BAAY,IAC3BnC,GAAG,YAAYoC,yCAA0B,EACzC;UACA;UACA7B,iBAAM,CAAC8B,IAAI,EAAE;UACbjE,MAAM,CAACkE,OAAO,CAAE,6DAA4DtC,GAAG,CAACuC,OAAQ,EAAC,EAAE,MAAM,EAAE,QAAQ,CAAC;QAC9G,CAAC,MAAM;UACL,MAAMvC,GAAG;QACX;MACF;MAEA,OAAOc,MAAM;IACf;EACF;;EAEA;AACF;AACA;AACA;AACA;AACA;AACA;EACE,MAAM0B,gBAAgB,CAACC,MAAc,EAAEC,kBAAkB,GAAG,IAAI,EAAiB;IAC/E,MAAMC,WAAW,GAAG,IAAI,CAACzE,KAAK,CAACyE,WAAW;IAC1C,MAAMpD,OAAO,GAAG,MAAMoD,WAAW,CAACC,aAAa,CAACb,WAAW,CAAC,CAACU,MAAM,CAAC,CAAC;IACrE,MAAMI,UAAU,GAAGtD,OAAO,CAAC,CAAC,CAAC;IAC7B,IAAI,CAACsD,UAAU,EAAE,MAAM,KAAIV,4BAAY,EAACM,MAAM,CAACvE,KAAK,EAAEuE,MAAM,CAACK,IAAI,CAAC;IAElE,IAAIJ,kBAAkB,EAAE;MACtB,MAAMK,MAAM,GAAG,MAAMJ,WAAW,CAACK,QAAQ,CAACP,MAAM,CAAC;MACjD,IAAI,CAACM,MAAM,EAAE;QACX,MAAMJ,WAAW,CAAC3D,KAAK,CAACiE,QAAQ,CAACJ,UAAU,CAAC;MAC9C;IACF;IAEA,OAAOA,UAAU;EACnB;EAEA,MAAcjD,yBAAyB,CAACsD,SAA8B,EAAE;IACtE,MAAMC,oBAAoB,GAAG,IAAI,CAACC,wBAAwB,CAACF,SAAS,CAAC;IACrE,IAAI,CAAClF,WAAW,CAACqF,oBAAoB,CAACF,oBAAoB,CAAC;IAC3D,MAAM,IAAI,CAACnF,WAAW,CAACsF,aAAa,CAAC,IAAI,CAACvF,SAAS,CAACwF,IAAI,CAAC;EAC3D;EAEQH,wBAAwB,CAAChD,UAA+B,EAAY;IAC1E,OAAOA,UAAU,CAACY,GAAG,CAAEkC,SAAS,IAAK,IAAAM,mCAAwB,EAACN,SAAS,CAAC,CAAC;EAC3E;EAeA,aAAaO,QAAQ,CAAC,CAACC,GAAG,EAAE3F,SAAS,EAAEC,WAAW,EAAE2F,SAAS,EAAE1F,KAAK,EAAEC,KAAK,EAAEC,eAAe,EAAEyF,OAAO,EAAEC,UAAU,CAUhH,EAAE;IACD,MAAMzF,MAAM,GAAGyF,UAAU,CAACC,YAAY,CAACC,0BAAc,CAAC9C,EAAE,CAAC;IACzD,MAAM+C,YAAY,GAAG,IAAInG,YAAY,CAACE,SAAS,EAAEC,WAAW,EAAEC,KAAK,EAAEC,KAAK,EAAEC,eAAe,EAAEC,MAAM,CAAC;IACpGwF,OAAO,CAACK,kBAAkB,CAAC,MAAOC,IAAI,IAAK;MACzC,IAAI,EAACA,IAAI,aAAJA,IAAI,eAAJA,IAAI,CAAE7F,MAAM,GAAE;MACnBD,MAAM,CAAC+F,aAAa,CAAC,2BAA2B,CAAC;MACjD,MAAMH,YAAY,CAAClE,aAAa,EAAE;MAClC1B,MAAM,CAACgG,cAAc,EAAE;IACzB,CAAC,CAAC;IACFR,OAAO,CAACS,eAAe,CAAC,MAAOH,IAAI,IAAK;MACtC,IAAIA,IAAI,aAAJA,IAAI,eAAJA,IAAI,CAAEI,WAAW,EAAE,MAAMN,YAAY,CAAClE,aAAa,EAAE;IAC3D,CAAC,CAAC;IACF4D,GAAG,CAACa,QAAQ,CAAC,KAAIC,mBAAS,EAACR,YAAY,EAAEL,SAAS,CAACc,aAAa,EAAE,CAAC,EAAE,KAAIC,oBAAQ,EAACV,YAAY,CAAC,CAAC;IAChG,OAAOA,YAAY;EACrB;AACF;AAAC;AAAA,gCA3MYnG,YAAY,WAqKR,EAAE;AAAA,gCArKNA,YAAY,kBAsKD,CACpB8G,gBAAS,EACTC,oBAAe,EACfC,8CAAwB,EACxBC,4BAAe,EACfC,gBAAW,EACXC,gBAAW,EACXC,0BAAqB,EACrBC,kBAAa,EACbC,sBAAY,CACb;AAAA,gCAhLUtH,YAAY,aAiLNuH,kBAAW;AA4B9BrB,0BAAc,CAACsB,UAAU,CAACxH,YAAY,CAAC"}
1
+ {"version":3,"names":["ImporterMain","constructor","workspace","depResolver","graph","scope","componentWriter","logger","import","importOptions","packageManagerArgs","OutsideWorkspaceError","consumer","ids","length","objectsOnly","isOnLane","currentRemoteLane","getCurrentRemoteLane","lanes","laneIds","toLaneId","currentLaneId","getCurrentLaneId","importComponents","ImportComponents","results","Analytics","setExtraData","importedIds","writtenComponents","removeFromWorkspaceConfig","onDestroy","importObjects","installNpmPackages","err","NothingToImport","fetchLaneWithComponents","lane","verbose","writeConfig","override","fetch","components","fromOriginalScope","BitError","loader","start","getLanes","fetchMultipleLanes","importDetails","result","remoteLaneIds","map","id","trackLane","getRemoteTrackedDataByLocalLane","LaneId","from","remoteLane","remoteScope","parse","objects","remoteLanes","getAllRemoteLaneIds","scopeComponentImporter","ScopeComponentsImporter","getInstance","importLanes","push","InvalidScopeName","ScopeNotFoundOrDenied","LaneNotFound","InvalidScopeNameFromRemote","stop","console","message","resultsPerLane","pMapSeries","setStatusLine","name","consoleSuccess","reduce","acc","curr","importLaneObject","laneId","persistIfNotExists","legacyScope","scopeImporter","laneObject","exists","loadLane","saveLane","component","importedPackageNames","getImportedPackagesNames","removeFromRootPolicy","persistConfig","path","componentIdToPackageName","provider","cli","community","install","loggerMain","createLogger","ImporterAspect","importerMain","registerPreInstall","opts","registerPreLink","fetchObject","register","ImportCmd","getDocsDomain","FetchCmd","CLIAspect","WorkspaceAspect","DependencyResolverAspect","CommunityAspect","GraphAspect","ScopeAspect","ComponentWriterAspect","InstallAspect","LoggerAspect","MainRuntime","addRuntime"],"sources":["importer.main.runtime.ts"],"sourcesContent":["import { CLIAspect, CLIMain, MainRuntime } from '@teambit/cli';\nimport { DependencyResolverAspect, DependencyResolverMain } from '@teambit/dependency-resolver';\nimport WorkspaceAspect, { OutsideWorkspaceError, Workspace } from '@teambit/workspace';\nimport { CommunityAspect } from '@teambit/community';\nimport type { CommunityMain } from '@teambit/community';\nimport { Analytics } from '@teambit/legacy/dist/analytics/analytics';\nimport ConsumerComponent from '@teambit/legacy/dist/consumer/component';\nimport componentIdToPackageName from '@teambit/legacy/dist/utils/bit/component-id-to-package-name';\nimport { InvalidScopeName, InvalidScopeNameFromRemote } from '@teambit/legacy-bit-id';\nimport pMapSeries from 'p-map-series';\nimport ComponentWriterAspect, { ComponentWriterMain } from '@teambit/component-writer';\nimport { Logger, LoggerAspect, LoggerMain } from '@teambit/logger';\nimport ScopeAspect, { ScopeMain } from '@teambit/scope';\nimport { LaneId } from '@teambit/lane-id';\nimport ScopeComponentsImporter from '@teambit/legacy/dist/scope/component-ops/scope-components-importer';\nimport InstallAspect, { InstallMain } from '@teambit/install';\nimport loader from '@teambit/legacy/dist/cli/loader';\nimport { NothingToImport } from '@teambit/legacy/dist/consumer/exceptions';\nimport { Lane } from '@teambit/legacy/dist/scope/models';\nimport { ScopeNotFoundOrDenied } from '@teambit/legacy/dist/remotes/exceptions/scope-not-found-or-denied';\nimport GraphAspect, { GraphMain } from '@teambit/graph';\nimport { LaneNotFound } from '@teambit/legacy/dist/api/scope/lib/exceptions/lane-not-found';\nimport { BitError } from '@teambit/bit-error';\nimport { ImportCmd } from './import.cmd';\nimport { ImporterAspect } from './importer.aspect';\nimport { FetchCmd } from './fetch-cmd';\nimport ImportComponents, { ImportOptions, ImportResult } from './import-components';\n\nexport class ImporterMain {\n constructor(\n private workspace: Workspace,\n private depResolver: DependencyResolverMain,\n private graph: GraphMain,\n private scope: ScopeMain,\n private componentWriter: ComponentWriterMain,\n private logger: Logger\n ) {}\n\n async import(importOptions: ImportOptions, packageManagerArgs: string[]): Promise<ImportResult> {\n if (!this.workspace) throw new OutsideWorkspaceError();\n const consumer = this.workspace.consumer;\n consumer.packageManagerArgs = packageManagerArgs;\n if (!importOptions.ids.length) {\n importOptions.objectsOnly = true;\n }\n if (this.workspace.consumer.isOnLane()) {\n const currentRemoteLane = await this.workspace.getCurrentRemoteLane();\n if (currentRemoteLane) {\n importOptions.lanes = { laneIds: [currentRemoteLane.toLaneId()], lanes: [currentRemoteLane] };\n } else if (!importOptions.ids.length) {\n // this is probably a local lane that was never exported.\n // although no need to fetch from the lane, still, the import is needed for main (which are available on this\n // local lane)\n const currentLaneId = this.workspace.getCurrentLaneId();\n importOptions.lanes = { laneIds: [currentLaneId], lanes: [] };\n }\n }\n const importComponents = new ImportComponents(this.workspace, this.graph, this.componentWriter, importOptions);\n const results = await importComponents.importComponents();\n Analytics.setExtraData('num_components', results.importedIds.length);\n if (results.writtenComponents && results.writtenComponents.length) {\n await this.removeFromWorkspaceConfig(results.writtenComponents);\n }\n await consumer.onDestroy();\n return results;\n }\n\n async importObjects() {\n try {\n await this.import(\n {\n ids: [],\n objectsOnly: true,\n installNpmPackages: false,\n },\n []\n );\n } catch (err: any) {\n // TODO: this is a hack since the legacy throw an error, we should provide a way to not throw this error from the legacy\n if (err instanceof NothingToImport) {\n // Do not write nothing to import warning\n return;\n }\n throw err;\n }\n }\n\n async fetchLaneWithComponents(lane: Lane): Promise<ImportResult> {\n const importOptions: ImportOptions = {\n ids: [],\n objectsOnly: true,\n verbose: false,\n writeConfig: false,\n override: false,\n installNpmPackages: false,\n lanes: { laneIds: [lane.toLaneId()], lanes: [lane] },\n };\n const importComponents = new ImportComponents(this.workspace, this.graph, this.componentWriter, importOptions);\n return importComponents.importComponents();\n }\n\n async fetch(ids: string[], lanes: boolean, components: boolean, fromOriginalScope: boolean) {\n if (!lanes && !components) {\n throw new BitError(\n `please provide the type of objects you would like to pull, the options are --components and --lanes`\n );\n }\n loader.start('fetching objects...');\n if (!this.workspace) throw new OutsideWorkspaceError();\n const consumer = this.workspace.consumer;\n const importOptions: ImportOptions = {\n ids,\n objectsOnly: true,\n verbose: false,\n writeConfig: false,\n override: false,\n installNpmPackages: false,\n fromOriginalScope,\n };\n if (lanes) {\n importOptions.lanes = await getLanes(this.logger);\n importOptions.ids = [];\n if (importOptions.lanes.lanes.length > 1) {\n return this.fetchMultipleLanes(importOptions.lanes.lanes);\n }\n }\n\n const importComponents = new ImportComponents(this.workspace, this.graph, this.componentWriter, importOptions);\n const { importedIds, importDetails } = await importComponents.importComponents();\n Analytics.setExtraData('num_components', importedIds.length);\n await consumer.onDestroy();\n return { importedIds, importDetails };\n\n async function getLanes(logger: Logger): Promise<{ laneIds: LaneId[]; lanes: Lane[] }> {\n const result: { laneIds: LaneId[]; lanes: Lane[] } = { laneIds: [], lanes: [] };\n let remoteLaneIds: LaneId[] = [];\n if (ids.length) {\n remoteLaneIds = ids.map((id) => {\n const trackLane = consumer.scope.lanes.getRemoteTrackedDataByLocalLane(id);\n if (trackLane) return LaneId.from(trackLane.remoteLane, trackLane.remoteScope);\n return LaneId.parse(id);\n });\n } else {\n remoteLaneIds = await consumer.scope.objects.remoteLanes.getAllRemoteLaneIds();\n }\n const scopeComponentImporter = ScopeComponentsImporter.getInstance(consumer.scope);\n try {\n const remoteLanes = await scopeComponentImporter.importLanes(remoteLaneIds);\n result.laneIds.push(...remoteLaneIds);\n result.lanes.push(...remoteLanes);\n } catch (err) {\n if (\n err instanceof InvalidScopeName ||\n err instanceof ScopeNotFoundOrDenied ||\n err instanceof LaneNotFound ||\n err instanceof InvalidScopeNameFromRemote\n ) {\n // the lane could be a local lane so no need to throw an error in such case\n loader.stop();\n logger.console(`unable to get lane's data from a remote due to an error:\\n${err.message}`, 'warn', 'yellow');\n } else {\n throw err;\n }\n }\n\n return result;\n }\n }\n\n async fetchMultipleLanes(lanes: Lane[]) {\n // workaround for an issue where we have the current-lane object at hand but not its components, the sources.get\n // throws an error about missing the Version object in the filesystem. to reproduce, comment the following line and\n // run the e2e-test \"import objects for multiple lanes\".\n await this.importObjects();\n\n const resultsPerLane = await pMapSeries(lanes, async (lane) => {\n this.logger.setStatusLine(`fetching lane ${lane.name}`);\n const results = await this.fetchLaneWithComponents(lane);\n this.logger.consoleSuccess();\n return results;\n });\n const results = resultsPerLane.reduce((acc, curr) => {\n acc.importedIds.push(...curr.importedIds);\n acc.importDetails.push(...curr.importDetails);\n return acc;\n });\n return results;\n }\n\n /**\n * get a Lane object from the remote.\n * `persistIfNotExists` saves the object in the local scope only if the lane is not there yet.\n * otherwise, it needs some merging mechanism, which is done differently whether it's export or import.\n * see `sources.mergeLane()` for export and `import-components._saveLaneDataIfNeeded()` for import.\n * in this case, because we only bring the lane object and not the components, it's not easy to do the merge.\n */\n async importLaneObject(laneId: LaneId, persistIfNotExists = true): Promise<Lane> {\n const legacyScope = this.scope.legacyScope;\n const results = await legacyScope.scopeImporter.importLanes([laneId]);\n const laneObject = results[0];\n if (!laneObject) throw new LaneNotFound(laneId.scope, laneId.name);\n\n if (persistIfNotExists) {\n const exists = await legacyScope.loadLane(laneId);\n if (!exists) {\n await legacyScope.lanes.saveLane(laneObject);\n }\n }\n\n return laneObject;\n }\n\n private async removeFromWorkspaceConfig(component: ConsumerComponent[]) {\n const importedPackageNames = this.getImportedPackagesNames(component);\n this.depResolver.removeFromRootPolicy(importedPackageNames);\n await this.depResolver.persistConfig(this.workspace.path);\n }\n\n private getImportedPackagesNames(components: ConsumerComponent[]): string[] {\n return components.map((component) => componentIdToPackageName(component));\n }\n\n static slots = [];\n static dependencies = [\n CLIAspect,\n WorkspaceAspect,\n DependencyResolverAspect,\n CommunityAspect,\n GraphAspect,\n ScopeAspect,\n ComponentWriterAspect,\n InstallAspect,\n LoggerAspect,\n ];\n static runtime = MainRuntime;\n static async provider([cli, workspace, depResolver, community, graph, scope, componentWriter, install, loggerMain]: [\n CLIMain,\n Workspace,\n DependencyResolverMain,\n CommunityMain,\n GraphMain,\n ScopeMain,\n ComponentWriterMain,\n InstallMain,\n LoggerMain\n ]) {\n const logger = loggerMain.createLogger(ImporterAspect.id);\n const importerMain = new ImporterMain(workspace, depResolver, graph, scope, componentWriter, logger);\n install.registerPreInstall(async (opts) => {\n if (!opts?.import) return;\n logger.setStatusLine('importing missing objects');\n await importerMain.importObjects();\n logger.consoleSuccess();\n });\n install.registerPreLink(async (opts) => {\n if (opts?.fetchObject) await importerMain.importObjects();\n });\n cli.register(new ImportCmd(importerMain, community.getDocsDomain()), new FetchCmd(importerMain));\n return importerMain;\n }\n}\n\nImporterAspect.addRuntime(ImporterMain);\n"],"mappings":"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"}
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_importer@0.0.394/dist/importer.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_importer@0.0.394/dist/importer.docs.mdx';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_importer@0.0.396/dist/importer.composition.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.scope_importer@0.0.396/dist/importer.docs.mdx';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/importer",
3
- "version": "0.0.394",
3
+ "version": "0.0.396",
4
4
  "homepage": "https://bit.dev/teambit/scope/importer",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.scope",
8
8
  "name": "importer",
9
- "version": "0.0.394"
9
+ "version": "0.0.396"
10
10
  },
11
11
  "dependencies": {
12
12
  "chalk": "2.4.2",
@@ -16,18 +16,18 @@
16
16
  "core-js": "^3.0.0",
17
17
  "@babel/runtime": "7.20.0",
18
18
  "@teambit/harmony": "0.4.6",
19
- "@teambit/cli": "0.0.648",
19
+ "@teambit/cli": "0.0.649",
20
20
  "@teambit/legacy-bit-id": "0.0.421",
21
21
  "@teambit/bit-error": "0.0.402",
22
- "@teambit/component-writer": "0.0.1",
23
- "@teambit/graph": "0.0.965",
24
- "@teambit/lane-id": "0.0.165",
25
- "@teambit/workspace": "0.0.965",
26
- "@teambit/community": "0.0.196",
27
- "@teambit/dependency-resolver": "0.0.965",
28
- "@teambit/install": "0.0.95",
29
- "@teambit/logger": "0.0.741",
30
- "@teambit/scope": "0.0.965"
22
+ "@teambit/component-writer": "0.0.3",
23
+ "@teambit/graph": "0.0.967",
24
+ "@teambit/lane-id": "0.0.166",
25
+ "@teambit/workspace": "0.0.967",
26
+ "@teambit/community": "0.0.197",
27
+ "@teambit/dependency-resolver": "0.0.967",
28
+ "@teambit/install": "0.0.96",
29
+ "@teambit/logger": "0.0.742",
30
+ "@teambit/scope": "0.0.967"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/lodash": "4.14.165",
@@ -39,7 +39,7 @@
39
39
  "@types/testing-library__jest-dom": "5.9.5"
40
40
  },
41
41
  "peerDependencies": {
42
- "@teambit/legacy": "1.0.429",
42
+ "@teambit/legacy": "1.0.430",
43
43
  "react": "^16.8.0 || ^17.0.0",
44
44
  "react-dom": "^16.8.0 || ^17.0.0"
45
45
  },