Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed env config renaming #7823

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
12 changes: 11 additions & 1 deletion scopes/workspace/workspace/bit-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,14 +191,23 @@ export class BitMap {
this.legacyBitMap.components.forEach((componentMap) => {
const config = componentMap.config;
if (!config) return;

Object.keys(config).forEach((aspectId) => {
const fullSourceId = this.getBitmapEntry(sourceId).id.toStringWithoutVersion();
let fullSourceId: string;
try {
fullSourceId = this.getBitmapEntry(sourceId).id.toStringWithoutVersion();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of try catch you can use
getBitmapEntryIfExist
And instead of doing toStringWithoutVersion
you can pass a second arg to the get like this:

{
  "ignoreVersion": true
}

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks
Actually, I realized that the sourceId is already a componentId so this whole get entry is just redundant.

} catch (error) {
// If entry not found it's probably new, keep the sourceId as is
fullSourceId = sourceId.toString();
}

const aspectIdWithoutVersion = ComponentID.fromString(aspectId).toStringWithoutVersion();
if (aspectIdWithoutVersion === fullSourceId) {
config[targetId.toString()] = config[aspectId];
delete config[aspectId];
this.markAsChanged();
}

if (aspectId === EnvsAspect.id) {
const envConfig = config[aspectId];
if (envConfig !== REMOVE_EXTENSION_SPECIAL_SIGN && envConfig.env === fullSourceId) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The envConfig.env might have a value with a version, in that case, your new check will miss it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This check is for this prop:

 "env": "teambit.react/react-env"
            }

afaik it can't be with the version over there.

I think the issue you are referring to is with the env itself as a prop for example:

"teambit.react/react-env@1.0.6": {},

In that case, this one is resolved here:

  if (aspectIdWithoutVersion === sourceIdWithoutVersion) {

Expand All @@ -207,6 +216,7 @@ export class BitMap {
}
}
});

componentMap.config = config;
});
}
Expand Down