@teambit/component-compare 1.0.927 → 1.0.929
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/component-compare.graphql.d.ts +3 -42
- package/dist/component-compare.graphql.js +4 -0
- package/dist/component-compare.graphql.js.map +1 -1
- package/dist/component-compare.main.runtime.d.ts +9 -3
- package/dist/component-compare.main.runtime.js +27 -6
- package/dist/component-compare.main.runtime.js.map +1 -1
- package/dist/{preview-1775055917475.js → preview-1775227485691.js} +2 -2
- package/package.json +16 -15
|
@@ -1,42 +1,3 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
resolvers: {
|
|
5
|
-
ComponentHost: {
|
|
6
|
-
compareComponent: (_: any, { baseId, compareId }: {
|
|
7
|
-
baseId: string;
|
|
8
|
-
compareId: string;
|
|
9
|
-
}) => Promise<ComponentCompareResult>;
|
|
10
|
-
};
|
|
11
|
-
ComponentCompareResult: {
|
|
12
|
-
id: (result: ComponentCompareResult) => string;
|
|
13
|
-
code: (result: ComponentCompareResult, { fileName }: {
|
|
14
|
-
fileName?: string;
|
|
15
|
-
}) => {
|
|
16
|
-
fileName: string;
|
|
17
|
-
baseContent: string;
|
|
18
|
-
compareContent: string;
|
|
19
|
-
filePath: string;
|
|
20
|
-
diffOutput: string;
|
|
21
|
-
status: import("@teambit/legacy.component-diff/dist/components-diff").DiffStatus;
|
|
22
|
-
fromContent: string;
|
|
23
|
-
toContent: string;
|
|
24
|
-
}[];
|
|
25
|
-
tests: (result: ComponentCompareResult, { fileName }: {
|
|
26
|
-
fileName?: string;
|
|
27
|
-
}) => {
|
|
28
|
-
fileName: string;
|
|
29
|
-
baseContent: string;
|
|
30
|
-
compareContent: string;
|
|
31
|
-
filePath: string;
|
|
32
|
-
diffOutput: string;
|
|
33
|
-
status: import("@teambit/legacy.component-diff/dist/components-diff").DiffStatus;
|
|
34
|
-
fromContent: string;
|
|
35
|
-
toContent: string;
|
|
36
|
-
}[];
|
|
37
|
-
aspects: (result: ComponentCompareResult, { fieldName }: {
|
|
38
|
-
fieldName?: string;
|
|
39
|
-
}) => import("@teambit/legacy.component-diff").FieldsDiff[];
|
|
40
|
-
};
|
|
41
|
-
};
|
|
42
|
-
};
|
|
1
|
+
import type { Schema } from '@teambit/graphql';
|
|
2
|
+
import type { ComponentCompareMain } from './component-compare.main.runtime';
|
|
3
|
+
export declare function componentCompareSchema(componentCompareMain: ComponentCompareMain): Schema;
|
|
@@ -38,6 +38,7 @@ function componentCompareSchema(componentCompareMain) {
|
|
|
38
38
|
code(fileName: String): [FileCompareResult!]!
|
|
39
39
|
aspects(aspectName: String): [FieldCompareResult!]!
|
|
40
40
|
tests(fileName: String): [FileCompareResult!]
|
|
41
|
+
api: APIDiffResult
|
|
41
42
|
}
|
|
42
43
|
|
|
43
44
|
extend type ComponentHost {
|
|
@@ -94,6 +95,9 @@ function componentCompareSchema(componentCompareMain) {
|
|
|
94
95
|
return result.fields.filter(field => field.fieldName === fieldName);
|
|
95
96
|
}
|
|
96
97
|
return result.fields;
|
|
98
|
+
},
|
|
99
|
+
api: async result => {
|
|
100
|
+
return (await componentCompareMain.getAPIDiff(result.baseId, result.compareId)) ?? null;
|
|
97
101
|
}
|
|
98
102
|
}
|
|
99
103
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_graphqlTag","data","require","ownKeys","e","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","_toPropertyKey","value","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","componentCompareSchema","componentCompareMain","typeDefs","gql","resolvers","ComponentHost","compareComponent","_","baseId","compareId","compare","ComponentCompareResult","id","result","code","fileName","codeFile","filePath","map","c","baseContent","fromContent","compareContent","toContent","tests","testFile","aspects","fieldName","fields","field"],"sources":["component-compare.graphql.ts"],"sourcesContent":["import { gql } from 'graphql-tag';\nimport type { ComponentCompareMain, ComponentCompareResult } from './component-compare.main.runtime';\n\nexport function componentCompareSchema(componentCompareMain: ComponentCompareMain) {\n return {\n typeDefs: gql`\n type FileCompareResult {\n fileName: String!\n baseContent: String!\n compareContent: String!\n status: String\n diffOutput: String\n }\n\n type FieldCompareResult {\n fieldName: String!\n diffOutput: String\n }\n\n type ComponentCompareResult {\n # unique id for graphql - baseId + compareId\n id: String!\n code(fileName: String): [FileCompareResult!]!\n aspects(aspectName: String): [FieldCompareResult!]!\n tests(fileName: String): [FileCompareResult!]\n }\n\n extend type ComponentHost {\n compareComponent(baseId: String!, compareId: String!): ComponentCompareResult\n }\n `,\n resolvers: {\n ComponentHost: {\n compareComponent: async (_, { baseId, compareId }: { baseId: string; compareId: string }) => {\n return componentCompareMain.compare(baseId, compareId);\n },\n },\n ComponentCompareResult: {\n id: (result: ComponentCompareResult) => result.id,\n code: (result: ComponentCompareResult, { fileName }: { fileName?: string }) => {\n if (fileName) {\n return result.code\n .filter((codeFile) => codeFile.filePath === fileName)\n .map((c) => ({ ...c, fileName: c.filePath, baseContent: c.fromContent, compareContent: c.toContent }));\n }\n\n return result.code.map((c) => ({\n ...c,\n fileName: c.filePath,\n baseContent: c.fromContent,\n compareContent: c.toContent,\n }));\n },\n tests: (result: ComponentCompareResult, { fileName }: { fileName?: string }) => {\n if (fileName) {\n return result.tests\n .filter((testFile) => testFile.filePath === fileName)\n .map((c) => ({ ...c, fileName: c.filePath, baseContent: c.fromContent, compareContent: c.toContent }));\n }\n\n return result.tests.map((c) => ({\n ...c,\n fileName: c.filePath,\n baseContent: c.fromContent,\n compareContent: c.toContent,\n }));\n },\n aspects: (result: ComponentCompareResult, { fieldName }: { fieldName?: string }) => {\n if (fieldName) {\n return result.fields.filter((field) => field.fieldName === fieldName);\n }\n return result.fields;\n },\n },\n },\n };\n}\n"],"mappings":";;;;;;AAAA,SAAAA,YAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,WAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAAkC,SAAAE,QAAAC,CAAA,EAAAC,CAAA,QAAAC,CAAA,GAAAC,MAAA,CAAAC,IAAA,CAAAJ,CAAA,OAAAG,MAAA,CAAAE,qBAAA,QAAAC,CAAA,GAAAH,MAAA,CAAAE,qBAAA,CAAAL,CAAA,GAAAC,CAAA,KAAAK,CAAA,GAAAA,CAAA,CAAAC,MAAA,WAAAN,CAAA,WAAAE,MAAA,CAAAK,wBAAA,CAAAR,CAAA,EAAAC,CAAA,EAAAQ,UAAA,OAAAP,CAAA,CAAAQ,IAAA,CAAAC,KAAA,CAAAT,CAAA,EAAAI,CAAA,YAAAJ,CAAA;AAAA,SAAAU,cAAAZ,CAAA,aAAAC,CAAA,MAAAA,CAAA,GAAAY,SAAA,CAAAC,MAAA,EAAAb,CAAA,UAAAC,CAAA,WAAAW,SAAA,CAAAZ,CAAA,IAAAY,SAAA,CAAAZ,CAAA,QAAAA,CAAA,OAAAF,OAAA,CAAAI,MAAA,CAAAD,CAAA,OAAAa,OAAA,WAAAd,CAAA,IAAAe,eAAA,CAAAhB,CAAA,EAAAC,CAAA,EAAAC,CAAA,CAAAD,CAAA,SAAAE,MAAA,CAAAc,yBAAA,GAAAd,MAAA,CAAAe,gBAAA,CAAAlB,CAAA,EAAAG,MAAA,CAAAc,yBAAA,CAAAf,CAAA,KAAAH,OAAA,CAAAI,MAAA,CAAAD,CAAA,GAAAa,OAAA,WAAAd,CAAA,IAAAE,MAAA,CAAAgB,cAAA,CAAAnB,CAAA,EAAAC,CAAA,EAAAE,MAAA,CAAAK,wBAAA,CAAAN,CAAA,EAAAD,CAAA,iBAAAD,CAAA;AAAA,SAAAgB,gBAAAhB,CAAA,EAAAC,CAAA,EAAAC,CAAA,YAAAD,CAAA,GAAAmB,cAAA,CAAAnB,CAAA,MAAAD,CAAA,GAAAG,MAAA,CAAAgB,cAAA,CAAAnB,CAAA,EAAAC,CAAA,IAAAoB,KAAA,EAAAnB,CAAA,EAAAO,UAAA,MAAAa,YAAA,MAAAC,QAAA,UAAAvB,CAAA,CAAAC,CAAA,IAAAC,CAAA,EAAAF,CAAA;AAAA,SAAAoB,eAAAlB,CAAA,QAAAsB,CAAA,GAAAC,YAAA,CAAAvB,CAAA,uCAAAsB,CAAA,GAAAA,CAAA,GAAAA,CAAA;AAAA,SAAAC,aAAAvB,CAAA,EAAAD,CAAA,2BAAAC,CAAA,KAAAA,CAAA,SAAAA,CAAA,MAAAF,CAAA,GAAAE,CAAA,CAAAwB,MAAA,CAAAC,WAAA,kBAAA3B,CAAA,QAAAwB,CAAA,GAAAxB,CAAA,CAAA4B,IAAA,CAAA1B,CAAA,EAAAD,CAAA,uCAAAuB,CAAA,SAAAA,CAAA,YAAAK,SAAA,yEAAA5B,CAAA,GAAA6B,MAAA,GAAAC,MAAA,EAAA7B,CAAA;
|
|
1
|
+
{"version":3,"names":["_graphqlTag","data","require","ownKeys","e","r","t","Object","keys","getOwnPropertySymbols","o","filter","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread","arguments","length","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","_toPropertyKey","value","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","componentCompareSchema","componentCompareMain","typeDefs","gql","resolvers","ComponentHost","compareComponent","_","baseId","compareId","compare","ComponentCompareResult","id","result","code","fileName","codeFile","filePath","map","c","baseContent","fromContent","compareContent","toContent","tests","testFile","aspects","fieldName","fields","field","api","getAPIDiff"],"sources":["component-compare.graphql.ts"],"sourcesContent":["import { gql } from 'graphql-tag';\nimport type { Schema } from '@teambit/graphql';\nimport type { ComponentCompareMain, ComponentCompareResult } from './component-compare.main.runtime';\n\nexport function componentCompareSchema(componentCompareMain: ComponentCompareMain): Schema {\n return {\n typeDefs: gql`\n type FileCompareResult {\n fileName: String!\n baseContent: String!\n compareContent: String!\n status: String\n diffOutput: String\n }\n\n type FieldCompareResult {\n fieldName: String!\n diffOutput: String\n }\n\n type ComponentCompareResult {\n # unique id for graphql - baseId + compareId\n id: String!\n code(fileName: String): [FileCompareResult!]!\n aspects(aspectName: String): [FieldCompareResult!]!\n tests(fileName: String): [FileCompareResult!]\n api: APIDiffResult\n }\n\n extend type ComponentHost {\n compareComponent(baseId: String!, compareId: String!): ComponentCompareResult\n }\n `,\n resolvers: {\n ComponentHost: {\n compareComponent: async (_, { baseId, compareId }: { baseId: string; compareId: string }) => {\n return componentCompareMain.compare(baseId, compareId);\n },\n },\n ComponentCompareResult: {\n id: (result: ComponentCompareResult) => result.id,\n code: (result: ComponentCompareResult, { fileName }: { fileName?: string }) => {\n if (fileName) {\n return result.code\n .filter((codeFile) => codeFile.filePath === fileName)\n .map((c) => ({ ...c, fileName: c.filePath, baseContent: c.fromContent, compareContent: c.toContent }));\n }\n\n return result.code.map((c) => ({\n ...c,\n fileName: c.filePath,\n baseContent: c.fromContent,\n compareContent: c.toContent,\n }));\n },\n tests: (result: ComponentCompareResult, { fileName }: { fileName?: string }) => {\n if (fileName) {\n return result.tests\n .filter((testFile) => testFile.filePath === fileName)\n .map((c) => ({ ...c, fileName: c.filePath, baseContent: c.fromContent, compareContent: c.toContent }));\n }\n\n return result.tests.map((c) => ({\n ...c,\n fileName: c.filePath,\n baseContent: c.fromContent,\n compareContent: c.toContent,\n }));\n },\n aspects: (result: ComponentCompareResult, { fieldName }: { fieldName?: string }) => {\n if (fieldName) {\n return result.fields.filter((field) => field.fieldName === fieldName);\n }\n return result.fields;\n },\n api: async (result: ComponentCompareResult) => {\n return (await componentCompareMain.getAPIDiff(result.baseId, result.compareId)) ?? null;\n },\n },\n },\n };\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -9,9 +9,12 @@ import type { LoggerMain, Logger } from '@teambit/logger';
|
|
|
9
9
|
import type { DiffOptions, DiffResults, FieldsDiff, FileDiff } from '@teambit/legacy.component-diff';
|
|
10
10
|
import type { TesterMain } from '@teambit/tester';
|
|
11
11
|
import type { Component, ComponentMain } from '@teambit/component';
|
|
12
|
+
import type { SchemaMain } from '@teambit/schema';
|
|
12
13
|
import type { ImporterMain } from '@teambit/importer';
|
|
13
14
|
export type ComponentCompareResult = {
|
|
14
15
|
id: string;
|
|
16
|
+
baseId: string;
|
|
17
|
+
compareId: string;
|
|
15
18
|
code: FileDiff[];
|
|
16
19
|
fields: FieldsDiff[];
|
|
17
20
|
tests: FileDiff[];
|
|
@@ -28,9 +31,11 @@ export declare class ComponentCompareMain {
|
|
|
28
31
|
private tester;
|
|
29
32
|
private depResolver;
|
|
30
33
|
private importer;
|
|
34
|
+
private schema;
|
|
31
35
|
private workspace?;
|
|
32
|
-
constructor(componentAspect: ComponentMain, scope: ScopeMain, logger: Logger, tester: TesterMain, depResolver: DependencyResolverMain, importer: ImporterMain, workspace?: Workspace | undefined);
|
|
36
|
+
constructor(componentAspect: ComponentMain, scope: ScopeMain, logger: Logger, tester: TesterMain, depResolver: DependencyResolverMain, importer: ImporterMain, schema: SchemaMain, workspace?: Workspace | undefined);
|
|
33
37
|
compare(baseIdStr: string, compareIdStr: string): Promise<ComponentCompareResult>;
|
|
38
|
+
getAPIDiff(baseIdStr: string, compareIdStr: string): Promise<Record<string, any> | null>;
|
|
34
39
|
diffByCLIValues(pattern?: string, version?: string, toVersion?: string, { verbose, table, parent }?: {
|
|
35
40
|
verbose?: boolean;
|
|
36
41
|
table?: boolean;
|
|
@@ -53,7 +58,7 @@ export declare class ComponentCompareMain {
|
|
|
53
58
|
static slots: never[];
|
|
54
59
|
static dependencies: import("@teambit/harmony").Aspect[];
|
|
55
60
|
static runtime: import("@teambit/harmony").RuntimeDefinition;
|
|
56
|
-
static provider([graphql, component, scope, loggerMain, cli, workspace, tester, depResolver, importer]: [
|
|
61
|
+
static provider([graphql, component, scope, loggerMain, cli, workspace, tester, depResolver, importer, schema,]: [
|
|
57
62
|
GraphqlMain,
|
|
58
63
|
ComponentMain,
|
|
59
64
|
ScopeMain,
|
|
@@ -62,7 +67,8 @@ export declare class ComponentCompareMain {
|
|
|
62
67
|
Workspace,
|
|
63
68
|
TesterMain,
|
|
64
69
|
DependencyResolverMain,
|
|
65
|
-
ImporterMain
|
|
70
|
+
ImporterMain,
|
|
71
|
+
SchemaMain
|
|
66
72
|
]): Promise<ComponentCompareMain>;
|
|
67
73
|
}
|
|
68
74
|
export default ComponentCompareMain;
|
|
@@ -95,6 +95,13 @@ function _component() {
|
|
|
95
95
|
};
|
|
96
96
|
return data;
|
|
97
97
|
}
|
|
98
|
+
function _schema() {
|
|
99
|
+
const data = require("@teambit/schema");
|
|
100
|
+
_schema = function () {
|
|
101
|
+
return data;
|
|
102
|
+
};
|
|
103
|
+
return data;
|
|
104
|
+
}
|
|
98
105
|
function _componentCompare() {
|
|
99
106
|
const data = require("./component-compare.graphql");
|
|
100
107
|
_componentCompare = function () {
|
|
@@ -127,13 +134,14 @@ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object
|
|
|
127
134
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
128
135
|
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
129
136
|
class ComponentCompareMain {
|
|
130
|
-
constructor(componentAspect, scope, logger, tester, depResolver, importer, workspace) {
|
|
137
|
+
constructor(componentAspect, scope, logger, tester, depResolver, importer, schema, workspace) {
|
|
131
138
|
this.componentAspect = componentAspect;
|
|
132
139
|
this.scope = scope;
|
|
133
140
|
this.logger = logger;
|
|
134
141
|
this.tester = tester;
|
|
135
142
|
this.depResolver = depResolver;
|
|
136
143
|
this.importer = importer;
|
|
144
|
+
this.schema = schema;
|
|
137
145
|
this.workspace = workspace;
|
|
138
146
|
}
|
|
139
147
|
async compare(baseIdStr, compareIdStr) {
|
|
@@ -163,13 +171,26 @@ class ComponentCompareMain {
|
|
|
163
171
|
const compareTestFiles = compareComponent && (await this.tester.getTestFiles(compareComponent).map(file => file.relative)) || [];
|
|
164
172
|
const allTestFiles = [...baseTestFiles, ...compareTestFiles];
|
|
165
173
|
const testFilesDiff = (diff.filesDiff || []).filter(fileDiff => allTestFiles.includes(fileDiff.filePath) && fileDiff.status !== 'UNCHANGED');
|
|
166
|
-
|
|
174
|
+
return {
|
|
167
175
|
id: `${baseCompId}-${compareCompId}`,
|
|
176
|
+
baseId: baseIdStr,
|
|
177
|
+
compareId: compareIdStr,
|
|
168
178
|
code: diff.filesDiff || [],
|
|
169
179
|
fields: diff.fieldsDiff || [],
|
|
170
180
|
tests: testFilesDiff
|
|
171
181
|
};
|
|
172
|
-
|
|
182
|
+
}
|
|
183
|
+
async getAPIDiff(baseIdStr, compareIdStr) {
|
|
184
|
+
const host = this.componentAspect.getHost();
|
|
185
|
+
const [baseCompId, compareCompId] = await host.resolveMultipleComponentIds([baseIdStr, compareIdStr]);
|
|
186
|
+
await this.importer.importObjectsFromMainIfExist([baseCompId, compareCompId], {
|
|
187
|
+
cache: true
|
|
188
|
+
});
|
|
189
|
+
const components = await host.getMany([baseCompId, compareCompId]);
|
|
190
|
+
const baseComponent = components?.[0];
|
|
191
|
+
const compareComponent = components?.[1];
|
|
192
|
+
if (!baseComponent || !compareComponent) return null;
|
|
193
|
+
return this.schema.computeAPIDiff(baseComponent, compareComponent);
|
|
173
194
|
}
|
|
174
195
|
async diffByCLIValues(pattern, version, toVersion, {
|
|
175
196
|
verbose,
|
|
@@ -308,9 +329,9 @@ class ComponentCompareMain {
|
|
|
308
329
|
await updateFieldsDiff(fromVersionComponent, toVersionComponent, diffResult, diffOpts);
|
|
309
330
|
return diffResult;
|
|
310
331
|
}
|
|
311
|
-
static async provider([graphql, component, scope, loggerMain, cli, workspace, tester, depResolver, importer]) {
|
|
332
|
+
static async provider([graphql, component, scope, loggerMain, cli, workspace, tester, depResolver, importer, schema]) {
|
|
312
333
|
const logger = loggerMain.createLogger(_componentCompare2().ComponentCompareAspect.id);
|
|
313
|
-
const componentCompareMain = new ComponentCompareMain(component, scope, logger, tester, depResolver, importer, workspace);
|
|
334
|
+
const componentCompareMain = new ComponentCompareMain(component, scope, logger, tester, depResolver, importer, schema, workspace);
|
|
314
335
|
cli.register(new (_diffCmd().DiffCmd)(componentCompareMain));
|
|
315
336
|
graphql.register(() => (0, _componentCompare().componentCompareSchema)(componentCompareMain));
|
|
316
337
|
return componentCompareMain;
|
|
@@ -318,7 +339,7 @@ class ComponentCompareMain {
|
|
|
318
339
|
}
|
|
319
340
|
exports.ComponentCompareMain = ComponentCompareMain;
|
|
320
341
|
_defineProperty(ComponentCompareMain, "slots", []);
|
|
321
|
-
_defineProperty(ComponentCompareMain, "dependencies", [_graphql().GraphqlAspect, _component().ComponentAspect, _scope().ScopeAspect, _logger().LoggerAspect, _cli().CLIAspect, _workspace().WorkspaceAspect, _tester().TesterAspect, _dependencyResolver().DependencyResolverAspect, _importer().ImporterAspect]);
|
|
342
|
+
_defineProperty(ComponentCompareMain, "dependencies", [_graphql().GraphqlAspect, _component().ComponentAspect, _scope().ScopeAspect, _logger().LoggerAspect, _cli().CLIAspect, _workspace().WorkspaceAspect, _tester().TesterAspect, _dependencyResolver().DependencyResolverAspect, _importer().ImporterAspect, _schema().SchemaAspect]);
|
|
322
343
|
_defineProperty(ComponentCompareMain, "runtime", _cli().MainRuntime);
|
|
323
344
|
function hasDiff(diffResult) {
|
|
324
345
|
return !!(diffResult.filesDiff && diffResult.filesDiff.find(file => file.diffOutput) || diffResult.fieldsDiff);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_cli","data","require","_lodash","_bitError","_workspace","_componentId","_scope","_graphql","_builder","_dependencyResolver","_logger","_legacy","_tester","_component","_componentCompare","_componentCompare2","_diffCmd","_importer","_defineProperty","e","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","ComponentCompareMain","constructor","componentAspect","scope","logger","tester","depResolver","importer","workspace","compare","baseIdStr","compareIdStr","host","getHost","baseCompId","compareCompId","resolveMultipleComponentIds","modelComponent","legacyScope","getModelComponentIfExist","comparingWithLocalChanges","BitError","toString","importObjectsFromMainIfExist","cache","baseVersion","version","compareVersion","components","getMany","baseComponent","compareComponent","componentWithoutVersion","get","changeVersion","undefined","diff","computeDiff","filesDiff","fieldsDiff","baseTestFiles","getTestFiles","map","file","relative","compareTestFiles","allTestFiles","testFilesDiff","filter","fileDiff","includes","filePath","status","compareResult","id","code","fields","tests","diffByCLIValues","pattern","toVersion","verbose","table","parent","OutsideWorkspaceError","ids","idsByPattern","listTagPendingIds","consumer","length","diffResults","componentsDiff","formatDepsAsTable","compareToParent","onDestroy","getConfigForDiffById","componentId","resolveComponentId","component","Error","getConfigForDiffByCompObject","modifiedIds","depData","getDependencies","modifiedIdsStr","toStringWithoutVersion","serializedToString","dep","idWithoutVersion","__type","split","lifecycle","source","serializeAndSort","deps","serialized","serialize","sort","serializeAspect","comp","aspects","state","withoutEntries","BuilderAspect","DependencyResolverAspect","toLegacy","sortById","toConfigObject","dependencies","diffOpts","componentsDiffResults","Promise","all","consumerComponent","_consumer","diffResult","hasDiff","isDeleted","modelFiles","files","getFilesDiff","fsFiles","repository","objects","idsToImport","compact","idList","ComponentIdList","fromArray","scopeImporter","importWithoutDeps","reason","versionObject","loadVersion","parents","getTagOfRefIfExists","fromVersionObject","toVersionObject","fromVersionFiles","modelFilesToSourceFiles","toVersionFiles","fromFiles","componentFromModel","toFiles","fromVersionLabel","toVersionLabel","fromVersionComponent","toConsumerComponent","name","toVersionComponent","updateFieldsDiff","diffBetweenVersionsObjects","fromVersion","toComponentId","color","hash","provider","graphql","loggerMain","cli","createLogger","ComponentCompareAspect","componentCompareMain","register","DiffCmd","componentCompareSchema","exports","GraphqlAspect","ComponentAspect","ScopeAspect","LoggerAspect","CLIAspect","WorkspaceAspect","TesterAspect","ImporterAspect","MainRuntime","find","diffOutput","componentA","componentB","diffBetweenComponentsObjects","addRuntime","_default","default"],"sources":["component-compare.main.runtime.ts"],"sourcesContent":["import type { CLIMain } from '@teambit/cli';\nimport { CLIAspect, MainRuntime } from '@teambit/cli';\nimport { compact } from 'lodash';\nimport { BitError } from '@teambit/bit-error';\nimport type { Workspace } from '@teambit/workspace';\nimport { WorkspaceAspect, OutsideWorkspaceError } from '@teambit/workspace';\nimport type { ComponentID } from '@teambit/component-id';\nimport { ComponentIdList } from '@teambit/component-id';\nimport type { ScopeMain } from '@teambit/scope';\nimport { ScopeAspect } from '@teambit/scope';\nimport type { GraphqlMain } from '@teambit/graphql';\nimport { GraphqlAspect } from '@teambit/graphql';\nimport { BuilderAspect } from '@teambit/builder';\nimport type { ModelComponent, Version } from '@teambit/objects';\nimport type { ConsumerComponent } from '@teambit/legacy.consumer-component';\nimport type { DependencyList, DependencyResolverMain, SerializedDependency } from '@teambit/dependency-resolver';\nimport { DependencyResolverAspect } from '@teambit/dependency-resolver';\nimport type { LoggerMain, Logger } from '@teambit/logger';\nimport { LoggerAspect } from '@teambit/logger';\nimport type { DiffOptions, DiffResults, FieldsDiff, FileDiff } from '@teambit/legacy.component-diff';\nimport { getFilesDiff, diffBetweenComponentsObjects } from '@teambit/legacy.component-diff';\nimport type { TesterMain } from '@teambit/tester';\nimport { TesterAspect } from '@teambit/tester';\nimport type { Component, ComponentMain } from '@teambit/component';\nimport { ComponentAspect } from '@teambit/component';\nimport { componentCompareSchema } from './component-compare.graphql';\nimport { ComponentCompareAspect } from './component-compare.aspect';\nimport { DiffCmd } from './diff-cmd';\nimport type { ImporterMain } from '@teambit/importer';\nimport { ImporterAspect } from '@teambit/importer';\n\nexport type ComponentCompareResult = {\n id: string;\n code: FileDiff[];\n fields: FieldsDiff[];\n tests: FileDiff[];\n};\n\ntype ConfigDiff = {\n version?: string;\n dependencies?: string[];\n aspects?: Record<string, any>;\n};\n\nexport class ComponentCompareMain {\n constructor(\n private componentAspect: ComponentMain,\n private scope: ScopeMain,\n private logger: Logger,\n private tester: TesterMain,\n private depResolver: DependencyResolverMain,\n private importer: ImporterMain,\n private workspace?: Workspace\n ) {}\n\n async compare(baseIdStr: string, compareIdStr: string): Promise<ComponentCompareResult> {\n const host = this.componentAspect.getHost();\n const [baseCompId, compareCompId] = await host.resolveMultipleComponentIds([baseIdStr, compareIdStr]);\n const modelComponent = await this.scope.legacyScope.getModelComponentIfExist(compareCompId);\n const comparingWithLocalChanges = this.workspace && baseIdStr === compareIdStr;\n\n if (!modelComponent) {\n throw new BitError(`component ${compareCompId.toString()} doesn't have any version yet`);\n }\n\n // import missing components that might be on main\n await this.importer.importObjectsFromMainIfExist([baseCompId, compareCompId], {\n cache: true,\n });\n\n const baseVersion = baseCompId.version as string;\n const compareVersion = compareCompId.version as string;\n\n const components = await host.getMany([baseCompId, compareCompId]);\n const baseComponent = components?.[0];\n const compareComponent = components?.[1];\n const componentWithoutVersion = await host.get((baseCompId || compareCompId).changeVersion(undefined));\n\n const diff = componentWithoutVersion\n ? await this.computeDiff(\n componentWithoutVersion,\n comparingWithLocalChanges ? undefined : baseVersion,\n comparingWithLocalChanges ? undefined : compareVersion,\n {}\n )\n : {\n filesDiff: [],\n fieldsDiff: [],\n };\n\n const baseTestFiles =\n (baseComponent && (await this.tester.getTestFiles(baseComponent).map((file) => file.relative))) || [];\n const compareTestFiles =\n (compareComponent && (await this.tester.getTestFiles(compareComponent).map((file) => file.relative))) || [];\n\n const allTestFiles = [...baseTestFiles, ...compareTestFiles];\n\n const testFilesDiff = (diff.filesDiff || []).filter(\n (fileDiff: FileDiff) => allTestFiles.includes(fileDiff.filePath) && fileDiff.status !== 'UNCHANGED'\n );\n\n const compareResult = {\n id: `${baseCompId}-${compareCompId}`,\n code: diff.filesDiff || [],\n fields: diff.fieldsDiff || [],\n tests: testFilesDiff,\n };\n\n return compareResult;\n }\n\n async diffByCLIValues(\n pattern?: string,\n version?: string,\n toVersion?: string,\n { verbose, table, parent }: { verbose?: boolean; table?: boolean; parent?: boolean } = {}\n ): Promise<any> {\n if (!this.workspace) throw new OutsideWorkspaceError();\n const ids = pattern ? await this.workspace.idsByPattern(pattern) : await this.workspace.listTagPendingIds();\n const consumer = this.workspace.consumer;\n if (!ids.length) {\n return [];\n }\n const diffResults = await this.componentsDiff(ids, version, toVersion, {\n verbose,\n formatDepsAsTable: table,\n compareToParent: parent,\n });\n await consumer.onDestroy('diff');\n return diffResults;\n }\n\n async getConfigForDiffById(id: string): Promise<ConfigDiff> {\n const workspace = this.workspace;\n if (!workspace) throw new OutsideWorkspaceError();\n const componentId = await workspace.resolveComponentId(id);\n const component = await workspace.scope.get(componentId, false);\n if (!component) throw new Error(`getConfigForDiff: unable to find component ${id} in local scope`);\n return this.getConfigForDiffByCompObject(component);\n }\n\n async getConfigForDiffByCompObject(component: Component, modifiedIds?: ComponentID[]) {\n const depData = this.depResolver.getDependencies(component);\n const modifiedIdsStr = modifiedIds?.map((id) => id.toStringWithoutVersion());\n const serializedToString = (dep: SerializedDependency) => {\n const idWithoutVersion = dep.__type === 'package' ? dep.id : dep.id.split('@')[0];\n const version = modifiedIdsStr?.includes(idWithoutVersion) ? `<modified>` : dep.version;\n return `${idWithoutVersion}@${version} (${dep.lifecycle}) ${dep.source ? `(${dep.source})` : ''}`;\n };\n const serializeAndSort = (deps: DependencyList) => {\n const serialized = deps.serialize().map(serializedToString);\n return serialized.sort();\n };\n const serializeAspect = (comp: Component) => {\n const aspects = comp.state.aspects.withoutEntries([BuilderAspect.id, DependencyResolverAspect.id]);\n // return aspects.serialize();\n return aspects.toLegacy().sortById().toConfigObject();\n };\n return {\n version: component.id.version,\n dependencies: serializeAndSort(depData),\n aspects: serializeAspect(component),\n };\n }\n\n private async componentsDiff(\n ids: ComponentID[],\n version: string | undefined,\n toVersion: string | undefined,\n diffOpts: DiffOptions\n ): Promise<DiffResults[]> {\n if (!this.workspace) throw new OutsideWorkspaceError();\n const components = await this.workspace.getMany(ids);\n if (!components.length) throw new BitError('failed loading the components');\n if (toVersion && !version)\n throw new BitError('error: componentsDiff expects to get version when toVersion is entered');\n const componentsDiffResults = await Promise.all(\n components.map((component) => this.computeDiff(component, version, toVersion, diffOpts))\n );\n return componentsDiffResults;\n }\n\n /**\n * this method operates in two modes:\n * 1. workspace mode - the version and toVersion can be undefined.\n * 2. scope mode - the version and toVersion are mandatory.\n */\n private async computeDiff(\n component: Component,\n version: string | undefined,\n toVersion: string | undefined,\n diffOpts: DiffOptions\n ): Promise<DiffResults> {\n const consumerComponent = component.state._consumer as ConsumerComponent;\n\n const diffResult: DiffResults = { id: component.id, hasDiff: false };\n const modelComponent =\n consumerComponent.modelComponent || (await this.scope.legacyScope.getModelComponentIfExist(component.id));\n\n if (this.workspace && component.isDeleted()) {\n // component exists in the model but not in the filesystem, show all files as deleted\n const modelFiles = consumerComponent.files;\n diffResult.filesDiff = await getFilesDiff(modelFiles, [], component.id.version, component.id.version);\n if (hasDiff(diffResult)) diffResult.hasDiff = true;\n return diffResult;\n }\n if (!modelComponent) {\n if (version || toVersion) {\n throw new BitError(`component ${component.id.toString()} doesn't have any version yet`);\n }\n // it's a new component. not modified. show all files as new.\n const fsFiles = consumerComponent.files;\n diffResult.filesDiff = await getFilesDiff([], fsFiles, component.id.version, component.id.version);\n if (hasDiff(diffResult)) diffResult.hasDiff = true;\n return diffResult;\n }\n const repository = this.scope.legacyScope.objects;\n const idsToImport = compact([\n version ? component.id.changeVersion(version) : undefined,\n toVersion ? component.id.changeVersion(toVersion) : undefined,\n ]);\n const idList = ComponentIdList.fromArray(idsToImport);\n await this.scope.legacyScope.scopeImporter.importWithoutDeps(idList, { cache: true, reason: 'to show diff' });\n if (diffOpts.compareToParent) {\n if (!version) throw new BitError('--parent flag expects to get version');\n if (toVersion) throw new BitError('--parent flag expects to get only one version');\n const versionObject = await modelComponent.loadVersion(version, repository);\n const parent = versionObject.parents[0];\n toVersion = version;\n version = parent ? modelComponent.getTagOfRefIfExists(parent) : undefined;\n }\n const fromVersionObject = version ? await modelComponent.loadVersion(version, repository) : undefined;\n const toVersionObject = toVersion ? await modelComponent.loadVersion(toVersion, repository) : undefined;\n const fromVersionFiles = await fromVersionObject?.modelFilesToSourceFiles(repository);\n const toVersionFiles = await toVersionObject?.modelFilesToSourceFiles(repository);\n\n const fromFiles = fromVersionFiles || consumerComponent.componentFromModel?.files;\n if (!fromFiles)\n throw new Error(\n `computeDiff: fromFiles must be defined for ${component.id.toString()}. if on workspace, consumerComponent.componentFromModel must be set. if on scope, fromVersionFiles must be set`\n );\n const toFiles = toVersionFiles || consumerComponent.files;\n const fromVersionLabel = version || component.id.version;\n const toVersionLabel = toVersion || component.id.version;\n\n diffResult.filesDiff = await getFilesDiff(fromFiles!, toFiles, fromVersionLabel, toVersionLabel);\n const fromVersionComponent = version\n ? await modelComponent.toConsumerComponent(version, this.scope.legacyScope.name, repository)\n : consumerComponent.componentFromModel;\n\n const toVersionComponent = toVersion\n ? await modelComponent.toConsumerComponent(toVersion, this.scope.legacyScope.name, repository)\n : consumerComponent;\n\n if (!fromVersionComponent) {\n throw new Error(\n `computeDiff: fromVersionComponent must be defined for ${component.id.toString()}. if on workspace, consumerComponent.componentFromModel must be set. if on scope, \"version\" must be set`\n );\n }\n\n await updateFieldsDiff(fromVersionComponent, toVersionComponent, diffResult, diffOpts);\n\n return diffResult;\n }\n\n async diffBetweenVersionsObjects(\n modelComponent: ModelComponent,\n fromVersionObject: Version,\n toVersionObject: Version,\n fromVersion: string,\n toVersion: string,\n diffOpts: DiffOptions\n ) {\n const diffResult: DiffResults = { id: modelComponent.toComponentId(), hasDiff: false };\n const scope = this.scope.legacyScope;\n const repository = scope.objects;\n const fromVersionFiles = await fromVersionObject.modelFilesToSourceFiles(repository);\n const toVersionFiles = await toVersionObject.modelFilesToSourceFiles(repository);\n const color = diffOpts.color ?? true;\n diffResult.filesDiff = await getFilesDiff(\n fromVersionFiles,\n toVersionFiles,\n fromVersion,\n toVersion,\n undefined,\n color\n );\n const fromVersionComponent = await modelComponent.toConsumerComponent(\n fromVersionObject.hash().toString(),\n scope.name,\n repository\n );\n const toVersionComponent = await modelComponent.toConsumerComponent(\n toVersionObject.hash().toString(),\n scope.name,\n repository\n );\n await updateFieldsDiff(fromVersionComponent, toVersionComponent, diffResult, diffOpts);\n return diffResult;\n }\n\n static slots = [];\n static dependencies = [\n GraphqlAspect,\n ComponentAspect,\n ScopeAspect,\n LoggerAspect,\n CLIAspect,\n WorkspaceAspect,\n TesterAspect,\n DependencyResolverAspect,\n ImporterAspect,\n ];\n static runtime = MainRuntime;\n static async provider([graphql, component, scope, loggerMain, cli, workspace, tester, depResolver, importer]: [\n GraphqlMain,\n ComponentMain,\n ScopeMain,\n LoggerMain,\n CLIMain,\n Workspace,\n TesterMain,\n DependencyResolverMain,\n ImporterMain,\n ]) {\n const logger = loggerMain.createLogger(ComponentCompareAspect.id);\n const componentCompareMain = new ComponentCompareMain(\n component,\n scope,\n logger,\n tester,\n depResolver,\n importer,\n workspace\n );\n cli.register(new DiffCmd(componentCompareMain));\n graphql.register(() => componentCompareSchema(componentCompareMain));\n return componentCompareMain;\n }\n}\n\nfunction hasDiff(diffResult: DiffResults): boolean {\n return !!((diffResult.filesDiff && diffResult.filesDiff.find((file) => file.diffOutput)) || diffResult.fieldsDiff);\n}\n\nasync function updateFieldsDiff(\n componentA: ConsumerComponent,\n componentB: ConsumerComponent,\n diffResult: DiffResults,\n diffOpts: DiffOptions\n) {\n diffResult.fieldsDiff = await diffBetweenComponentsObjects(componentA, componentB, diffOpts);\n diffResult.hasDiff = hasDiff(diffResult);\n}\n\nComponentCompareAspect.addRuntime(ComponentCompareMain);\n\nexport default ComponentCompareMain;\n"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["_cli","data","require","_lodash","_bitError","_workspace","_componentId","_scope","_graphql","_builder","_dependencyResolver","_logger","_legacy","_tester","_component","_schema","_componentCompare","_componentCompare2","_diffCmd","_importer","_defineProperty","e","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","ComponentCompareMain","constructor","componentAspect","scope","logger","tester","depResolver","importer","schema","workspace","compare","baseIdStr","compareIdStr","host","getHost","baseCompId","compareCompId","resolveMultipleComponentIds","modelComponent","legacyScope","getModelComponentIfExist","comparingWithLocalChanges","BitError","toString","importObjectsFromMainIfExist","cache","baseVersion","version","compareVersion","components","getMany","baseComponent","compareComponent","componentWithoutVersion","get","changeVersion","undefined","diff","computeDiff","filesDiff","fieldsDiff","baseTestFiles","getTestFiles","map","file","relative","compareTestFiles","allTestFiles","testFilesDiff","filter","fileDiff","includes","filePath","status","id","baseId","compareId","code","fields","tests","getAPIDiff","computeAPIDiff","diffByCLIValues","pattern","toVersion","verbose","table","parent","OutsideWorkspaceError","ids","idsByPattern","listTagPendingIds","consumer","length","diffResults","componentsDiff","formatDepsAsTable","compareToParent","onDestroy","getConfigForDiffById","componentId","resolveComponentId","component","Error","getConfigForDiffByCompObject","modifiedIds","depData","getDependencies","modifiedIdsStr","toStringWithoutVersion","serializedToString","dep","idWithoutVersion","__type","split","lifecycle","source","serializeAndSort","deps","serialized","serialize","sort","serializeAspect","comp","aspects","state","withoutEntries","BuilderAspect","DependencyResolverAspect","toLegacy","sortById","toConfigObject","dependencies","diffOpts","componentsDiffResults","Promise","all","consumerComponent","_consumer","diffResult","hasDiff","isDeleted","modelFiles","files","getFilesDiff","fsFiles","repository","objects","idsToImport","compact","idList","ComponentIdList","fromArray","scopeImporter","importWithoutDeps","reason","versionObject","loadVersion","parents","getTagOfRefIfExists","fromVersionObject","toVersionObject","fromVersionFiles","modelFilesToSourceFiles","toVersionFiles","fromFiles","componentFromModel","toFiles","fromVersionLabel","toVersionLabel","fromVersionComponent","toConsumerComponent","name","toVersionComponent","updateFieldsDiff","diffBetweenVersionsObjects","fromVersion","toComponentId","color","hash","provider","graphql","loggerMain","cli","createLogger","ComponentCompareAspect","componentCompareMain","register","DiffCmd","componentCompareSchema","exports","GraphqlAspect","ComponentAspect","ScopeAspect","LoggerAspect","CLIAspect","WorkspaceAspect","TesterAspect","ImporterAspect","SchemaAspect","MainRuntime","find","diffOutput","componentA","componentB","diffBetweenComponentsObjects","addRuntime","_default","default"],"sources":["component-compare.main.runtime.ts"],"sourcesContent":["import type { CLIMain } from '@teambit/cli';\nimport { CLIAspect, MainRuntime } from '@teambit/cli';\nimport { compact } from 'lodash';\nimport { BitError } from '@teambit/bit-error';\nimport type { Workspace } from '@teambit/workspace';\nimport { WorkspaceAspect, OutsideWorkspaceError } from '@teambit/workspace';\nimport type { ComponentID } from '@teambit/component-id';\nimport { ComponentIdList } from '@teambit/component-id';\nimport type { ScopeMain } from '@teambit/scope';\nimport { ScopeAspect } from '@teambit/scope';\nimport type { GraphqlMain } from '@teambit/graphql';\nimport { GraphqlAspect } from '@teambit/graphql';\nimport { BuilderAspect } from '@teambit/builder';\nimport type { ModelComponent, Version } from '@teambit/objects';\nimport type { ConsumerComponent } from '@teambit/legacy.consumer-component';\nimport type { DependencyList, DependencyResolverMain, SerializedDependency } from '@teambit/dependency-resolver';\nimport { DependencyResolverAspect } from '@teambit/dependency-resolver';\nimport type { LoggerMain, Logger } from '@teambit/logger';\nimport { LoggerAspect } from '@teambit/logger';\nimport type { DiffOptions, DiffResults, FieldsDiff, FileDiff } from '@teambit/legacy.component-diff';\nimport { getFilesDiff, diffBetweenComponentsObjects } from '@teambit/legacy.component-diff';\nimport type { TesterMain } from '@teambit/tester';\nimport { TesterAspect } from '@teambit/tester';\nimport type { Component, ComponentMain } from '@teambit/component';\nimport { ComponentAspect } from '@teambit/component';\nimport type { SchemaMain } from '@teambit/schema';\nimport { SchemaAspect } from '@teambit/schema';\n\nimport { componentCompareSchema } from './component-compare.graphql';\nimport { ComponentCompareAspect } from './component-compare.aspect';\nimport { DiffCmd } from './diff-cmd';\nimport type { ImporterMain } from '@teambit/importer';\nimport { ImporterAspect } from '@teambit/importer';\n\nexport type ComponentCompareResult = {\n id: string;\n baseId: string;\n compareId: string;\n code: FileDiff[];\n fields: FieldsDiff[];\n tests: FileDiff[];\n};\n\ntype ConfigDiff = {\n version?: string;\n dependencies?: string[];\n aspects?: Record<string, any>;\n};\n\nexport class ComponentCompareMain {\n constructor(\n private componentAspect: ComponentMain,\n private scope: ScopeMain,\n private logger: Logger,\n private tester: TesterMain,\n private depResolver: DependencyResolverMain,\n private importer: ImporterMain,\n private schema: SchemaMain,\n private workspace?: Workspace\n ) {}\n\n async compare(baseIdStr: string, compareIdStr: string): Promise<ComponentCompareResult> {\n const host = this.componentAspect.getHost();\n const [baseCompId, compareCompId] = await host.resolveMultipleComponentIds([baseIdStr, compareIdStr]);\n const modelComponent = await this.scope.legacyScope.getModelComponentIfExist(compareCompId);\n const comparingWithLocalChanges = this.workspace && baseIdStr === compareIdStr;\n\n if (!modelComponent) {\n throw new BitError(`component ${compareCompId.toString()} doesn't have any version yet`);\n }\n\n // import missing components that might be on main\n await this.importer.importObjectsFromMainIfExist([baseCompId, compareCompId], {\n cache: true,\n });\n\n const baseVersion = baseCompId.version as string;\n const compareVersion = compareCompId.version as string;\n\n const components = await host.getMany([baseCompId, compareCompId]);\n const baseComponent = components?.[0];\n const compareComponent = components?.[1];\n const componentWithoutVersion = await host.get((baseCompId || compareCompId).changeVersion(undefined));\n\n const diff = componentWithoutVersion\n ? await this.computeDiff(\n componentWithoutVersion,\n comparingWithLocalChanges ? undefined : baseVersion,\n comparingWithLocalChanges ? undefined : compareVersion,\n {}\n )\n : {\n filesDiff: [],\n fieldsDiff: [],\n };\n\n const baseTestFiles =\n (baseComponent && (await this.tester.getTestFiles(baseComponent).map((file) => file.relative))) || [];\n const compareTestFiles =\n (compareComponent && (await this.tester.getTestFiles(compareComponent).map((file) => file.relative))) || [];\n\n const allTestFiles = [...baseTestFiles, ...compareTestFiles];\n\n const testFilesDiff = (diff.filesDiff || []).filter(\n (fileDiff: FileDiff) => allTestFiles.includes(fileDiff.filePath) && fileDiff.status !== 'UNCHANGED'\n );\n\n return {\n id: `${baseCompId}-${compareCompId}`,\n baseId: baseIdStr,\n compareId: compareIdStr,\n code: diff.filesDiff || [],\n fields: diff.fieldsDiff || [],\n tests: testFilesDiff,\n };\n }\n\n async getAPIDiff(baseIdStr: string, compareIdStr: string): Promise<Record<string, any> | null> {\n const host = this.componentAspect.getHost();\n const [baseCompId, compareCompId] = await host.resolveMultipleComponentIds([baseIdStr, compareIdStr]);\n await this.importer.importObjectsFromMainIfExist([baseCompId, compareCompId], { cache: true });\n const components = await host.getMany([baseCompId, compareCompId]);\n const baseComponent = components?.[0];\n const compareComponent = components?.[1];\n if (!baseComponent || !compareComponent) return null;\n return this.schema.computeAPIDiff(baseComponent, compareComponent);\n }\n\n async diffByCLIValues(\n pattern?: string,\n version?: string,\n toVersion?: string,\n { verbose, table, parent }: { verbose?: boolean; table?: boolean; parent?: boolean } = {}\n ): Promise<any> {\n if (!this.workspace) throw new OutsideWorkspaceError();\n const ids = pattern ? await this.workspace.idsByPattern(pattern) : await this.workspace.listTagPendingIds();\n const consumer = this.workspace.consumer;\n if (!ids.length) {\n return [];\n }\n const diffResults = await this.componentsDiff(ids, version, toVersion, {\n verbose,\n formatDepsAsTable: table,\n compareToParent: parent,\n });\n await consumer.onDestroy('diff');\n return diffResults;\n }\n\n async getConfigForDiffById(id: string): Promise<ConfigDiff> {\n const workspace = this.workspace;\n if (!workspace) throw new OutsideWorkspaceError();\n const componentId = await workspace.resolveComponentId(id);\n const component = await workspace.scope.get(componentId, false);\n if (!component) throw new Error(`getConfigForDiff: unable to find component ${id} in local scope`);\n return this.getConfigForDiffByCompObject(component);\n }\n\n async getConfigForDiffByCompObject(component: Component, modifiedIds?: ComponentID[]) {\n const depData = this.depResolver.getDependencies(component);\n const modifiedIdsStr = modifiedIds?.map((id) => id.toStringWithoutVersion());\n const serializedToString = (dep: SerializedDependency) => {\n const idWithoutVersion = dep.__type === 'package' ? dep.id : dep.id.split('@')[0];\n const version = modifiedIdsStr?.includes(idWithoutVersion) ? `<modified>` : dep.version;\n return `${idWithoutVersion}@${version} (${dep.lifecycle}) ${dep.source ? `(${dep.source})` : ''}`;\n };\n const serializeAndSort = (deps: DependencyList) => {\n const serialized = deps.serialize().map(serializedToString);\n return serialized.sort();\n };\n const serializeAspect = (comp: Component) => {\n const aspects = comp.state.aspects.withoutEntries([BuilderAspect.id, DependencyResolverAspect.id]);\n // return aspects.serialize();\n return aspects.toLegacy().sortById().toConfigObject();\n };\n return {\n version: component.id.version,\n dependencies: serializeAndSort(depData),\n aspects: serializeAspect(component),\n };\n }\n\n private async componentsDiff(\n ids: ComponentID[],\n version: string | undefined,\n toVersion: string | undefined,\n diffOpts: DiffOptions\n ): Promise<DiffResults[]> {\n if (!this.workspace) throw new OutsideWorkspaceError();\n const components = await this.workspace.getMany(ids);\n if (!components.length) throw new BitError('failed loading the components');\n if (toVersion && !version)\n throw new BitError('error: componentsDiff expects to get version when toVersion is entered');\n const componentsDiffResults = await Promise.all(\n components.map((component) => this.computeDiff(component, version, toVersion, diffOpts))\n );\n return componentsDiffResults;\n }\n\n /**\n * this method operates in two modes:\n * 1. workspace mode - the version and toVersion can be undefined.\n * 2. scope mode - the version and toVersion are mandatory.\n */\n private async computeDiff(\n component: Component,\n version: string | undefined,\n toVersion: string | undefined,\n diffOpts: DiffOptions\n ): Promise<DiffResults> {\n const consumerComponent = component.state._consumer as ConsumerComponent;\n\n const diffResult: DiffResults = { id: component.id, hasDiff: false };\n const modelComponent =\n consumerComponent.modelComponent || (await this.scope.legacyScope.getModelComponentIfExist(component.id));\n\n if (this.workspace && component.isDeleted()) {\n // component exists in the model but not in the filesystem, show all files as deleted\n const modelFiles = consumerComponent.files;\n diffResult.filesDiff = await getFilesDiff(modelFiles, [], component.id.version, component.id.version);\n if (hasDiff(diffResult)) diffResult.hasDiff = true;\n return diffResult;\n }\n if (!modelComponent) {\n if (version || toVersion) {\n throw new BitError(`component ${component.id.toString()} doesn't have any version yet`);\n }\n // it's a new component. not modified. show all files as new.\n const fsFiles = consumerComponent.files;\n diffResult.filesDiff = await getFilesDiff([], fsFiles, component.id.version, component.id.version);\n if (hasDiff(diffResult)) diffResult.hasDiff = true;\n return diffResult;\n }\n const repository = this.scope.legacyScope.objects;\n const idsToImport = compact([\n version ? component.id.changeVersion(version) : undefined,\n toVersion ? component.id.changeVersion(toVersion) : undefined,\n ]);\n const idList = ComponentIdList.fromArray(idsToImport);\n await this.scope.legacyScope.scopeImporter.importWithoutDeps(idList, { cache: true, reason: 'to show diff' });\n if (diffOpts.compareToParent) {\n if (!version) throw new BitError('--parent flag expects to get version');\n if (toVersion) throw new BitError('--parent flag expects to get only one version');\n const versionObject = await modelComponent.loadVersion(version, repository);\n const parent = versionObject.parents[0];\n toVersion = version;\n version = parent ? modelComponent.getTagOfRefIfExists(parent) : undefined;\n }\n const fromVersionObject = version ? await modelComponent.loadVersion(version, repository) : undefined;\n const toVersionObject = toVersion ? await modelComponent.loadVersion(toVersion, repository) : undefined;\n const fromVersionFiles = await fromVersionObject?.modelFilesToSourceFiles(repository);\n const toVersionFiles = await toVersionObject?.modelFilesToSourceFiles(repository);\n\n const fromFiles = fromVersionFiles || consumerComponent.componentFromModel?.files;\n if (!fromFiles)\n throw new Error(\n `computeDiff: fromFiles must be defined for ${component.id.toString()}. if on workspace, consumerComponent.componentFromModel must be set. if on scope, fromVersionFiles must be set`\n );\n const toFiles = toVersionFiles || consumerComponent.files;\n const fromVersionLabel = version || component.id.version;\n const toVersionLabel = toVersion || component.id.version;\n\n diffResult.filesDiff = await getFilesDiff(fromFiles!, toFiles, fromVersionLabel, toVersionLabel);\n const fromVersionComponent = version\n ? await modelComponent.toConsumerComponent(version, this.scope.legacyScope.name, repository)\n : consumerComponent.componentFromModel;\n\n const toVersionComponent = toVersion\n ? await modelComponent.toConsumerComponent(toVersion, this.scope.legacyScope.name, repository)\n : consumerComponent;\n\n if (!fromVersionComponent) {\n throw new Error(\n `computeDiff: fromVersionComponent must be defined for ${component.id.toString()}. if on workspace, consumerComponent.componentFromModel must be set. if on scope, \"version\" must be set`\n );\n }\n\n await updateFieldsDiff(fromVersionComponent, toVersionComponent, diffResult, diffOpts);\n\n return diffResult;\n }\n\n async diffBetweenVersionsObjects(\n modelComponent: ModelComponent,\n fromVersionObject: Version,\n toVersionObject: Version,\n fromVersion: string,\n toVersion: string,\n diffOpts: DiffOptions\n ) {\n const diffResult: DiffResults = { id: modelComponent.toComponentId(), hasDiff: false };\n const scope = this.scope.legacyScope;\n const repository = scope.objects;\n const fromVersionFiles = await fromVersionObject.modelFilesToSourceFiles(repository);\n const toVersionFiles = await toVersionObject.modelFilesToSourceFiles(repository);\n const color = diffOpts.color ?? true;\n diffResult.filesDiff = await getFilesDiff(\n fromVersionFiles,\n toVersionFiles,\n fromVersion,\n toVersion,\n undefined,\n color\n );\n const fromVersionComponent = await modelComponent.toConsumerComponent(\n fromVersionObject.hash().toString(),\n scope.name,\n repository\n );\n const toVersionComponent = await modelComponent.toConsumerComponent(\n toVersionObject.hash().toString(),\n scope.name,\n repository\n );\n await updateFieldsDiff(fromVersionComponent, toVersionComponent, diffResult, diffOpts);\n return diffResult;\n }\n\n static slots = [];\n static dependencies = [\n GraphqlAspect,\n ComponentAspect,\n ScopeAspect,\n LoggerAspect,\n CLIAspect,\n WorkspaceAspect,\n TesterAspect,\n DependencyResolverAspect,\n ImporterAspect,\n SchemaAspect,\n ];\n static runtime = MainRuntime;\n static async provider([\n graphql,\n component,\n scope,\n loggerMain,\n cli,\n workspace,\n tester,\n depResolver,\n importer,\n schema,\n ]: [\n GraphqlMain,\n ComponentMain,\n ScopeMain,\n LoggerMain,\n CLIMain,\n Workspace,\n TesterMain,\n DependencyResolverMain,\n ImporterMain,\n SchemaMain,\n ]) {\n const logger = loggerMain.createLogger(ComponentCompareAspect.id);\n const componentCompareMain = new ComponentCompareMain(\n component,\n scope,\n logger,\n tester,\n depResolver,\n importer,\n schema,\n workspace\n );\n cli.register(new DiffCmd(componentCompareMain));\n graphql.register(() => componentCompareSchema(componentCompareMain));\n return componentCompareMain;\n }\n}\n\nfunction hasDiff(diffResult: DiffResults): boolean {\n return !!((diffResult.filesDiff && diffResult.filesDiff.find((file) => file.diffOutput)) || diffResult.fieldsDiff);\n}\n\nasync function updateFieldsDiff(\n componentA: ConsumerComponent,\n componentB: ConsumerComponent,\n diffResult: DiffResults,\n diffOpts: DiffOptions\n) {\n diffResult.fieldsDiff = await diffBetweenComponentsObjects(componentA, componentB, diffOpts);\n diffResult.hasDiff = hasDiff(diffResult);\n}\n\nComponentCompareAspect.addRuntime(ComponentCompareMain);\n\nexport default ComponentCompareMain;\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_component-compare@1.0.
|
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_component-compare@1.0.
|
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_component-compare@1.0.929/dist/component-compare.compositions.js';
|
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.component_component-compare@1.0.929/dist/component-compare.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/component-compare",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.929",
|
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/component-compare",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"componentId": {
|
|
7
7
|
"scope": "teambit.component",
|
|
8
8
|
"name": "component-compare",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.929"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"graphql-tag": "2.12.1",
|
|
@@ -18,26 +18,27 @@
|
|
|
18
18
|
"@teambit/ui-foundation.ui.menu-widget-icon": "0.0.502",
|
|
19
19
|
"@teambit/harmony": "0.4.7",
|
|
20
20
|
"@teambit/bit-error": "0.0.404",
|
|
21
|
-
"@teambit/cli": "0.0.1307",
|
|
22
21
|
"@teambit/component-id": "1.2.4",
|
|
23
22
|
"@teambit/legacy.component-diff": "0.0.157",
|
|
24
23
|
"@teambit/legacy.consumer-component": "0.0.104",
|
|
25
|
-
"@teambit/logger": "0.0.1400",
|
|
26
24
|
"@teambit/component.ui.component-compare.changelog": "0.0.235",
|
|
27
|
-
"@teambit/component.ui.component-compare.component-compare": "0.0.
|
|
25
|
+
"@teambit/component.ui.component-compare.component-compare": "0.0.254",
|
|
28
26
|
"@teambit/ui-foundation.ui.react-router.slot-router": "0.0.522",
|
|
29
27
|
"@teambit/component.ui.component-compare.compare-aspects.compare-aspects": "0.0.152",
|
|
30
28
|
"@teambit/legacy.constants": "0.0.24",
|
|
31
|
-
"@teambit/component": "1.0.
|
|
32
|
-
"@teambit/
|
|
33
|
-
"@teambit/
|
|
34
|
-
"@teambit/
|
|
35
|
-
"@teambit/
|
|
36
|
-
"@teambit/
|
|
37
|
-
"@teambit/
|
|
38
|
-
"@teambit/
|
|
39
|
-
"@teambit/
|
|
40
|
-
"@teambit/
|
|
29
|
+
"@teambit/component": "1.0.929",
|
|
30
|
+
"@teambit/graphql": "1.0.929",
|
|
31
|
+
"@teambit/builder": "1.0.929",
|
|
32
|
+
"@teambit/cli": "0.0.1308",
|
|
33
|
+
"@teambit/dependency-resolver": "1.0.929",
|
|
34
|
+
"@teambit/importer": "1.0.929",
|
|
35
|
+
"@teambit/logger": "0.0.1401",
|
|
36
|
+
"@teambit/objects": "0.0.436",
|
|
37
|
+
"@teambit/schema": "1.0.929",
|
|
38
|
+
"@teambit/scope": "1.0.929",
|
|
39
|
+
"@teambit/tester": "1.0.929",
|
|
40
|
+
"@teambit/workspace": "1.0.929",
|
|
41
|
+
"@teambit/ui": "1.0.929"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
44
|
"@types/lodash": "4.14.165",
|