@teambit/graph 1.0.667 → 1.0.669
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/component-graph/component-graph.ts +6 -4
- package/dist/component-graph/component-graph.d.ts +4 -3
- package/dist/component-graph/component-graph.js.map +1 -1
- package/dist/component-id-graph.d.ts +2 -1
- package/dist/component-id-graph.js.map +1 -1
- package/dist/graph-builder.d.ts +1 -1
- package/dist/graph-builder.js.map +1 -1
- package/dist/graph-cmd.d.ts +3 -3
- package/dist/graph-cmd.js.map +1 -1
- package/dist/graph.compare.section.d.ts +1 -1
- package/dist/graph.compare.section.js.map +1 -1
- package/dist/graph.graphql.d.ts +3 -3
- package/dist/graph.graphql.js.map +1 -1
- package/dist/graph.main.runtime.d.ts +8 -8
- package/dist/graph.main.runtime.js.map +1 -1
- package/dist/graph.ui.runtime.d.ts +4 -4
- package/dist/graph.ui.runtime.js.map +1 -1
- package/dist/{preview-1753809186996.js → preview-1753848836384.js} +2 -2
- package/dist/ui/component-node/component-node.d.ts +2 -2
- package/dist/ui/component-node/component-node.js.map +1 -1
- package/dist/ui/dependencies-compare/compare-graph-model.d.ts +3 -2
- package/dist/ui/dependencies-compare/compare-graph-model.js.map +1 -1
- package/dist/ui/dependencies-compare/compare-node-model.d.ts +1 -1
- package/dist/ui/dependencies-compare/compare-node-model.js.map +1 -1
- package/dist/ui/dependencies-compare/dependencies-compare.js.map +1 -1
- package/dist/ui/dependencies-compare/dependency-compare-node.d.ts +1 -1
- package/dist/ui/dependencies-compare/dependency-compare-node.js.map +1 -1
- package/dist/ui/dependencies-compare/diff-graph.d.ts +2 -2
- package/dist/ui/dependencies-compare/diff-graph.js.map +1 -1
- package/dist/ui/dependencies-graph/calc-elements.d.ts +3 -3
- package/dist/ui/dependencies-graph/calc-elements.js.map +1 -1
- package/dist/ui/dependencies-graph/calc-layout.d.ts +1 -1
- package/dist/ui/dependencies-graph/calc-layout.js.map +1 -1
- package/dist/ui/dependencies-graph/dependencies-graph.d.ts +4 -4
- package/dist/ui/dependencies-graph/dependencies-graph.js.map +1 -1
- package/dist/ui/dependencies-graph/graph-context.d.ts +1 -1
- package/dist/ui/dependencies-graph/graph-context.js.map +1 -1
- package/dist/ui/dependencies-graph/minimap.d.ts +1 -1
- package/dist/ui/dependencies-graph/minimap.js.map +1 -1
- package/dist/ui/graph-page/graph-filters.d.ts +1 -1
- package/dist/ui/graph-page/graph-filters.js.map +1 -1
- package/dist/ui/graph-page/graph-page.d.ts +1 -1
- package/dist/ui/graph-page/graph-page.js.map +1 -1
- package/dist/ui/graph.section.d.ts +2 -2
- package/dist/ui/graph.section.js.map +1 -1
- package/dist/ui/query/edge-model.d.ts +2 -2
- package/dist/ui/query/edge-model.js.map +1 -1
- package/dist/ui/query/get-graph.query.d.ts +1 -1
- package/dist/ui/query/get-graph.query.js.map +1 -1
- package/dist/ui/query/graph-model.d.ts +1 -1
- package/dist/ui/query/graph-model.js.map +1 -1
- package/dist/ui/query/node-model.d.ts +1 -1
- package/dist/ui/query/node-model.js.map +1 -1
- package/dist/ui/query/use-graph-query.js.map +1 -1
- package/graph.compare.section.tsx +1 -1
- package/graph.ui.runtime.tsx +7 -4
- package/package.json +14 -14
- package/ui/component-node/component-node.tsx +4 -3
- package/ui/dependencies-compare/compare-graph-model.ts +3 -2
- package/ui/dependencies-compare/compare-node-model.ts +1 -1
- package/ui/dependencies-compare/dependencies-compare.tsx +3 -12
- package/ui/dependencies-compare/dependency-compare-node.tsx +1 -1
- package/ui/dependencies-compare/diff-graph.ts +3 -3
- package/ui/dependencies-graph/calc-elements.tsx +4 -3
- package/ui/dependencies-graph/calc-layout.tsx +1 -1
- package/ui/dependencies-graph/dependencies-graph.tsx +4 -7
- package/ui/dependencies-graph/graph-context.ts +1 -1
- package/ui/dependencies-graph/minimap.ts +1 -1
- package/ui/graph-page/graph-filters.tsx +2 -1
- package/ui/graph-page/graph-page.tsx +1 -1
- package/ui/graph.section.tsx +2 -2
- package/ui/query/edge-model.ts +2 -2
- package/ui/query/get-graph.query.ts +1 -1
- package/ui/query/graph-model.ts +1 -1
- package/ui/query/node-model.ts +1 -1
- package/ui/query/use-graph-query.ts +2 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_component","data","require","_defineProperty","e","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","NodeModel","constructor","from","rawNode","node","id","component","ComponentModel","undefined","componentId","ComponentID","fromString","exports"],"sources":["node-model.ts"],"sourcesContent":["import { ComponentID, ComponentModel } from '@teambit/component';\nimport { RawNode } from './get-graph.query';\n\nexport class NodeModel {\n id: string;\n component?: ComponentModel;\n componentId: ComponentID;\n\n static from(rawNode: RawNode) {\n const node = new NodeModel();\n node.id = rawNode.id;\n // @TODO - component model should not expect all fields to have values\n // @ts-ignore\n node.component = rawNode.component ? ComponentModel.from(rawNode.component) : undefined;\n node.componentId = node.component ? node.component.id : ComponentID.fromString(rawNode.id);\n return node;\n }\n}\n"],"mappings":";;;;;;AAAA,SAAAA,WAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,UAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAAiE,SAAAE,gBAAAC,CAAA,EAAAC,CAAA,EAAAC,CAAA,YAAAD,CAAA,GAAAE,cAAA,CAAAF,CAAA,MAAAD,CAAA,GAAAI,MAAA,CAAAC,cAAA,CAAAL,CAAA,EAAAC,CAAA,IAAAK,KAAA,EAAAJ,CAAA,EAAAK,UAAA,MAAAC,YAAA,MAAAC,QAAA,UAAAT,CAAA,CAAAC,CAAA,IAAAC,CAAA,EAAAF,CAAA;AAAA,SAAAG,eAAAD,CAAA,QAAAQ,CAAA,GAAAC,YAAA,CAAAT,CAAA,uCAAAQ,CAAA,GAAAA,CAAA,GAAAA,CAAA;AAAA,SAAAC,aAAAT,CAAA,EAAAD,CAAA,2BAAAC,CAAA,KAAAA,CAAA,SAAAA,CAAA,MAAAF,CAAA,GAAAE,CAAA,CAAAU,MAAA,CAAAC,WAAA,kBAAAb,CAAA,QAAAU,CAAA,GAAAV,CAAA,CAAAc,IAAA,CAAAZ,CAAA,EAAAD,CAAA,uCAAAS,CAAA,SAAAA,CAAA,YAAAK,SAAA,yEAAAd,CAAA,GAAAe,MAAA,GAAAC,MAAA,EAAAf,CAAA;AAG1D,MAAMgB,SAAS,CAAC;EAAAC,YAAA;IAAApB,eAAA;IAAAA,eAAA;IAAAA,eAAA;EAAA;EAKrB,OAAOqB,IAAIA,CAACC,OAAgB,EAAE;IAC5B,MAAMC,IAAI,GAAG,IAAIJ,SAAS,CAAC,CAAC;IAC5BI,IAAI,CAACC,EAAE,GAAGF,OAAO,CAACE,EAAE;IACpB;IACA;IACAD,IAAI,CAACE,SAAS,GAAGH,OAAO,CAACG,SAAS,GAAGC,2BAAc,CAACL,IAAI,CAACC,OAAO,CAACG,SAAS,CAAC,GAAGE,SAAS;IACvFJ,IAAI,CAACK,WAAW,GAAGL,IAAI,CAACE,SAAS,GAAGF,IAAI,CAACE,SAAS,CAACD,EAAE,GAAGK,wBAAW,CAACC,UAAU,CAACR,OAAO,CAACE,EAAE,CAAC;IAC1F,OAAOD,IAAI;EACb;AACF;AAACQ,OAAA,CAAAZ,SAAA,GAAAA,SAAA","ignoreList":[]}
|
1
|
+
{"version":3,"names":["_component","data","require","_defineProperty","e","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","NodeModel","constructor","from","rawNode","node","id","component","ComponentModel","undefined","componentId","ComponentID","fromString","exports"],"sources":["node-model.ts"],"sourcesContent":["import { ComponentID, ComponentModel } from '@teambit/component';\nimport type { RawNode } from './get-graph.query';\n\nexport class NodeModel {\n id: string;\n component?: ComponentModel;\n componentId: ComponentID;\n\n static from(rawNode: RawNode) {\n const node = new NodeModel();\n node.id = rawNode.id;\n // @TODO - component model should not expect all fields to have values\n // @ts-ignore\n node.component = rawNode.component ? ComponentModel.from(rawNode.component) : undefined;\n node.componentId = node.component ? node.component.id : ComponentID.fromString(rawNode.id);\n return node;\n }\n}\n"],"mappings":";;;;;;AAAA,SAAAA,WAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,UAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAAiE,SAAAE,gBAAAC,CAAA,EAAAC,CAAA,EAAAC,CAAA,YAAAD,CAAA,GAAAE,cAAA,CAAAF,CAAA,MAAAD,CAAA,GAAAI,MAAA,CAAAC,cAAA,CAAAL,CAAA,EAAAC,CAAA,IAAAK,KAAA,EAAAJ,CAAA,EAAAK,UAAA,MAAAC,YAAA,MAAAC,QAAA,UAAAT,CAAA,CAAAC,CAAA,IAAAC,CAAA,EAAAF,CAAA;AAAA,SAAAG,eAAAD,CAAA,QAAAQ,CAAA,GAAAC,YAAA,CAAAT,CAAA,uCAAAQ,CAAA,GAAAA,CAAA,GAAAA,CAAA;AAAA,SAAAC,aAAAT,CAAA,EAAAD,CAAA,2BAAAC,CAAA,KAAAA,CAAA,SAAAA,CAAA,MAAAF,CAAA,GAAAE,CAAA,CAAAU,MAAA,CAAAC,WAAA,kBAAAb,CAAA,QAAAU,CAAA,GAAAV,CAAA,CAAAc,IAAA,CAAAZ,CAAA,EAAAD,CAAA,uCAAAS,CAAA,SAAAA,CAAA,YAAAK,SAAA,yEAAAd,CAAA,GAAAe,MAAA,GAAAC,MAAA,EAAAf,CAAA;AAG1D,MAAMgB,SAAS,CAAC;EAAAC,YAAA;IAAApB,eAAA;IAAAA,eAAA;IAAAA,eAAA;EAAA;EAKrB,OAAOqB,IAAIA,CAACC,OAAgB,EAAE;IAC5B,MAAMC,IAAI,GAAG,IAAIJ,SAAS,CAAC,CAAC;IAC5BI,IAAI,CAACC,EAAE,GAAGF,OAAO,CAACE,EAAE;IACpB;IACA;IACAD,IAAI,CAACE,SAAS,GAAGH,OAAO,CAACG,SAAS,GAAGC,2BAAc,CAACL,IAAI,CAACC,OAAO,CAACG,SAAS,CAAC,GAAGE,SAAS;IACvFJ,IAAI,CAACK,WAAW,GAAGL,IAAI,CAACE,SAAS,GAAGF,IAAI,CAACE,SAAS,CAACD,EAAE,GAAGK,wBAAW,CAACC,UAAU,CAACR,OAAO,CAACE,EAAE,CAAC;IAC1F,OAAOD,IAAI;EACb;AACF;AAACQ,OAAA,CAAAZ,SAAA,GAAAA,SAAA","ignoreList":[]}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_react","data","require","_client","_graphql","_getGraph","_graphModel","useGraphQuery","componentId","filter","idsData","error","idsError","loading","idsLoading","useQuery","GET_GRAPH_IDS","variables","ids","skip","getGraph","graphData","graphError","graphLoading","useLazyQuery","GET_GRAPH","fetchError","setFetchError","useState","undefined","shouldRefetchGraph","setShouldRefetchGraph","useEffect","graph","nodes","length","catch","GraphQlError","message","rawGraph","clientError","serverError","useMemo","GraphModel","from"],"sources":["use-graph-query.ts"],"sourcesContent":["import { useMemo, useEffect, useState } from 'react';\nimport { useQuery, useLazyQuery } from '@apollo/client';\nimport { GraphQlError } from '@teambit/graphql';\nimport { GET_GRAPH,
|
1
|
+
{"version":3,"names":["_react","data","require","_client","_graphql","_getGraph","_graphModel","useGraphQuery","componentId","filter","idsData","error","idsError","loading","idsLoading","useQuery","GET_GRAPH_IDS","variables","ids","skip","getGraph","graphData","graphError","graphLoading","useLazyQuery","GET_GRAPH","fetchError","setFetchError","useState","undefined","shouldRefetchGraph","setShouldRefetchGraph","useEffect","graph","nodes","length","catch","GraphQlError","message","rawGraph","clientError","serverError","useMemo","GraphModel","from"],"sources":["use-graph-query.ts"],"sourcesContent":["import { useMemo, useEffect, useState } from 'react';\nimport { useQuery, useLazyQuery } from '@apollo/client';\nimport { GraphQlError } from '@teambit/graphql';\nimport type { RawGraphQuery } from './get-graph.query';\nimport { GET_GRAPH, GET_GRAPH_IDS } from './get-graph.query';\nimport { GraphModel } from './graph-model';\n\ntype QueryVariables = {\n ids?: string[];\n filter?: string;\n};\n\nexport function useGraphQuery(componentId?: string[], filter?: string) {\n // Eagerly fetch GET_GRAPH_IDS\n const {\n data: idsData,\n error: idsError,\n loading: idsLoading,\n } = useQuery<RawGraphQuery, QueryVariables>(GET_GRAPH_IDS, {\n variables: { ids: componentId, filter },\n skip: !componentId || !filter,\n });\n\n // Lazily fetch GET_GRAPH\n const [getGraph, { data: graphData, error: graphError, loading: graphLoading }] = useLazyQuery<\n RawGraphQuery,\n QueryVariables\n >(GET_GRAPH);\n\n const [fetchError, setFetchError] = useState<GraphQlError | undefined>(undefined);\n\n const [shouldRefetchGraph, setShouldRefetchGraph] = useState(false);\n\n useEffect(() => {\n if (idsData?.graph.nodes.length || !filter) {\n setShouldRefetchGraph(true);\n }\n }, [idsData?.graph.nodes.length, filter]);\n\n useEffect(() => {\n if (shouldRefetchGraph) {\n setShouldRefetchGraph(false);\n void getGraph({ variables: { ids: componentId, filter } }).catch((error) => {\n setFetchError(new GraphQlError(500, error.message));\n });\n }\n }, [componentId, filter, getGraph, shouldRefetchGraph]);\n\n const rawGraph = idsLoading\n ? undefined\n : (idsData?.graph &&\n graphData?.graph &&\n idsData?.graph.nodes.length === graphData?.graph.nodes.length &&\n graphData?.graph) ||\n idsData?.graph ||\n graphData?.graph;\n\n const clientError = !rawGraph && !idsLoading && !graphLoading ? new GraphQlError(404) : undefined;\n const serverError =\n graphError?.message || idsError?.message\n ? new GraphQlError(500, graphError?.message || idsError?.message)\n : fetchError;\n\n return useMemo(() => {\n return {\n graph: rawGraph ? GraphModel.from(rawGraph) : undefined,\n error: serverError || clientError,\n loading: idsLoading || graphLoading,\n idsLoading,\n graphLoading,\n };\n }, [rawGraph, serverError, clientError, idsLoading, graphLoading]);\n}\n"],"mappings":";;;;;;AAAA,SAAAA,OAAA;EAAA,MAAAC,IAAA,GAAAC,OAAA;EAAAF,MAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAE,QAAA;EAAA,MAAAF,IAAA,GAAAC,OAAA;EAAAC,OAAA,YAAAA,CAAA;IAAA,OAAAF,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAG,SAAA;EAAA,MAAAH,IAAA,GAAAC,OAAA;EAAAE,QAAA,YAAAA,CAAA;IAAA,OAAAH,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAEA,SAAAI,UAAA;EAAA,MAAAJ,IAAA,GAAAC,OAAA;EAAAG,SAAA,YAAAA,CAAA;IAAA,OAAAJ,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AACA,SAAAK,YAAA;EAAA,MAAAL,IAAA,GAAAC,OAAA;EAAAI,WAAA,YAAAA,CAAA;IAAA,OAAAL,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAOO,SAASM,aAAaA,CAACC,WAAsB,EAAEC,MAAe,EAAE;EACrE;EACA,MAAM;IACJR,IAAI,EAAES,OAAO;IACbC,KAAK,EAAEC,QAAQ;IACfC,OAAO,EAAEC;EACX,CAAC,GAAG,IAAAC,kBAAQ,EAAgCC,yBAAa,EAAE;IACzDC,SAAS,EAAE;MAAEC,GAAG,EAAEV,WAAW;MAAEC;IAAO,CAAC;IACvCU,IAAI,EAAE,CAACX,WAAW,IAAI,CAACC;EACzB,CAAC,CAAC;;EAEF;EACA,MAAM,CAACW,QAAQ,EAAE;IAAEnB,IAAI,EAAEoB,SAAS;IAAEV,KAAK,EAAEW,UAAU;IAAET,OAAO,EAAEU;EAAa,CAAC,CAAC,GAAG,IAAAC,sBAAY,EAG5FC,qBAAS,CAAC;EAEZ,MAAM,CAACC,UAAU,EAAEC,aAAa,CAAC,GAAG,IAAAC,iBAAQ,EAA2BC,SAAS,CAAC;EAEjF,MAAM,CAACC,kBAAkB,EAAEC,qBAAqB,CAAC,GAAG,IAAAH,iBAAQ,EAAC,KAAK,CAAC;EAEnE,IAAAI,kBAAS,EAAC,MAAM;IACd,IAAItB,OAAO,EAAEuB,KAAK,CAACC,KAAK,CAACC,MAAM,IAAI,CAAC1B,MAAM,EAAE;MAC1CsB,qBAAqB,CAAC,IAAI,CAAC;IAC7B;EACF,CAAC,EAAE,CAACrB,OAAO,EAAEuB,KAAK,CAACC,KAAK,CAACC,MAAM,EAAE1B,MAAM,CAAC,CAAC;EAEzC,IAAAuB,kBAAS,EAAC,MAAM;IACd,IAAIF,kBAAkB,EAAE;MACtBC,qBAAqB,CAAC,KAAK,CAAC;MAC5B,KAAKX,QAAQ,CAAC;QAAEH,SAAS,EAAE;UAAEC,GAAG,EAAEV,WAAW;UAAEC;QAAO;MAAE,CAAC,CAAC,CAAC2B,KAAK,CAAEzB,KAAK,IAAK;QAC1EgB,aAAa,CAAC,KAAIU,uBAAY,EAAC,GAAG,EAAE1B,KAAK,CAAC2B,OAAO,CAAC,CAAC;MACrD,CAAC,CAAC;IACJ;EACF,CAAC,EAAE,CAAC9B,WAAW,EAAEC,MAAM,EAAEW,QAAQ,EAAEU,kBAAkB,CAAC,CAAC;EAEvD,MAAMS,QAAQ,GAAGzB,UAAU,GACvBe,SAAS,GACRnB,OAAO,EAAEuB,KAAK,IACbZ,SAAS,EAAEY,KAAK,IAChBvB,OAAO,EAAEuB,KAAK,CAACC,KAAK,CAACC,MAAM,KAAKd,SAAS,EAAEY,KAAK,CAACC,KAAK,CAACC,MAAM,IAC7Dd,SAAS,EAAEY,KAAK,IAClBvB,OAAO,EAAEuB,KAAK,IACdZ,SAAS,EAAEY,KAAK;EAEpB,MAAMO,WAAW,GAAG,CAACD,QAAQ,IAAI,CAACzB,UAAU,IAAI,CAACS,YAAY,GAAG,KAAIc,uBAAY,EAAC,GAAG,CAAC,GAAGR,SAAS;EACjG,MAAMY,WAAW,GACfnB,UAAU,EAAEgB,OAAO,IAAI1B,QAAQ,EAAE0B,OAAO,GACpC,KAAID,uBAAY,EAAC,GAAG,EAAEf,UAAU,EAAEgB,OAAO,IAAI1B,QAAQ,EAAE0B,OAAO,CAAC,GAC/DZ,UAAU;EAEhB,OAAO,IAAAgB,gBAAO,EAAC,MAAM;IACnB,OAAO;MACLT,KAAK,EAAEM,QAAQ,GAAGI,wBAAU,CAACC,IAAI,CAACL,QAAQ,CAAC,GAAGV,SAAS;MACvDlB,KAAK,EAAE8B,WAAW,IAAID,WAAW;MACjC3B,OAAO,EAAEC,UAAU,IAAIS,YAAY;MACnCT,UAAU;MACVS;IACF,CAAC;EACH,CAAC,EAAE,CAACgB,QAAQ,EAAEE,WAAW,EAAED,WAAW,EAAE1B,UAAU,EAAES,YAAY,CAAC,CAAC;AACpE","ignoreList":[]}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import { Section } from '@teambit/component';
|
2
|
+
import type { Section } from '@teambit/component';
|
3
3
|
import { ChangeType } from '@teambit/component.ui.component-compare.models.component-compare-change-type';
|
4
4
|
import type { TabItem } from '@teambit/component.ui.component-compare.models.component-compare-props';
|
5
5
|
import { DependenciesCompare } from './ui/dependencies-compare';
|
package/graph.ui.runtime.tsx
CHANGED
@@ -1,8 +1,11 @@
|
|
1
|
-
import { ComponentType } from 'react';
|
1
|
+
import type { ComponentType } from 'react';
|
2
2
|
import { UIRuntime } from '@teambit/ui';
|
3
|
-
import {
|
4
|
-
import {
|
5
|
-
import {
|
3
|
+
import type { SlotRegistry } from '@teambit/harmony';
|
4
|
+
import { Slot } from '@teambit/harmony';
|
5
|
+
import type { ComponentCompareUI } from '@teambit/component-compare';
|
6
|
+
import { ComponentCompareAspect } from '@teambit/component-compare';
|
7
|
+
import type { ComponentUI, ComponentModel } from '@teambit/component';
|
8
|
+
import { ComponentAspect } from '@teambit/component';
|
6
9
|
import { GraphAspect } from './graph.aspect';
|
7
10
|
import { GraphSection } from './ui/graph.section';
|
8
11
|
import { GraphCompareSection } from './graph.compare.section';
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@teambit/graph",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.669",
|
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.669"
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
12
|
"graphlib": "2.1.8",
|
@@ -15,22 +15,22 @@
|
|
15
15
|
"graphql-tag": "2.12.1",
|
16
16
|
"classnames": "2.2.6",
|
17
17
|
"reactflow": "^11.11.3",
|
18
|
-
"@dagrejs/dagre": "^1.1.2",
|
19
18
|
"semver": "7.7.1",
|
19
|
+
"@dagrejs/dagre": "^1.1.2",
|
20
20
|
"@teambit/component-id": "1.2.4",
|
21
21
|
"@teambit/graph.cleargraph": "0.0.11",
|
22
|
-
"@teambit/legacy.dependency-graph": "0.0.
|
23
|
-
"@teambit/scope.remotes": "0.0.
|
22
|
+
"@teambit/legacy.dependency-graph": "0.0.61",
|
23
|
+
"@teambit/scope.remotes": "0.0.58",
|
24
24
|
"@teambit/harmony": "0.4.7",
|
25
25
|
"@teambit/component.ui.component-compare.models.component-compare-change-type": "0.0.7",
|
26
26
|
"@teambit/component.ui.component-compare.models.component-compare-props": "0.0.121",
|
27
27
|
"@teambit/base-ui.routing.nav-link": "1.0.4",
|
28
28
|
"@teambit/base-ui.surfaces.card": "1.0.1",
|
29
29
|
"@teambit/base-ui.text.muted-text": "1.0.1",
|
30
|
-
"@teambit/component.modules.component-url": "0.0.
|
30
|
+
"@teambit/component.modules.component-url": "0.0.178",
|
31
31
|
"@teambit/component.ui.deprecation-icon": "0.0.509",
|
32
32
|
"@teambit/design.ui.styles.ellipsis": "0.0.357",
|
33
|
-
"@teambit/envs.ui.env-icon": "0.0.
|
33
|
+
"@teambit/envs.ui.env-icon": "0.0.507",
|
34
34
|
"@teambit/component.ui.component-compare.context": "0.0.123",
|
35
35
|
"@teambit/design.ui.round-loader": "0.0.355",
|
36
36
|
"@teambit/component.ui.component-compare.status-resolver": "0.0.9",
|
@@ -39,13 +39,13 @@
|
|
39
39
|
"@teambit/design.ui.pages.not-found": "0.0.371",
|
40
40
|
"@teambit/design.ui.pages.server-error": "0.0.368",
|
41
41
|
"@teambit/ui-foundation.ui.react-router.use-query": "0.0.505",
|
42
|
-
"@teambit/component": "1.0.
|
43
|
-
"@teambit/cli": "0.0.
|
44
|
-
"@teambit/workspace": "1.0.
|
45
|
-
"@teambit/graphql": "1.0.
|
46
|
-
"@teambit/logger": "0.0.
|
47
|
-
"@teambit/component-compare": "1.0.
|
48
|
-
"@teambit/ui": "1.0.
|
42
|
+
"@teambit/component": "1.0.669",
|
43
|
+
"@teambit/cli": "0.0.1246",
|
44
|
+
"@teambit/workspace": "1.0.669",
|
45
|
+
"@teambit/graphql": "1.0.669",
|
46
|
+
"@teambit/logger": "0.0.1339",
|
47
|
+
"@teambit/component-compare": "1.0.669",
|
48
|
+
"@teambit/ui": "1.0.669"
|
49
49
|
},
|
50
50
|
"devDependencies": {
|
51
51
|
"@types/graphlib": "2.1.7",
|
@@ -1,14 +1,15 @@
|
|
1
1
|
import React, { useContext } from 'react';
|
2
2
|
import classnames from 'classnames';
|
3
3
|
import { mutedText } from '@teambit/base-ui.text.muted-text';
|
4
|
-
import { ComponentID } from '@teambit/component';
|
4
|
+
import type { ComponentID } from '@teambit/component';
|
5
5
|
import { DeprecationIcon } from '@teambit/component.ui.deprecation-icon';
|
6
6
|
import { EnvIcon } from '@teambit/envs.ui.env-icon';
|
7
7
|
import { ellipsis } from '@teambit/design.ui.styles.ellipsis';
|
8
|
-
import {
|
8
|
+
import type { CardProps } from '@teambit/base-ui.surfaces.card';
|
9
|
+
import { Card } from '@teambit/base-ui.surfaces.card';
|
9
10
|
import { NavLink } from '@teambit/base-ui.routing.nav-link';
|
10
11
|
import { ComponentUrl } from '@teambit/component.modules.component-url';
|
11
|
-
import { NodeModel } from '../query/node-model';
|
12
|
+
import type { NodeModel } from '../query/node-model';
|
12
13
|
import { ComponentGraphContext } from '../dependencies-graph/';
|
13
14
|
|
14
15
|
// keep order: styles, then variants
|
@@ -1,5 +1,6 @@
|
|
1
|
-
import { EdgeModel
|
2
|
-
import {
|
1
|
+
import type { EdgeModel } from '../query';
|
2
|
+
import { GraphModel } from '../query';
|
3
|
+
import type { CompareNodeModel } from './compare-node-model';
|
3
4
|
|
4
5
|
export class CompareGraphModel extends GraphModel<CompareNodeModel, EdgeModel> {
|
5
6
|
constructor(
|
@@ -2,19 +2,10 @@ import classNames from 'classnames';
|
|
2
2
|
import { RoundLoader } from '@teambit/design.ui.round-loader';
|
3
3
|
import { useComponentCompare } from '@teambit/component.ui.component-compare.context';
|
4
4
|
import React, { useEffect, useRef, useState, useCallback } from 'react';
|
5
|
-
import
|
6
|
-
|
7
|
-
Controls,
|
8
|
-
Handle,
|
9
|
-
MiniMap,
|
10
|
-
NodeProps,
|
11
|
-
NodeTypes,
|
12
|
-
Position,
|
13
|
-
ReactFlowProvider,
|
14
|
-
ReactFlowInstance,
|
15
|
-
} from 'reactflow';
|
5
|
+
import type { NodeProps, NodeTypes, ReactFlowInstance } from 'reactflow';
|
6
|
+
import ReactFlow, { Background, Controls, Handle, MiniMap, Position, ReactFlowProvider } from 'reactflow';
|
16
7
|
import { useGraphQuery } from '../query';
|
17
|
-
import { GraphFilter } from '../../model/graph-filters';
|
8
|
+
import type { GraphFilter } from '../../model/graph-filters';
|
18
9
|
import { GraphFilters, styles as graphPageStyles } from '../graph-page';
|
19
10
|
import { calcMinimapColors, calcElements, styles as dependenciesGraphStyles } from '../dependencies-graph';
|
20
11
|
import styles from './dependencies-compare.module.scss';
|
@@ -12,7 +12,7 @@ import React, { useMemo } from 'react';
|
|
12
12
|
import { compare, valid } from 'semver';
|
13
13
|
import { defaultNode, external } from '../../ui/component-node/variants';
|
14
14
|
import { styles as componentNodeStyles } from '../../ui/component-node';
|
15
|
-
import { CompareNodeModel } from './compare-node-model';
|
15
|
+
import type { CompareNodeModel } from './compare-node-model';
|
16
16
|
import styles from './dependency-compare-node.module.scss';
|
17
17
|
import variants from './dependency-compare-variants.module.scss';
|
18
18
|
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import { ComponentID } from '@teambit/component';
|
2
|
-
import { EdgeModel, GraphModel, NodeModel } from '../query';
|
1
|
+
import type { ComponentID } from '@teambit/component';
|
2
|
+
import type { EdgeModel, GraphModel, NodeModel } from '../query';
|
3
3
|
import { CompareGraphModel } from './compare-graph-model';
|
4
|
-
import { CompareNodeModel } from './compare-node-model';
|
4
|
+
import type { CompareNodeModel } from './compare-node-model';
|
5
5
|
|
6
6
|
const toShortId = (node: NodeModel) => node.componentId.toStringWithoutVersion();
|
7
7
|
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import { useMemo } from 'react';
|
2
|
-
import {
|
3
|
-
import {
|
2
|
+
import type { Edge, Node } from 'reactflow';
|
3
|
+
import { MarkerType } from 'reactflow';
|
4
|
+
import type { ComponentID } from '@teambit/component';
|
4
5
|
import { calcLayout } from './calc-layout';
|
5
|
-
import { EdgeModel, GraphModel, NodeModel } from '../query';
|
6
|
+
import type { EdgeModel, GraphModel, NodeModel } from '../query';
|
6
7
|
|
7
8
|
import { depTypeToClass, depTypeToLabel } from './dep-edge';
|
8
9
|
|
@@ -1,22 +1,19 @@
|
|
1
1
|
import React, { useCallback, useMemo, useRef, useEffect } from 'react';
|
2
2
|
import classnames from 'classnames';
|
3
|
+
import type { NodeProps, NodeTypes, ReactFlowInstance, ReactFlowProps } from 'reactflow';
|
3
4
|
import ReactFlow, {
|
4
5
|
Background,
|
5
6
|
Controls,
|
6
7
|
Handle,
|
7
8
|
MiniMap,
|
8
|
-
NodeProps,
|
9
|
-
NodeTypes,
|
10
|
-
ReactFlowInstance,
|
11
9
|
Position,
|
12
|
-
ReactFlowProps,
|
13
10
|
ReactFlowProvider,
|
14
11
|
useNodesState,
|
15
12
|
} from 'reactflow';
|
16
|
-
import { ComponentID } from '@teambit/component';
|
17
|
-
import { ComponentWidgetSlot } from '../../graph.ui.runtime';
|
13
|
+
import type { ComponentID } from '@teambit/component';
|
14
|
+
import type { ComponentWidgetSlot } from '../../graph.ui.runtime';
|
18
15
|
import { ComponentNode } from '../component-node';
|
19
|
-
import { EdgeModel, GraphModel, NodeModel } from '../query';
|
16
|
+
import type { EdgeModel, GraphModel, NodeModel } from '../query';
|
20
17
|
import { calcElements } from './calc-elements';
|
21
18
|
import { calcMinimapColors } from './minimap';
|
22
19
|
import { ComponentGraphContext } from './graph-context';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { createContext } from 'react';
|
2
|
-
import { ComponentWidgetSlot } from '../../graph.ui.runtime';
|
2
|
+
import type { ComponentWidgetSlot } from '../../graph.ui.runtime';
|
3
3
|
|
4
4
|
/** internal context, to pass shared information to all nodes */
|
5
5
|
export type ComponentGraph = {
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import {
|
2
|
+
import type { CardProps } from '@teambit/base-ui.surfaces.card';
|
3
|
+
import { Card } from '@teambit/base-ui.surfaces.card';
|
3
4
|
import { CheckboxLabel } from '@teambit/evangelist.input.checkbox.label';
|
4
5
|
|
5
6
|
type GraphFiltersType = {
|
@@ -7,7 +7,7 @@ import classNames from 'classnames';
|
|
7
7
|
|
8
8
|
import { useGraphQuery } from '../query';
|
9
9
|
import { DependenciesGraph } from '../dependencies-graph';
|
10
|
-
import { ComponentWidgetSlot } from '../../graph.ui.runtime';
|
10
|
+
import type { ComponentWidgetSlot } from '../../graph.ui.runtime';
|
11
11
|
import type { GraphFilter } from '../../model/graph-filters';
|
12
12
|
|
13
13
|
import { GraphFilters } from './graph-filters';
|
package/ui/graph.section.tsx
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
import { Section } from '@teambit/component';
|
1
|
+
import type { Section } from '@teambit/component';
|
2
2
|
import React from 'react';
|
3
3
|
|
4
4
|
import { GraphPage } from './graph-page';
|
5
|
-
import { ComponentWidgetSlot } from '../graph.ui.runtime';
|
5
|
+
import type { ComponentWidgetSlot } from '../graph.ui.runtime';
|
6
6
|
|
7
7
|
export class GraphSection implements Section {
|
8
8
|
constructor(private componentWidgetSlot: ComponentWidgetSlot) {}
|
package/ui/query/edge-model.ts
CHANGED
package/ui/query/graph-model.ts
CHANGED
package/ui/query/node-model.ts
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
import { useMemo, useEffect, useState } from 'react';
|
2
2
|
import { useQuery, useLazyQuery } from '@apollo/client';
|
3
3
|
import { GraphQlError } from '@teambit/graphql';
|
4
|
-
import {
|
4
|
+
import type { RawGraphQuery } from './get-graph.query';
|
5
|
+
import { GET_GRAPH, GET_GRAPH_IDS } from './get-graph.query';
|
5
6
|
import { GraphModel } from './graph-model';
|
6
7
|
|
7
8
|
type QueryVariables = {
|