@teambit/graph 1.0.228 → 1.0.230

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.
Files changed (53) hide show
  1. package/artifacts/__bit_junit.xml +1 -1
  2. package/artifacts/preview/teambit_component_graph-preview.js +1 -1
  3. package/artifacts/schema.json +535 -126
  4. package/dist/component-graph/component-graph.d.ts +22 -0
  5. package/dist/component-graph/index.d.ts +1 -0
  6. package/dist/component-id-graph.d.ts +50 -0
  7. package/dist/duplicate-dependency.d.ts +11 -0
  8. package/dist/edge-type.d.ts +5 -0
  9. package/dist/graph-builder.d.ts +16 -0
  10. package/dist/graph-cmd.d.ts +24 -0
  11. package/dist/graph.aspect.d.ts +3 -0
  12. package/dist/graph.compare.section.d.ts +20 -0
  13. package/dist/graph.composition.d.ts +1 -0
  14. package/dist/graph.graphql.d.ts +4 -0
  15. package/dist/graph.main.runtime.d.ts +26 -0
  16. package/dist/graph.ui.runtime.d.ts +33 -0
  17. package/dist/index.d.ts +18 -0
  18. package/dist/model/dependency/dependency.d.ts +6 -0
  19. package/dist/model/dependency/index.d.ts +1 -0
  20. package/dist/model/graph-filters/graph-filters.d.ts +1 -0
  21. package/dist/model/graph-filters/index.d.ts +1 -0
  22. package/dist/object-list-to-graph.d.ts +13 -0
  23. package/dist/{preview-1712805335812.js → preview-1712891953391.js} +2 -2
  24. package/dist/ui/component-node/component-node.d.ts +7 -0
  25. package/dist/ui/component-node/index.d.ts +13 -0
  26. package/dist/ui/component-node/variants.d.ts +2 -0
  27. package/dist/ui/dependencies-compare/compare-graph-model.d.ts +7 -0
  28. package/dist/ui/dependencies-compare/compare-node-model.d.ts +9 -0
  29. package/dist/ui/dependencies-compare/dependencies-compare.d.ts +1 -0
  30. package/dist/ui/dependencies-compare/dependency-compare-node.d.ts +6 -0
  31. package/dist/ui/dependencies-compare/diff-graph.d.ts +4 -0
  32. package/dist/ui/dependencies-compare/index.d.ts +1 -0
  33. package/dist/ui/dependencies-graph/calc-elements.d.ts +11 -0
  34. package/dist/ui/dependencies-graph/calc-layout.d.ts +8 -0
  35. package/dist/ui/dependencies-graph/dep-edge/dep-edge.d.ts +3 -0
  36. package/dist/ui/dependencies-graph/dep-edge/index.d.ts +1 -0
  37. package/dist/ui/dependencies-graph/dependencies-graph.d.ts +11 -0
  38. package/dist/ui/dependencies-graph/graph-context.d.ts +7 -0
  39. package/dist/ui/dependencies-graph/index.d.ts +12 -0
  40. package/dist/ui/dependencies-graph/minimap.d.ts +2 -0
  41. package/dist/ui/graph-page/graph-filters.d.ts +8 -0
  42. package/dist/ui/graph-page/graph-page.d.ts +6 -0
  43. package/dist/ui/graph-page/index.d.ts +6 -0
  44. package/dist/ui/graph.section.d.ts +15 -0
  45. package/dist/ui/query/edge-model.d.ts +8 -0
  46. package/dist/ui/query/get-graph.query.d.ts +32 -0
  47. package/dist/ui/query/graph-model.d.ts +9 -0
  48. package/dist/ui/query/index.d.ts +6 -0
  49. package/dist/ui/query/node-model.d.ts +7 -0
  50. package/dist/ui/query/use-graph-query.d.ts +8 -0
  51. package/dist/ui/query/use-graph.d.ts +5 -0
  52. package/package.json +9 -9
  53. package/tsconfig.json +1 -22
@@ -0,0 +1,22 @@
1
+ import { Component, ComponentID } from '@teambit/component';
2
+ import { Graph, Node, Edge } from '@teambit/graph.cleargraph';
3
+ import { Dependency } from '../model/dependency';
4
+ import { DuplicateDependency } from '../duplicate-dependency';
5
+ export declare const DEPENDENCIES_TYPES: string[];
6
+ type ComponentNode = Node<Component>;
7
+ type DependencyEdge = Edge<Dependency>;
8
+ export declare class ComponentGraph extends Graph<Component, Dependency> {
9
+ seederIds: ComponentID[];
10
+ constructor(nodes?: ComponentNode[], edges?: DependencyEdge[]);
11
+ protected create(nodes?: ComponentNode[], edges?: DependencyEdge[]): this;
12
+ /**
13
+ * @deprecate use graph.getGraphIds().findCycles()
14
+ */
15
+ findCycles(graph?: this): string[][];
16
+ findDuplicateDependencies(): Map<string, DuplicateDependency>;
17
+ buildFromCleargraph(graph: Graph<Component, Dependency>): ComponentGraph;
18
+ runtimeOnly(componentIds: string[]): this;
19
+ private shouldLimitToSeedersOnly;
20
+ private calculateVersionMap;
21
+ }
22
+ export {};
@@ -0,0 +1 @@
1
+ export { ComponentGraph } from './component-graph';
@@ -0,0 +1,50 @@
1
+ /// <reference types="@teambit/legacy/node_modules/.pnpm/@types+graphlib@2.1.7/node_modules/@types/graphlib" />
2
+ import { ComponentID } from '@teambit/component-id';
3
+ import { Graph, Node, Edge } from '@teambit/graph.cleargraph';
4
+ import type { DependenciesInfo } from '@teambit/legacy/dist/scope/graph/scope-graph';
5
+ import GraphLib from 'graphlib';
6
+ export type DepEdgeType = 'prod' | 'dev' | 'ext' | 'peer';
7
+ type ComponentIdNode = Node<ComponentID>;
8
+ type DependencyEdge = Edge<DepEdgeType>;
9
+ export type CompIdGraph = Graph<ComponentID, DepEdgeType>;
10
+ export declare class ComponentIdGraph extends Graph<ComponentID, DepEdgeType> {
11
+ private _graphLib;
12
+ seederIds: ComponentID[];
13
+ constructor(nodes?: ComponentIdNode[], edges?: DependencyEdge[]);
14
+ get graphLib(): GraphLib.Graph;
15
+ protected create(nodes?: ComponentIdNode[], edges?: DependencyEdge[]): this;
16
+ /**
17
+ * check all the routes from the sources to targets and return the components found during this traversal.
18
+ * e.g.
19
+ * A -> B -> C -> N.
20
+ * A -> E -> N.
21
+ * B -> F -> G.
22
+ * given source: A, targets: N. The results will be: [B, C, E].
23
+ *
24
+ * if through is provided, it will only return the components that are connected to the through components.
25
+ * with the example above, if through is B, the results will be: [B, C].
26
+ */
27
+ findIdsFromSourcesToTargets(sources: ComponentID[], targets: ComponentID[], through?: ComponentID[]): ComponentID[];
28
+ /**
29
+ * check all the routes from the sources to targets and return the components found during this traversal.
30
+ * e.g.
31
+ * A -> B -> C -> N.
32
+ * A -> E -> N.
33
+ * B -> F -> G.
34
+ * given source: A, targets: N. The results will be: [B, C, E].
35
+ *
36
+ * if through is provided, it will only return the components that are connected to the through components.
37
+ * with the example above, if through is B, the results will be: [B, C].
38
+ */
39
+ findAllPathsFromSourcesToTargets(sources: ComponentID[], targets: ComponentID[], through?: ComponentID[]): string[][];
40
+ /**
41
+ * overrides the super class to eliminate non-seeders components
42
+ */
43
+ findCycles(graph?: this, includeDeps?: boolean): string[][];
44
+ buildFromCleargraph(graph: Graph<ComponentID, DepEdgeType>): ComponentIdGraph;
45
+ runtimeOnly(componentIds: string[]): this;
46
+ getDependenciesInfo(id: ComponentID): DependenciesInfo[];
47
+ getDependenciesAsObjectTree(idStr: string): Record<string, any>;
48
+ private shouldLimitToSeedersOnly;
49
+ }
50
+ export {};
@@ -0,0 +1,11 @@
1
+ import type { ComponentGraph } from './component-graph';
2
+ export declare class DuplicateDependency {
3
+ latestVersionId: string;
4
+ priorVersions: VersionSubgraph[];
5
+ constructor(latestVersionId: string, priorVersions: VersionSubgraph[]);
6
+ }
7
+ export type VersionSubgraph = {
8
+ versionId: string;
9
+ subGraph: ComponentGraph;
10
+ immediateDependents: string[];
11
+ };
@@ -0,0 +1,5 @@
1
+ export declare enum EdgeType {
2
+ dev = "DEV",
3
+ runtime = "RUNTIME",
4
+ peer = "PEER"
5
+ }
@@ -0,0 +1,16 @@
1
+ import { ComponentFactory, ComponentID, ComponentMain } from '@teambit/component';
2
+ import { ComponentGraph } from './component-graph';
3
+ import { ComponentIdGraph } from './component-id-graph';
4
+ export type GetGraphOpts = {
5
+ host?: ComponentFactory;
6
+ };
7
+ export declare class GraphBuilder {
8
+ private componentAspect;
9
+ constructor(componentAspect: ComponentMain);
10
+ /**
11
+ * important - prefer using `getGraphIds()` it's way better in terms of performance.
12
+ */
13
+ getGraph(ids?: ComponentID[], opts?: GetGraphOpts): Promise<ComponentGraph>;
14
+ getGraphIds(ids?: ComponentID[], opts?: GetGraphOpts): Promise<ComponentIdGraph>;
15
+ private toComponentGraph;
16
+ }
@@ -0,0 +1,24 @@
1
+ import { Command, CommandOptions } from '@teambit/cli';
2
+ import { ComponentMain } from '@teambit/component';
3
+ type GraphOpt = {
4
+ image?: string;
5
+ remote?: string;
6
+ allVersions?: boolean;
7
+ layout?: string;
8
+ json?: boolean;
9
+ };
10
+ export declare class GraphCmd implements Command {
11
+ private componentAspect;
12
+ name: string;
13
+ description: string;
14
+ extendedDescription: 'black arrow is a runtime dependency. red arrow is either dev or peer';
15
+ group: string;
16
+ alias: string;
17
+ options: CommandOptions;
18
+ remoteOp: boolean;
19
+ constructor(componentAspect: ComponentMain);
20
+ report([id]: [string], { remote, allVersions, layout, image }: GraphOpt): Promise<string>;
21
+ private generateGraph;
22
+ json([id]: [string], { remote, allVersions }: GraphOpt): Promise<Object>;
23
+ }
24
+ export {};
@@ -0,0 +1,3 @@
1
+ import { Aspect } from '@teambit/harmony';
2
+ export declare const GraphAspect: Aspect;
3
+ export default GraphAspect;
@@ -0,0 +1,20 @@
1
+ import { Section } from '@teambit/component';
2
+ import { ChangeType } from '@teambit/component.ui.component-compare.models.component-compare-change-type';
3
+ import { TabItem } from '@teambit/component.ui.component-compare.models.component-compare-props';
4
+ export declare class GraphCompareSection implements Section, TabItem {
5
+ navigationLink: {
6
+ href: string;
7
+ children: string;
8
+ };
9
+ props: {
10
+ href: string;
11
+ children: string;
12
+ };
13
+ route: {
14
+ path: string;
15
+ element: import("react/jsx-runtime").JSX.Element;
16
+ };
17
+ order: number;
18
+ changeType: ChangeType;
19
+ id: string;
20
+ }
@@ -0,0 +1 @@
1
+ export declare const Logo: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ import { ComponentMain } from '@teambit/component';
2
+ import { Schema } from '@teambit/graphql';
3
+ import { GraphBuilder } from './graph-builder';
4
+ export declare function graphSchema(graphBuilder: GraphBuilder, componentAspect: ComponentMain): Schema;
@@ -0,0 +1,26 @@
1
+ import { CLIMain } from '@teambit/cli';
2
+ import { ComponentMain, ComponentID } from '@teambit/component';
3
+ import { GraphqlMain } from '@teambit/graphql';
4
+ import { Logger, LoggerMain } from '@teambit/logger';
5
+ import { GetGraphOpts } from './graph-builder';
6
+ import { ComponentGraph } from './component-graph';
7
+ import { ComponentIdGraph } from './component-id-graph';
8
+ export declare class GraphMain {
9
+ private componentAspect;
10
+ private logger;
11
+ constructor(componentAspect: ComponentMain, logger: Logger);
12
+ /**
13
+ * important - prefer using `getGraphIds()` it's way better in terms of performance.
14
+ */
15
+ getGraph(ids?: ComponentID[], opts?: GetGraphOpts): Promise<ComponentGraph>;
16
+ getGraphIds(ids?: ComponentID[], opts?: GetGraphOpts): Promise<ComponentIdGraph>;
17
+ static slots: never[];
18
+ static dependencies: import("@teambit/harmony").Aspect[];
19
+ static runtime: import("@teambit/harmony").RuntimeDefinition;
20
+ static provider([graphql, componentAspect, cli, loggerMain]: [
21
+ GraphqlMain,
22
+ ComponentMain,
23
+ CLIMain,
24
+ LoggerMain
25
+ ]): Promise<GraphMain>;
26
+ }
@@ -0,0 +1,33 @@
1
+ import { ComponentType } from 'react';
2
+ import { SlotRegistry } from '@teambit/harmony';
3
+ import { ComponentCompareUI } from '@teambit/component-compare';
4
+ import { ComponentUI, ComponentModel } from '@teambit/component';
5
+ import { DependenciesGraph } from './ui/dependencies-graph';
6
+ export interface ComponentWidgetProps extends React.HTMLAttributes<HTMLDivElement> {
7
+ component: ComponentModel;
8
+ }
9
+ export type ComponentWidget = ComponentType<ComponentWidgetProps>;
10
+ export type ComponentWidgetSlot = SlotRegistry<ComponentWidget>;
11
+ export type GraphUIConfig = {
12
+ componentTab: boolean;
13
+ };
14
+ /**
15
+ * Presents dependencies graph in the component page
16
+ */
17
+ export declare class GraphUI {
18
+ private componentWidgetSlot;
19
+ getDependenciesGraph(): typeof DependenciesGraph;
20
+ /**
21
+ * adds plugins to component nodes
22
+ * @param value
23
+ */
24
+ registerComponentWidget(value: ComponentWidget): void;
25
+ constructor(componentWidgetSlot: ComponentWidgetSlot);
26
+ static dependencies: import("@teambit/harmony").Aspect[];
27
+ static runtime: import("@teambit/harmony").RuntimeDefinition;
28
+ static slots: ((registerFn: () => string) => SlotRegistry<ComponentWidget>)[];
29
+ static defaultConfig: {
30
+ componentTab: boolean;
31
+ };
32
+ static provider([componentUI, componentCompare]: [ComponentUI, ComponentCompareUI], config: GraphUIConfig, [componentWidgetSlot]: [ComponentWidgetSlot]): Promise<GraphUI>;
33
+ }
@@ -0,0 +1,18 @@
1
+ export { DependenciesCompare } from './ui/dependencies-compare';
2
+ export { Dependency, DependencyType } from './model/dependency';
3
+ export { DuplicateDependency } from './duplicate-dependency';
4
+ export { GraphAspect as default, GraphAspect } from './graph.aspect';
5
+ export { IdGraph, objectListToGraph, bitObjectListToGraph } from './object-list-to-graph';
6
+ export { calcElements, calcLayout, calcMinimapColors, depTypeToClass, depTypeToLabel, styles as dependenciesGraphStyles, } from './ui/dependencies-graph';
7
+ export { GraphFilters, styles as graphPageStyles } from './ui/graph-page';
8
+ export { EdgeModel, GraphModel, NodeModel, useGraph, useGraphQuery } from './ui/query';
9
+ export { styles as componentNodeStyles, root, defaultNode, external } from './ui/component-node';
10
+ export type { RawGraph } from './ui/query';
11
+ export type { CompIdGraph, DepEdgeType, ComponentIdGraph } from './component-id-graph';
12
+ export type { ComponentGraph } from './component-graph';
13
+ export type { ComponentWidget, ComponentWidgetProps, ComponentWidgetSlot, GraphUI } from './graph.ui.runtime';
14
+ export { EdgeType } from './edge-type';
15
+ export type { GraphBuilder } from './graph-builder';
16
+ export type { GraphFilter } from './model/graph-filters';
17
+ export type { GraphMain } from './graph.main.runtime';
18
+ export type { VersionSubgraph } from './duplicate-dependency';
@@ -0,0 +1,6 @@
1
+ export type DependencyType = 'dev' | 'peer' | 'runtime';
2
+ export declare class Dependency {
3
+ readonly type: DependencyType;
4
+ constructor(type: DependencyType);
5
+ stringify(): string;
6
+ }
@@ -0,0 +1 @@
1
+ export { Dependency, DependencyType } from './dependency';
@@ -0,0 +1 @@
1
+ export type GraphFilter = 'runtimeOnly' | undefined;
@@ -0,0 +1 @@
1
+ export type { GraphFilter } from './graph-filters';
@@ -0,0 +1,13 @@
1
+ import { Graph, Node, Edge } from '@teambit/graph.cleargraph';
2
+ import { ComponentID } from '@teambit/component-id';
3
+ import type { ObjectList } from '@teambit/legacy/dist/scope/objects/object-list';
4
+ import { BitObjectList } from '@teambit/legacy/dist/scope/objects/bit-object-list';
5
+ import { Dependency } from './model/dependency';
6
+ type BitIdNode = Node<ComponentID>;
7
+ type DependencyEdge = Edge<Dependency>;
8
+ export declare class IdGraph extends Graph<ComponentID, Dependency> {
9
+ constructor(nodes?: BitIdNode[], edges?: DependencyEdge[]);
10
+ }
11
+ export declare function objectListToGraph(objectList: ObjectList): Promise<IdGraph>;
12
+ export declare function bitObjectListToGraph(bitObjectsList: BitObjectList): Promise<IdGraph>;
13
+ export {};
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.228/dist/graph.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.228/dist/graph.docs.md';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.230/dist/graph.composition.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad3d35bfc38b9cd90c0e05b598a5a55af/teambit.component_graph@1.0.230/dist/graph.docs.md';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
@@ -0,0 +1,7 @@
1
+ import { CardProps } from '@teambit/base-ui.surfaces.card';
2
+ import { NodeModel } from '../query/node-model';
3
+ export interface IComponentNode extends CardProps {
4
+ node: NodeModel;
5
+ type: string;
6
+ }
7
+ export declare function ComponentNode({ node, type, ...rest }: IComponentNode): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,13 @@
1
+ export { ComponentNode } from './component-node';
2
+ export { defaultNodeColor, rootNodeColor, externalNodeColor, root, defaultNode, external } from './variants';
3
+ export declare const styles: {
4
+ compNode: string;
5
+ firstRow: string;
6
+ envIcon: string;
7
+ breadcrumbs: string;
8
+ nameLine: string;
9
+ name: string;
10
+ version: string;
11
+ buffs: string;
12
+ link: string;
13
+ };
@@ -0,0 +1,2 @@
1
+ declare const root: string, defaultNode: string, external: string, rootNodeColor: string, defaultNodeColor: string, externalNodeColor: string;
2
+ export { root, defaultNode, external, rootNodeColor, defaultNodeColor, externalNodeColor };
@@ -0,0 +1,7 @@
1
+ import { EdgeModel, GraphModel } from '../query';
2
+ import { CompareNodeModel } from './compare-node-model';
3
+ export declare class CompareGraphModel extends GraphModel<CompareNodeModel, EdgeModel> {
4
+ nodes: CompareNodeModel[];
5
+ edges: EdgeModel[];
6
+ constructor(nodes: CompareNodeModel[], edges: EdgeModel[]);
7
+ }
@@ -0,0 +1,9 @@
1
+ import { ComponentModel } from '@teambit/component';
2
+ import { NodeModel } from '../query';
3
+ export type CompareStatus = 'modified' | 'new' | 'deleted' | undefined;
4
+ export declare class CompareNodeModel extends NodeModel {
5
+ id: string;
6
+ component: ComponentModel;
7
+ compareVersion: string;
8
+ status: CompareStatus;
9
+ }
@@ -0,0 +1 @@
1
+ export declare function DependenciesCompare(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { CompareNodeModel } from './compare-node-model';
2
+ export type DependencyCompareNodeProps = {
3
+ node: CompareNodeModel;
4
+ type?: string;
5
+ };
6
+ export declare function DependencyCompareNode(props: DependencyCompareNodeProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ import { ComponentID } from '@teambit/component';
2
+ import { EdgeModel, GraphModel, NodeModel } from '../query';
3
+ import { CompareGraphModel } from './compare-graph-model';
4
+ export declare function diffGraph(baseGraph?: GraphModel<NodeModel, EdgeModel>, compareGraph?: GraphModel<NodeModel, EdgeModel>, baseId?: ComponentID): CompareGraphModel | null;
@@ -0,0 +1 @@
1
+ export { DependenciesCompare } from './dependencies-compare';
@@ -0,0 +1,11 @@
1
+ import { Edge, Node } from 'react-flow-renderer';
2
+ import { ComponentID } from '@teambit/component';
3
+ import { EdgeModel, GraphModel, NodeModel } from '../query';
4
+ type ElementsOptions = {
5
+ rootNode?: ComponentID;
6
+ };
7
+ /**
8
+ * generate Nodes and Edges for the ReactFlowRenderer graph renderer
9
+ */
10
+ export declare function calcElements(graph: GraphModel<NodeModel, EdgeModel> | undefined, { rootNode }: ElementsOptions): (Node<any> | Edge<any>)[];
11
+ export {};
@@ -0,0 +1,8 @@
1
+ import { EdgeModel, GraphModel, NodeModel } from '../query';
2
+ /**
3
+ * calculate the specific location of each node in the graph
4
+ */
5
+ export declare function calcLayout(graph: GraphModel<NodeModel, EdgeModel>): Map<string, {
6
+ x: number;
7
+ y: number;
8
+ }>;
@@ -0,0 +1,3 @@
1
+ import { EdgeType } from '../../../edge-type';
2
+ export declare function depTypeToClass(depType: string): string | undefined;
3
+ export declare function depTypeToLabel(type: EdgeType): string;
@@ -0,0 +1 @@
1
+ export { depTypeToClass, depTypeToLabel } from './dep-edge';
@@ -0,0 +1,11 @@
1
+ import { OnLoadParams, ReactFlowProps } from 'react-flow-renderer';
2
+ import { ComponentID } from '@teambit/component';
3
+ import { ComponentWidgetSlot } from '../../graph.ui.runtime';
4
+ import { EdgeModel, GraphModel, NodeModel } from '../query';
5
+ export type DependenciesGraphProps = {
6
+ rootNode: ComponentID;
7
+ graph: GraphModel<NodeModel, EdgeModel>;
8
+ componentWidgets: ComponentWidgetSlot;
9
+ onLoad?: (instance: OnLoadParams) => void;
10
+ } & Omit<ReactFlowProps, 'elements'>;
11
+ export declare function DependenciesGraph({ graph, rootNode, componentWidgets, className, onLoad, children, ...rest }: DependenciesGraphProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { ComponentWidgetSlot } from '../../graph.ui.runtime';
3
+ /** internal context, to pass shared information to all nodes */
4
+ export type ComponentGraph = {
5
+ componentWidgets: ComponentWidgetSlot;
6
+ };
7
+ export declare const ComponentGraphContext: import("react").Context<ComponentGraph | undefined>;
@@ -0,0 +1,12 @@
1
+ export { DependenciesGraph } from './dependencies-graph';
2
+ export { ComponentGraphContext, ComponentGraph } from './graph-context';
3
+ export type { DependenciesGraphProps } from './dependencies-graph';
4
+ export { depTypeToClass, depTypeToLabel } from './dep-edge';
5
+ export { calcMinimapColors } from './minimap';
6
+ export { calcLayout } from './calc-layout';
7
+ export { calcElements } from './calc-elements';
8
+ export declare const styles: {
9
+ graph: string;
10
+ minimap: string;
11
+ controls: string;
12
+ };
@@ -0,0 +1,2 @@
1
+ import { Node } from 'react-flow-renderer';
2
+ export declare function calcMinimapColors(node: Node): string;
@@ -0,0 +1,8 @@
1
+ import { CardProps } from '@teambit/base-ui.surfaces.card';
2
+ type GraphFiltersType = {
3
+ isFiltered: boolean;
4
+ onChangeFilter: (isFiltered: boolean) => void;
5
+ disable?: boolean;
6
+ } & CardProps;
7
+ export declare function GraphFilters({ onChangeFilter, isFiltered, disable, ...rest }: GraphFiltersType): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,6 @@
1
+ import { ComponentWidgetSlot } from '../../graph.ui.runtime';
2
+ type GraphPageProps = {
3
+ componentWidgets: ComponentWidgetSlot;
4
+ };
5
+ export declare function GraphPage({ componentWidgets }: GraphPageProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ export { GraphPage } from './graph-page';
2
+ export { GraphFilters } from './graph-filters';
3
+ export declare const styles: {
4
+ graph: string;
5
+ filters: string;
6
+ };
@@ -0,0 +1,15 @@
1
+ import { Section } from '@teambit/component';
2
+ import { ComponentWidgetSlot } from '../graph.ui.runtime';
3
+ export declare class GraphSection implements Section {
4
+ private componentWidgetSlot;
5
+ constructor(componentWidgetSlot: ComponentWidgetSlot);
6
+ route: {
7
+ path: string;
8
+ element: import("react/jsx-runtime").JSX.Element;
9
+ };
10
+ navigationLink: {
11
+ href: string;
12
+ children: string;
13
+ };
14
+ order: number;
15
+ }
@@ -0,0 +1,8 @@
1
+ import { EdgeType } from '../../edge-type';
2
+ import { RawEdge } from './get-graph.query';
3
+ export declare class EdgeModel {
4
+ sourceId: string;
5
+ targetId: string;
6
+ dependencyLifecycleType: EdgeType;
7
+ static from(rawEdge: RawEdge): EdgeModel;
8
+ }
@@ -0,0 +1,32 @@
1
+ import { EdgeType } from '../../edge-type';
2
+ export declare const GET_GRAPH: import("@apollo/client").DocumentNode;
3
+ export type RawGraphQuery = {
4
+ graph: RawGraph;
5
+ };
6
+ export type RawGraph = {
7
+ nodes: RawNode[];
8
+ edges: [];
9
+ };
10
+ export type RawNode = {
11
+ id: string;
12
+ component: {
13
+ id: {
14
+ name: string;
15
+ scope: string;
16
+ version: string;
17
+ };
18
+ displayName: string;
19
+ deprecation: {
20
+ isDeprecate: boolean;
21
+ };
22
+ env: {
23
+ id: string;
24
+ icon: string;
25
+ };
26
+ };
27
+ };
28
+ export type RawEdge = {
29
+ sourceId: string;
30
+ targetId: string;
31
+ dependencyLifecycleType: EdgeType;
32
+ };
@@ -0,0 +1,9 @@
1
+ import { RawGraph } from './get-graph.query';
2
+ import { NodeModel } from './node-model';
3
+ import { EdgeModel } from './edge-model';
4
+ export declare class GraphModel<N extends NodeModel, E extends EdgeModel> {
5
+ nodes: N[];
6
+ edges: E[];
7
+ constructor(nodes: N[], edges: E[]);
8
+ static from(rawGraph: RawGraph): GraphModel<NodeModel, EdgeModel>;
9
+ }
@@ -0,0 +1,6 @@
1
+ export { useGraphQuery } from './use-graph-query';
2
+ export { useGraph } from './use-graph';
3
+ export { GraphModel } from './graph-model';
4
+ export { EdgeModel } from './edge-model';
5
+ export { NodeModel } from './node-model';
6
+ export { RawGraph } from './get-graph.query';
@@ -0,0 +1,7 @@
1
+ import { ComponentModel } from '@teambit/component';
2
+ import { RawNode } from './get-graph.query';
3
+ export declare class NodeModel {
4
+ id: string;
5
+ component: ComponentModel;
6
+ static from(rawNode: RawNode): NodeModel;
7
+ }
@@ -0,0 +1,8 @@
1
+ import { GraphQlError } from '@teambit/graphql';
2
+ import { GraphModel } from './graph-model';
3
+ /** provides dependencies graph data from graphQL */
4
+ export declare function useGraphQuery(componentId?: string[], filter?: string): {
5
+ graph: GraphModel<import("./node-model").NodeModel, import("./edge-model").EdgeModel> | undefined;
6
+ error: GraphQlError | undefined;
7
+ loading: boolean;
8
+ };
@@ -0,0 +1,5 @@
1
+ export declare function useGraph(): {
2
+ graph: import("./graph-model").GraphModel<import("./node-model").NodeModel, import("./edge-model").EdgeModel> | undefined;
3
+ error: import("@teambit/graphql").GraphQlError | undefined;
4
+ loading: boolean;
5
+ };
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/graph",
3
- "version": "1.0.228",
3
+ "version": "1.0.230",
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.228"
9
+ "version": "1.0.230"
10
10
  },
11
11
  "dependencies": {
12
12
  "graphlib": "2.1.8",
@@ -35,14 +35,14 @@
35
35
  "@teambit/ui-foundation.ui.full-loader": "0.0.500",
36
36
  "@teambit/ui-foundation.ui.hooks.use-data-query": "0.0.505",
37
37
  "@teambit/ui-foundation.ui.react-router.use-query": "0.0.501",
38
- "@teambit/component": "1.0.228",
39
- "@teambit/cli": "0.0.861",
38
+ "@teambit/component": "1.0.230",
39
+ "@teambit/cli": "0.0.862",
40
40
  "@teambit/toolbox.string.random": "0.0.1",
41
41
  "@teambit/component.ui.component-compare.models.component-compare-props": "0.0.105",
42
- "@teambit/graphql": "1.0.228",
43
- "@teambit/logger": "0.0.954",
44
- "@teambit/component-compare": "1.0.228",
45
- "@teambit/ui": "1.0.228",
42
+ "@teambit/graphql": "1.0.230",
43
+ "@teambit/logger": "0.0.955",
44
+ "@teambit/component-compare": "1.0.230",
45
+ "@teambit/ui": "1.0.230",
46
46
  "@teambit/component.modules.component-url": "0.0.167",
47
47
  "@teambit/envs.ui.env-icon": "0.0.505",
48
48
  "@teambit/component.ui.component-compare.context": "0.0.118"
@@ -55,7 +55,7 @@
55
55
  "@types/dagre": "0.7.44",
56
56
  "@types/mocha": "9.1.0",
57
57
  "chai": "4.3.0",
58
- "@teambit/harmony.envs.core-aspect-env": "0.0.30"
58
+ "@teambit/harmony.envs.core-aspect-env": "0.0.33"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "@apollo/client": "^3.6.0",