@teambit/graph 1.0.150 → 1.0.152
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/artifacts/__bit_junit.xml +1 -1
- package/artifacts/preview/teambit_component_graph-preview.js +1 -1
- package/dist/component-id-graph.d.ts +5 -2
- package/dist/component-id-graph.js +16 -3
- package/dist/component-id-graph.js.map +1 -1
- package/dist/{preview-1706671044097.js → preview-1706757518460.js} +2 -2
- package/package.json +8 -8
@@ -1 +1 @@
|
|
1
|
-
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports["teambit.component/graph-preview"]=t():e["teambit.component/graph-preview"]=t()}(self,(()=>(()=>{"use strict";var e={
|
1
|
+
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports["teambit.component/graph-preview"]=t():e["teambit.component/graph-preview"]=t()}(self,(()=>(()=>{"use strict";var e={85729:(e,t,o)=>{var r={id:"teambit.component/graph@1.0.152",homepage:"https://bit.cloud/teambit/component/graph",exported:!0};function n(){const e=i(o(87363));return n=function(){return e},e}function i(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.Logo=void 0,n.__bit_component=r,i.__bit_component=r;const p=()=>n().default.createElement("div",{style:{height:"100%",display:"flex",justifyContent:"center"}},n().default.createElement("img",{style:{width:70},src:"https://static.bit.dev/extensions-icons/graph.svg"}));p.__bit_component=r,t.Logo=p},87363:e=>{e.exports=React}},t={};function o(r){var n=t[r];if(void 0!==n)return n.exports;var i=t[r]={exports:{}};return e[r](i,i.exports,o),i.exports}o.d=(e,t)=>{for(var r in t)o.o(t,r)&&!o.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r={};return(()=>{o.r(r),o.d(r,{compositions:()=>u,compositions_metadata:()=>l,overview:()=>f});var e={};o.r(e),o.d(e,{default:()=>d});var t=o(85729);o(87363);const n=MdxJsReact,i=TeambitMdxUiMdxScopeContext;var p=["components"];function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var o=arguments[t];for(var r in o)Object.prototype.hasOwnProperty.call(o,r)&&(e[r]=o[r])}return e},a.apply(this,arguments)}var c={},s="wrapper";function d(e){var t=e.components,o=function(e,t){if(null==e)return{};var o,r,n=function(e,t){if(null==e)return{};var o,r,n={},i=Object.keys(e);for(r=0;r<i.length;r++)o=i[r],t.indexOf(o)>=0||(n[o]=e[o]);return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)o=i[r],t.indexOf(o)>=0||Object.prototype.propertyIsEnumerable.call(e,o)&&(n[o]=e[o])}return n}(e,p);return(0,n.mdx)(s,a({},c,o,{components:t,mdxType:"MDXLayout"}),(0,n.mdx)(i.MDXScopeProvider,{components:{},mdxType:"MDXScopeProvider"}))}d.isMDXComponent=!0;const u=[t],f=[e],l={compositions:[{displayName:"Logo",identifier:"Logo"}]}})(),r})()));
|
@@ -14,9 +14,12 @@ export declare class ComponentIdGraph extends Graph<ComponentID, DepEdgeType> {
|
|
14
14
|
* A -> B -> C -> N.
|
15
15
|
* A -> E -> N.
|
16
16
|
* B -> F -> G.
|
17
|
-
* given source: A, targets: N. The results will be: B, C, E
|
17
|
+
* given source: A, targets: N. The results will be: [B, C, E].
|
18
|
+
*
|
19
|
+
* if through is provided, it will only return the components that are connected to the through components.
|
20
|
+
* with the example above, if through is B, the results will be: [B, C].
|
18
21
|
*/
|
19
|
-
findIdsFromSourcesToTargets(sources: ComponentID[], targets: ComponentID[]): ComponentID[];
|
22
|
+
findIdsFromSourcesToTargets(sources: ComponentID[], targets: ComponentID[], through?: ComponentID[]): ComponentID[];
|
20
23
|
/**
|
21
24
|
* overrides the super class to eliminate non-seeders components
|
22
25
|
*/
|
@@ -37,9 +37,12 @@ class ComponentIdGraph extends _graph().Graph {
|
|
37
37
|
* A -> B -> C -> N.
|
38
38
|
* A -> E -> N.
|
39
39
|
* B -> F -> G.
|
40
|
-
* given source: A, targets: N. The results will be: B, C, E
|
40
|
+
* given source: A, targets: N. The results will be: [B, C, E].
|
41
|
+
*
|
42
|
+
* if through is provided, it will only return the components that are connected to the through components.
|
43
|
+
* with the example above, if through is B, the results will be: [B, C].
|
41
44
|
*/
|
42
|
-
findIdsFromSourcesToTargets(sources, targets) {
|
45
|
+
findIdsFromSourcesToTargets(sources, targets, through) {
|
43
46
|
const removeVerFromIdStr = idStr => idStr.split('@')[0];
|
44
47
|
const sourcesStr = sources.map(s => s.toStringWithoutVersion());
|
45
48
|
const targetsStr = targets.map(t => t.toStringWithoutVersion());
|
@@ -54,7 +57,17 @@ class ComponentIdGraph extends _graph().Graph {
|
|
54
57
|
if (allSuccessorsWithNoVersion.find(s => targetsStr.includes(s))) results.push(id);
|
55
58
|
});
|
56
59
|
const componentIds = this.getNodes(results).map(n => n.attr);
|
57
|
-
|
60
|
+
if (!through?.length) {
|
61
|
+
return componentIds;
|
62
|
+
}
|
63
|
+
const resultsWithThrough = [];
|
64
|
+
const throughStr = through.map(t => t.toStringWithoutVersion());
|
65
|
+
componentIds.forEach(id => {
|
66
|
+
const allGraph = this.subgraph(id.toString()).nodes.map(n => n.id); // successors and predecessors
|
67
|
+
const allGraphWithNoVersion = allGraph.map(s => removeVerFromIdStr(s));
|
68
|
+
if (throughStr.every(t => allGraphWithNoVersion.includes(t))) resultsWithThrough.push(id);
|
69
|
+
});
|
70
|
+
return resultsWithThrough;
|
58
71
|
}
|
59
72
|
|
60
73
|
/**
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_graph","data","require","_lodash","_defineProperty","obj","key","value","_toPropertyKey","Object","defineProperty","enumerable","configurable","writable","t","i","_toPrimitive","String","r","e","Symbol","toPrimitive","call","TypeError","Number","ComponentIdGraph","Graph","constructor","nodes","edges","create","findIdsFromSourcesToTargets","sources","targets","removeVerFromIdStr","idStr","split","sourcesStr","map","s","toStringWithoutVersion","targetsStr","allFlattened","source","successors","toString","flat","allFlattenedIds","uniq","f","id","results","forEach","idWithNoVer","includes","allSuccessors","allSuccessorsWithNoVersion","find","push","componentIds","getNodes","n","attr","findCycles","graph","includeDeps","cycles","shouldLimitToSeedersOnly","seederIdsStr","seederIds","cyclesWithSeeders","filter","cycle","some","cycleIdStr","buildFromCleargraph","runtimeOnly","successorsSubgraph","edgeFilter","edge","
|
1
|
+
{"version":3,"names":["_graph","data","require","_lodash","_defineProperty","obj","key","value","_toPropertyKey","Object","defineProperty","enumerable","configurable","writable","t","i","_toPrimitive","String","r","e","Symbol","toPrimitive","call","TypeError","Number","ComponentIdGraph","Graph","constructor","nodes","edges","create","findIdsFromSourcesToTargets","sources","targets","through","removeVerFromIdStr","idStr","split","sourcesStr","map","s","toStringWithoutVersion","targetsStr","allFlattened","source","successors","toString","flat","allFlattenedIds","uniq","f","id","results","forEach","idWithNoVer","includes","allSuccessors","allSuccessorsWithNoVersion","find","push","componentIds","getNodes","n","attr","length","resultsWithThrough","throughStr","allGraph","subgraph","allGraphWithNoVersion","every","findCycles","graph","includeDeps","cycles","shouldLimitToSeedersOnly","seederIdsStr","seederIds","cyclesWithSeeders","filter","cycle","some","cycleIdStr","buildFromCleargraph","runtimeOnly","successorsSubgraph","edgeFilter","edge","exports"],"sources":["component-id-graph.ts"],"sourcesContent":["import { ComponentID } from '@teambit/component';\nimport { Graph, Node, Edge } from '@teambit/graph.cleargraph';\nimport { uniq } from 'lodash';\n\nexport type DepEdgeType = 'prod' | 'dev' | 'ext';\n\ntype ComponentIdNode = Node<ComponentID>;\ntype DependencyEdge = Edge<DepEdgeType>;\nexport type CompIdGraph = Graph<ComponentID, DepEdgeType>;\n\nexport class ComponentIdGraph extends Graph<ComponentID, DepEdgeType> {\n seederIds: ComponentID[] = []; // component IDs that started the graph. (if from workspace, the .bitmap ids normally)\n constructor(nodes: ComponentIdNode[] = [], edges: DependencyEdge[] = []) {\n super(nodes, edges);\n }\n\n protected create(nodes: ComponentIdNode[] = [], edges: DependencyEdge[] = []): this {\n return new ComponentIdGraph(nodes, edges) as this;\n }\n\n /**\n * check all the routes from the sources to targets and return the components found during this traversal.\n * e.g.\n * A -> B -> C -> N.\n * A -> E -> N.\n * B -> F -> G.\n * given source: A, targets: N. The results will be: [B, C, E].\n *\n * if through is provided, it will only return the components that are connected to the through components.\n * with the example above, if through is B, the results will be: [B, C].\n */\n findIdsFromSourcesToTargets(sources: ComponentID[], targets: ComponentID[], through?: ComponentID[]): ComponentID[] {\n const removeVerFromIdStr = (idStr: string) => idStr.split('@')[0];\n const sourcesStr = sources.map((s) => s.toStringWithoutVersion());\n const targetsStr = targets.map((t) => t.toStringWithoutVersion());\n const allFlattened = sources.map((source) => this.successors(source.toString())).flat();\n const allFlattenedIds = uniq(allFlattened.map((f) => f.id));\n const results: string[] = [];\n allFlattenedIds.forEach((id) => {\n const idWithNoVer = removeVerFromIdStr(id);\n if (sourcesStr.includes(idWithNoVer) || targetsStr.includes(idWithNoVer)) return;\n const allSuccessors = this.successors(id);\n const allSuccessorsWithNoVersion = allSuccessors.map((s) => removeVerFromIdStr(s.id));\n if (allSuccessorsWithNoVersion.find((s) => targetsStr.includes(s))) results.push(id);\n });\n const componentIds = this.getNodes(results).map((n) => n.attr);\n\n if (!through?.length) {\n return componentIds;\n }\n\n const resultsWithThrough: ComponentID[] = [];\n const throughStr = through.map((t) => t.toStringWithoutVersion());\n componentIds.forEach((id) => {\n const allGraph = this.subgraph(id.toString()).nodes.map((n) => n.id); // successors and predecessors\n const allGraphWithNoVersion = allGraph.map((s) => removeVerFromIdStr(s));\n if (throughStr.every((t) => allGraphWithNoVersion.includes(t))) resultsWithThrough.push(id);\n });\n\n return resultsWithThrough;\n }\n\n /**\n * overrides the super class to eliminate non-seeders components\n */\n findCycles(graph?: this, includeDeps = false): string[][] {\n const cycles = super.findCycles(graph);\n if (!this.shouldLimitToSeedersOnly() || includeDeps) {\n return cycles;\n }\n const seederIdsStr = this.seederIds.map((id) => id.toString());\n const cyclesWithSeeders = cycles.filter((cycle) => {\n return cycle.some((cycleIdStr) => seederIdsStr.includes(cycleIdStr));\n });\n return cyclesWithSeeders;\n }\n\n buildFromCleargraph(graph: Graph<ComponentID, DepEdgeType>): ComponentIdGraph {\n return this.create(graph.nodes, graph.edges);\n }\n\n runtimeOnly(componentIds: string[]) {\n return this.successorsSubgraph(componentIds, {\n edgeFilter: (edge: DependencyEdge) => edge.attr === 'prod',\n });\n }\n\n private shouldLimitToSeedersOnly() {\n return this.seederIds.length;\n }\n}\n"],"mappings":"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"}
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.
|
2
|
-
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.
|
1
|
+
import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.152/dist/graph.composition.js';
|
2
|
+
import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.152/dist/graph.docs.md';
|
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/graph",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.152",
|
4
4
|
"homepage": "https://bit.cloud/teambit/component/graph",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"componentId": {
|
7
7
|
"scope": "teambit.component",
|
8
8
|
"name": "graph",
|
9
|
-
"version": "1.0.
|
9
|
+
"version": "1.0.152"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"lodash": "4.17.21",
|
@@ -35,13 +35,13 @@
|
|
35
35
|
"@teambit/ui-foundation.ui.react-router.use-query": "0.0.501",
|
36
36
|
"@teambit/design.ui.round-loader": "0.0.355",
|
37
37
|
"@teambit/component.ui.component-compare.status-resolver": "0.0.9",
|
38
|
-
"@teambit/component": "1.0.
|
39
|
-
"@teambit/cli": "0.0.
|
38
|
+
"@teambit/component": "1.0.152",
|
39
|
+
"@teambit/cli": "0.0.850",
|
40
40
|
"@teambit/component.ui.component-compare.models.component-compare-props": "0.0.103",
|
41
|
-
"@teambit/graphql": "1.0.
|
42
|
-
"@teambit/logger": "0.0.
|
43
|
-
"@teambit/component-compare": "1.0.
|
44
|
-
"@teambit/ui": "1.0.
|
41
|
+
"@teambit/graphql": "1.0.152",
|
42
|
+
"@teambit/logger": "0.0.943",
|
43
|
+
"@teambit/component-compare": "1.0.152",
|
44
|
+
"@teambit/ui": "1.0.152",
|
45
45
|
"@teambit/component.modules.component-url": "0.0.167",
|
46
46
|
"@teambit/envs.ui.env-icon": "0.0.505",
|
47
47
|
"@teambit/component.ui.component-compare.context": "0.0.118"
|