@hpcc-js/eclwatch 2.76.0 → 3.1.0

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 (43) hide show
  1. package/dist/index.js +51 -1650
  2. package/dist/index.js.map +7 -1
  3. package/package.json +38 -42
  4. package/src/WUGraph.ts +2 -2
  5. package/src/WUResult.ts +32 -21
  6. package/src/WUResultStore.ts +1 -1
  7. package/src/WUScopeController.ts +1 -1
  8. package/src/__package__.ts +2 -2
  9. package/src/index.ts +7 -7
  10. package/types/ECLArchiveViewer.d.ts +0 -1
  11. package/types/WUGraph.d.ts +1 -2
  12. package/types/WUGraphLegend.d.ts +0 -1
  13. package/types/WUResult.d.ts +21 -38
  14. package/types/WUResultStore.d.ts +0 -1
  15. package/types/WUScopeController.d.ts +1 -2
  16. package/types/WUStatus.d.ts +0 -1
  17. package/types/WUTimeline.d.ts +0 -1
  18. package/types/__package__.d.ts +2 -3
  19. package/types/index.d.ts +7 -8
  20. package/dist/index.es6.js +0 -1647
  21. package/dist/index.es6.js.map +0 -1
  22. package/dist/index.min.js +0 -2
  23. package/dist/index.min.js.map +0 -1
  24. package/types/ECLArchiveViewer.d.ts.map +0 -1
  25. package/types/WUGraph.d.ts.map +0 -1
  26. package/types/WUGraphLegend.d.ts.map +0 -1
  27. package/types/WUResult.d.ts.map +0 -1
  28. package/types/WUResultStore.d.ts.map +0 -1
  29. package/types/WUScopeController.d.ts.map +0 -1
  30. package/types/WUStatus.d.ts.map +0 -1
  31. package/types/WUTimeline.d.ts.map +0 -1
  32. package/types/__package__.d.ts.map +0 -1
  33. package/types/index.d.ts.map +0 -1
  34. package/types-3.4/ECLArchiveViewer.d.ts +0 -48
  35. package/types-3.4/WUGraph.d.ts +0 -44
  36. package/types-3.4/WUGraphLegend.d.ts +0 -22
  37. package/types-3.4/WUResult.d.ts +0 -53
  38. package/types-3.4/WUResultStore.d.ts +0 -27
  39. package/types-3.4/WUScopeController.d.ts +0 -65
  40. package/types-3.4/WUStatus.d.ts +0 -40
  41. package/types-3.4/WUTimeline.d.ts +0 -24
  42. package/types-3.4/__package__.d.ts +0 -4
  43. package/types-3.4/index.d.ts +0 -8
@@ -1,65 +0,0 @@
1
- import { Icon } from "@hpcc-js/common";
2
- import { ScopeEdge, ScopeGraph, ScopeSubgraph, ScopeVertex } from "@hpcc-js/comms";
3
- import { Edge, IGraphData, Lineage, Subgraph, Vertex } from "@hpcc-js/graph";
4
- import { WUGraphLegendData } from "./WUGraphLegend";
5
- export type VertexType = Vertex | Icon;
6
- export interface MyGraphData {
7
- subgraphs: Subgraph[];
8
- vertices: VertexType[];
9
- edges: Edge[];
10
- hierarchy: Lineage[];
11
- }
12
- export declare class WUScopeController {
13
- private graphDB;
14
- private subgraphsMap;
15
- private rSubgraphsMap;
16
- private verticesMap;
17
- private rVerticesMap;
18
- private edgesMap;
19
- private rEdgesMap;
20
- private kindMap;
21
- protected _disabled: {
22
- [kind: number]: boolean;
23
- };
24
- constructor();
25
- clear(): void;
26
- set(masterGraph: ScopeGraph): void;
27
- disabled(): number[];
28
- disabled(_: number[]): this;
29
- graphGui(graphDB: ScopeGraph): IGraphData;
30
- format(labelTpl: any, obj: any): string;
31
- createSubgraph(subgraph: ScopeSubgraph): Subgraph;
32
- createVertex(vertex: ScopeVertex): VertexType;
33
- isSpill(edge: ScopeEdge): boolean;
34
- spansSubgraph(edge: ScopeEdge): boolean;
35
- createEdge(edge: ScopeEdge): Edge | undefined;
36
- appendSubgraph(subgraph: ScopeSubgraph, hierarchy: Lineage[], subgraphs: Subgraph[]): Subgraph;
37
- appendVertex(vertex: ScopeVertex, hierarchy: Lineage[], vertices: VertexType[]): VertexType;
38
- appendEdge(edge: ScopeEdge, edges: Edge[]): Edge;
39
- filterLegend(graphDB: ScopeGraph): void;
40
- filterPartial(graphDB: ScopeGraph): void;
41
- filterEmptySubgraphs(graphDB: ScopeGraph): void;
42
- removeObsoleteSubgraphs(graphDB: ScopeGraph): void;
43
- graphData(): IGraphData;
44
- calcLegend(): WUGraphLegendData[];
45
- vertices(kind: number): VertexType[];
46
- formatRow(item: ScopeEdge | ScopeSubgraph | ScopeVertex, columns: any, row: any): any;
47
- activityData(): {
48
- columns: string[];
49
- data: any[][];
50
- };
51
- edgeData(): {
52
- columns: string[];
53
- data: any[][];
54
- };
55
- subgraphData(): {
56
- columns: string[];
57
- data: any[][];
58
- };
59
- calcGraphTooltip(item: VertexType | Edge): any;
60
- subgraph(id: string): Subgraph | undefined;
61
- vertex(id: string): VertexType | undefined;
62
- edge(id: string): Edge;
63
- minClick(sg: Subgraph): void;
64
- }
65
- //# sourceMappingURL=WUScopeController.d.ts.map
@@ -1,40 +0,0 @@
1
- import { Workunit } from "@hpcc-js/comms";
2
- import { Edge, Graph, Vertex } from "@hpcc-js/graph";
3
- import { IObserverHandle } from "@hpcc-js/util";
4
- export declare enum STATUS {
5
- CREATE = "Created",
6
- COMPILE = "Compiled",
7
- EXECUTE = "Executed",
8
- COMPLETE = "Completed"
9
- }
10
- export declare enum STATUS_ACTIVE {
11
- CREATE = "Creating",
12
- COMPILE = "Compiling",
13
- EXECUTE = "Executing",
14
- COMPLETE = "Completed"
15
- }
16
- export declare class WUStatus extends Graph {
17
- protected _wu: Workunit;
18
- protected _wuHandle: IObserverHandle;
19
- protected _create: Vertex;
20
- protected _compile: Vertex;
21
- protected _execute: Vertex;
22
- protected _complete: Vertex;
23
- constructor();
24
- private _prevHash;
25
- attachWorkunit(): void;
26
- createVertex(faChar: string): Vertex;
27
- updateVertex(vertex: Vertex, color: string): void;
28
- updateVertexStatus(level: 0 | 1 | 2 | 3 | 4, active?: boolean): void;
29
- createEdge(source: any, target: any): Edge;
30
- enter(domNode: any, element: any): void;
31
- update(domNode: any, element: any): void;
32
- exit(domNode: any, element: any): void;
33
- }
34
- export interface WUStatus {
35
- baseUrl(): string;
36
- baseUrl(_: string): this;
37
- wuid(): string;
38
- wuid(_: string): this;
39
- }
40
- //# sourceMappingURL=WUStatus.d.ts.map
@@ -1,24 +0,0 @@
1
- import { Palette } from "@hpcc-js/common";
2
- import { WsWorkunits } from "@hpcc-js/comms";
3
- import { ReactTimelineSeries } from "@hpcc-js/timeline";
4
- import { RecursivePartial } from "@hpcc-js/util";
5
- import "../src/WUGraph.css";
6
- export declare class WUTimeline extends ReactTimelineSeries {
7
- protected _palette: Palette.OrdinalPaletteFunc;
8
- constructor();
9
- private _prevHashSum;
10
- clear(): this;
11
- fetchScopes(): void;
12
- enter(domNode: any, _element: any): void;
13
- update(domNode: any, element: any): void;
14
- exit(domNode: any, element: any): void;
15
- }
16
- export interface WUTimeline {
17
- baseUrl(): string;
18
- baseUrl(_: string): this;
19
- wuid(): string;
20
- wuid(_: string): this;
21
- request(): Partial<WsWorkunits.WUDetails>;
22
- request(_: RecursivePartial<WsWorkunits.WUDetails>): this;
23
- }
24
- //# sourceMappingURL=WUTimeline.d.ts.map
@@ -1,4 +0,0 @@
1
- export declare const PKG_NAME = "@hpcc-js/eclwatch";
2
- export declare const PKG_VERSION = "2.76.0";
3
- export declare const BUILD_VERSION = "2.107.0";
4
- //# sourceMappingURL=__package__.d.ts.map
@@ -1,8 +0,0 @@
1
- export * from "./__package__";
2
- export * from "./ECLArchiveViewer";
3
- export * from "./WUGraph";
4
- export * from "./WUResult";
5
- export * from "./WUScopeController";
6
- export * from "./WUStatus";
7
- export * from "./WUTimeline";
8
- //# sourceMappingURL=index.d.ts.map