@hpcc-js/observablehq-compiler 1.1.0 → 1.1.2

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 (49) hide show
  1. package/LICENSE +43 -0
  2. package/README.md +105 -105
  3. package/bin/ojscc.mjs +74 -74
  4. package/dist/index.esm.js +554 -554
  5. package/dist/index.esm.js.map +1 -1
  6. package/dist/index.esm.min.js +4 -0
  7. package/dist/index.esm.min.js.map +1 -0
  8. package/dist/index.js +6700 -6696
  9. package/dist/index.js.map +1 -1
  10. package/dist/index.min.js +4 -0
  11. package/dist/index.min.js.map +1 -0
  12. package/package.json +4 -3
  13. package/src/__package__.ts +3 -3
  14. package/src/__tests__/File Attachments.ts +894 -894
  15. package/src/__tests__/Introduction to Imports.ts +748 -748
  16. package/src/__tests__/Observable TimeChart.ts +771 -771
  17. package/src/__tests__/index.ts +13 -13
  18. package/src/__tests__/node.ts +177 -177
  19. package/src/__tests__/tsconfig.json +20 -20
  20. package/src/compiler.md +234 -234
  21. package/src/compiler.ts +264 -264
  22. package/src/cst.ts +172 -172
  23. package/src/index.css +459 -459
  24. package/src/index.ts +7 -7
  25. package/src/util.md +113 -113
  26. package/src/util.ts +153 -153
  27. package/src/writer.ts +80 -80
  28. package/types/__package__.d.ts +3 -3
  29. package/types/__tests__/File Attachments.d.ts +109 -109
  30. package/types/__tests__/Introduction to Imports.d.ts +119 -119
  31. package/types/__tests__/Observable TimeChart.d.ts +110 -110
  32. package/types/__tests__/index.d.ts +1 -1
  33. package/types/__tests__/node.d.ts +1 -1
  34. package/types/compiler.d.ts +87 -87
  35. package/types/cst.d.ts +41 -41
  36. package/types/index.d.ts +5 -5
  37. package/types/util.d.ts +25 -25
  38. package/types/writer.d.ts +18 -18
  39. package/types-3.4/__package__.d.ts +4 -0
  40. package/types-3.4/__tests__/File Attachments.d.ts +110 -0
  41. package/types-3.4/__tests__/Introduction to Imports.d.ts +120 -0
  42. package/types-3.4/__tests__/Observable TimeChart.d.ts +111 -0
  43. package/types-3.4/__tests__/index.d.ts +2 -0
  44. package/types-3.4/__tests__/node.d.ts +2 -0
  45. package/types-3.4/compiler.d.ts +91 -0
  46. package/types-3.4/cst.d.ts +42 -0
  47. package/types-3.4/index.d.ts +6 -0
  48. package/types-3.4/util.d.ts +26 -0
  49. package/types-3.4/writer.d.ts +19 -0
@@ -0,0 +1,110 @@
1
+ export declare const fa: {
2
+ id: string;
3
+ slug: string;
4
+ trashed: boolean;
5
+ description: string;
6
+ likes: number;
7
+ publish_level: string;
8
+ forks: number;
9
+ fork_of: any;
10
+ update_time: string;
11
+ publish_time: string;
12
+ publish_version: number;
13
+ latest_version: number;
14
+ thumbnail: string;
15
+ default_thumbnail: string;
16
+ roles: any[];
17
+ sharing: any;
18
+ owner: {
19
+ id: string;
20
+ avatar_url: string;
21
+ login: string;
22
+ name: string;
23
+ bio: string;
24
+ home_url: string;
25
+ type: string;
26
+ tier: string;
27
+ };
28
+ creator: {
29
+ id: string;
30
+ github_login: string;
31
+ avatar_url: string;
32
+ login: string;
33
+ name: string;
34
+ bio: string;
35
+ home_url: string;
36
+ tier: string;
37
+ };
38
+ authors: any[];
39
+ collections: {
40
+ id: string;
41
+ type: string;
42
+ slug: string;
43
+ title: string;
44
+ description: string;
45
+ update_time: string;
46
+ pinned: boolean;
47
+ ordered: boolean;
48
+ custom_thumbnail: string;
49
+ default_thumbnail: string;
50
+ thumbnail: string;
51
+ listing_count: number;
52
+ parent_collection_count: number;
53
+ owner: {
54
+ id: string;
55
+ avatar_url: string;
56
+ login: string;
57
+ name: string;
58
+ bio: string;
59
+ home_url: string;
60
+ type: string;
61
+ tier: string;
62
+ };
63
+ }[];
64
+ files: {
65
+ id: string;
66
+ url: string;
67
+ download_url: string;
68
+ name: string;
69
+ create_time: string;
70
+ status: string;
71
+ size: number;
72
+ mime_type: string;
73
+ content_encoding: string;
74
+ }[];
75
+ comments: {
76
+ id: string;
77
+ content: string;
78
+ node_id: number;
79
+ create_time: string;
80
+ update_time: any;
81
+ resolved: boolean;
82
+ user: {
83
+ id: string;
84
+ github_login: string;
85
+ avatar_url: string;
86
+ login: string;
87
+ name: string;
88
+ bio: string;
89
+ home_url: string;
90
+ tier: string;
91
+ };
92
+ }[];
93
+ commenting_lock: any;
94
+ suggestion_from: any;
95
+ suggestions_to: any[];
96
+ version: number;
97
+ title: string;
98
+ license: any;
99
+ copyright: string;
100
+ nodes: {
101
+ id: number;
102
+ value: string;
103
+ pinned: boolean;
104
+ mode: string;
105
+ data: any;
106
+ name: string;
107
+ }[];
108
+ resolutions: any[];
109
+ };
110
+ //# sourceMappingURL=File%20Attachments.d.ts.map
@@ -0,0 +1,120 @@
1
+ export declare const imports: {
2
+ id: string;
3
+ slug: string;
4
+ trashed: boolean;
5
+ description: string;
6
+ likes: number;
7
+ publish_level: string;
8
+ forks: number;
9
+ fork_of: any;
10
+ update_time: string;
11
+ publish_time: string;
12
+ publish_version: number;
13
+ latest_version: number;
14
+ thumbnail: string;
15
+ default_thumbnail: string;
16
+ roles: any[];
17
+ sharing: any;
18
+ owner: {
19
+ id: string;
20
+ avatar_url: string;
21
+ login: string;
22
+ name: string;
23
+ bio: string;
24
+ home_url: string;
25
+ type: string;
26
+ tier: string;
27
+ };
28
+ creator: {
29
+ id: string;
30
+ github_login: string;
31
+ avatar_url: string;
32
+ login: string;
33
+ name: string;
34
+ bio: string;
35
+ home_url: string;
36
+ tier: string;
37
+ };
38
+ authors: any[];
39
+ collections: {
40
+ id: string;
41
+ type: string;
42
+ slug: string;
43
+ title: string;
44
+ description: string;
45
+ update_time: string;
46
+ pinned: boolean;
47
+ ordered: boolean;
48
+ custom_thumbnail: string;
49
+ default_thumbnail: string;
50
+ thumbnail: string;
51
+ listing_count: number;
52
+ parent_collection_count: number;
53
+ owner: {
54
+ id: string;
55
+ avatar_url: string;
56
+ login: string;
57
+ name: string;
58
+ bio: string;
59
+ home_url: string;
60
+ type: string;
61
+ tier: string;
62
+ };
63
+ }[];
64
+ files: ({
65
+ id: string;
66
+ url: string;
67
+ download_url: string;
68
+ name: string;
69
+ create_time: string;
70
+ status: string;
71
+ size: number;
72
+ mime_type: any;
73
+ content_encoding: string;
74
+ } | {
75
+ id: string;
76
+ url: string;
77
+ download_url: string;
78
+ name: string;
79
+ create_time: string;
80
+ status: string;
81
+ size: number;
82
+ mime_type: string;
83
+ content_encoding: any;
84
+ })[];
85
+ comments: {
86
+ id: string;
87
+ content: string;
88
+ node_id: number;
89
+ create_time: string;
90
+ update_time: any;
91
+ resolved: boolean;
92
+ user: {
93
+ id: string;
94
+ github_login: string;
95
+ avatar_url: string;
96
+ login: string;
97
+ name: string;
98
+ bio: string;
99
+ home_url: string;
100
+ tier: string;
101
+ };
102
+ }[];
103
+ commenting_lock: any;
104
+ suggestion_from: any;
105
+ suggestions_to: any[];
106
+ version: number;
107
+ title: string;
108
+ license: any;
109
+ copyright: string;
110
+ nodes: {
111
+ id: number;
112
+ value: string;
113
+ pinned: boolean;
114
+ mode: string;
115
+ data: any;
116
+ name: string;
117
+ }[];
118
+ resolutions: any[];
119
+ };
120
+ //# sourceMappingURL=Introduction%20to%20Imports.d.ts.map
@@ -0,0 +1,111 @@
1
+ export declare const timechart: {
2
+ id: string;
3
+ slug: string;
4
+ trashed: boolean;
5
+ description: string;
6
+ likes: number;
7
+ publish_level: string;
8
+ forks: number;
9
+ fork_of: any;
10
+ update_time: string;
11
+ publish_time: string;
12
+ publish_version: number;
13
+ latest_version: number;
14
+ thumbnail: string;
15
+ default_thumbnail: string;
16
+ roles: any[];
17
+ sharing: any;
18
+ owner: {
19
+ id: string;
20
+ avatar_url: string;
21
+ login: string;
22
+ name: string;
23
+ bio: string;
24
+ home_url: string;
25
+ type: string;
26
+ tier: string;
27
+ };
28
+ creator: {
29
+ id: string;
30
+ github_login: string;
31
+ avatar_url: string;
32
+ login: string;
33
+ name: string;
34
+ bio: string;
35
+ home_url: string;
36
+ tier: string;
37
+ };
38
+ authors: {
39
+ id: string;
40
+ avatar_url: string;
41
+ name: string;
42
+ login: string;
43
+ bio: string;
44
+ home_url: string;
45
+ github_login: string;
46
+ tier: string;
47
+ approved: boolean;
48
+ description: string;
49
+ }[];
50
+ collections: {
51
+ id: string;
52
+ type: string;
53
+ slug: string;
54
+ title: string;
55
+ description: string;
56
+ update_time: string;
57
+ pinned: boolean;
58
+ ordered: boolean;
59
+ custom_thumbnail: string;
60
+ default_thumbnail: string;
61
+ thumbnail: string;
62
+ listing_count: number;
63
+ parent_collection_count: number;
64
+ owner: {
65
+ id: string;
66
+ avatar_url: string;
67
+ login: string;
68
+ name: string;
69
+ bio: string;
70
+ home_url: string;
71
+ type: string;
72
+ tier: string;
73
+ };
74
+ }[];
75
+ files: any[];
76
+ comments: {
77
+ id: string;
78
+ content: string;
79
+ node_id: number;
80
+ create_time: string;
81
+ update_time: any;
82
+ resolved: boolean;
83
+ user: {
84
+ id: string;
85
+ github_login: string;
86
+ avatar_url: string;
87
+ login: string;
88
+ name: string;
89
+ bio: string;
90
+ home_url: string;
91
+ tier: string;
92
+ };
93
+ }[];
94
+ commenting_lock: any;
95
+ suggestion_from: any;
96
+ suggestions_to: any[];
97
+ version: number;
98
+ title: string;
99
+ license: string;
100
+ copyright: string;
101
+ nodes: {
102
+ id: number;
103
+ value: string;
104
+ pinned: boolean;
105
+ mode: string;
106
+ data: any;
107
+ name: any;
108
+ }[];
109
+ resolutions: any[];
110
+ };
111
+ //# sourceMappingURL=Observable%20TimeChart.d.ts.map
@@ -0,0 +1,2 @@
1
+ export * from "./node";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=node.d.ts.map
@@ -0,0 +1,91 @@
1
+ import { ohq } from "@hpcc-js/observable-shim";
2
+ import { Writer } from "./writer";
3
+ declare function createCell(node: ohq.Node, baseUrl: string): Promise<{
4
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): void;
5
+ modules: {
6
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Module;
7
+ importVariables: {
8
+ (main: ohq.Module, otherModule: ohq.Module): void;
9
+ dispose(): void;
10
+ }[];
11
+ variables: {
12
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
13
+ dispose(): void;
14
+ write(w: Writer): void;
15
+ }[];
16
+ dispose(): void;
17
+ write(w: Writer): void;
18
+ }[];
19
+ variables: {
20
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
21
+ dispose(): void;
22
+ write(w: Writer): void;
23
+ }[];
24
+ dispose(): void;
25
+ write(w: Writer): void;
26
+ }>;
27
+ export declare type CellFunc = Awaited<ReturnType<typeof createCell>>;
28
+ declare function createFile(file: ohq.File): [
29
+ string,
30
+ any
31
+ ];
32
+ export declare type FileFunc = ReturnType<typeof createFile>;
33
+ export declare function compile(notebook: ohq.Notebook, baseUrl?: string): Promise<{
34
+ (runtime: ohq.Runtime, inspector?: ohq.InspectorFactory): ohq.Module;
35
+ fileAttachments: Map<string, any>;
36
+ cells: {
37
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): void;
38
+ modules: {
39
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Module;
40
+ importVariables: {
41
+ (main: ohq.Module, otherModule: ohq.Module): void;
42
+ dispose(): void;
43
+ }[];
44
+ variables: {
45
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
46
+ dispose(): void;
47
+ write(w: Writer): void;
48
+ }[];
49
+ dispose(): void;
50
+ write(w: Writer): void;
51
+ }[];
52
+ variables: {
53
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
54
+ dispose(): void;
55
+ write(w: Writer): void;
56
+ }[];
57
+ dispose(): void;
58
+ write(w: Writer): void;
59
+ }[];
60
+ appendCell(n: ohq.Node, baseUrl?: string): Promise<{
61
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): void;
62
+ modules: {
63
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Module;
64
+ importVariables: {
65
+ (main: ohq.Module, otherModule: ohq.Module): void;
66
+ dispose(): void;
67
+ }[];
68
+ variables: {
69
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
70
+ dispose(): void;
71
+ write(w: Writer): void;
72
+ }[];
73
+ dispose(): void;
74
+ write(w: Writer): void;
75
+ }[];
76
+ variables: {
77
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
78
+ dispose(): void;
79
+ write(w: Writer): void;
80
+ }[];
81
+ dispose(): void;
82
+ write(w: Writer): void;
83
+ }>;
84
+ disposeCell(cell: CellFunc): Promise<void>;
85
+ dispose(): void;
86
+ write(w: Writer): void;
87
+ toString(w?: Writer): string;
88
+ }>;
89
+ export declare type compileFunc = Awaited<ReturnType<typeof compile>>;
90
+ export {};
91
+ //# sourceMappingURL=compiler.d.ts.map
@@ -0,0 +1,42 @@
1
+ export interface ParsedCell {
2
+ type: "import" | "viewof" | "mutable" | "variable" | "identifier";
3
+ }
4
+ export interface ParsedImportCell extends ParsedCell {
5
+ type: "import";
6
+ src: string;
7
+ specifiers: {
8
+ view: boolean;
9
+ name: string;
10
+ alias?: string;
11
+ }[];
12
+ injections: {
13
+ name: string;
14
+ alias: string;
15
+ }[];
16
+ }
17
+ export interface ParsedVariable extends ParsedCell {
18
+ type: "variable";
19
+ id?: string;
20
+ inputs: string[];
21
+ func: any;
22
+ }
23
+ export interface ParsedViewCell extends ParsedCell {
24
+ type: "viewof";
25
+ variable: ParsedVariable;
26
+ variableValue: ParsedVariable;
27
+ }
28
+ interface ParsedMutableCell extends ParsedCell {
29
+ type: "mutable";
30
+ initial: ParsedVariable;
31
+ variable: ParsedVariable;
32
+ variableValue: ParsedVariable;
33
+ }
34
+ interface ParsedVariableCell extends ParsedCell {
35
+ type: "variable";
36
+ id: string;
37
+ inputs: string[];
38
+ func: any;
39
+ }
40
+ export declare function parseCell(cellStr: string): ParsedImportCell | ParsedViewCell | ParsedMutableCell | ParsedVariableCell;
41
+ export {};
42
+ //# sourceMappingURL=cst.d.ts.map
@@ -0,0 +1,6 @@
1
+ export { ohq } from "@hpcc-js/observable-shim";
2
+ export * from "./compiler";
3
+ export { ojs2notebook, omd2notebook, download } from "./util";
4
+ export * from "./writer";
5
+ import "../src/index.css";
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,26 @@
1
+ import { ohq } from "@hpcc-js/observable-shim";
2
+ interface Ref {
3
+ start: number;
4
+ end: number;
5
+ newText: string;
6
+ }
7
+ export interface Refs {
8
+ inputs: string[];
9
+ args: string[];
10
+ patches: Ref[];
11
+ }
12
+ export declare function createFunction(refs: Refs, async?: boolean, generator?: boolean, blockStatement?: boolean, body?: string): any;
13
+ export declare function obfuscatedImport(url: string): Promise<any>;
14
+ interface ParsedOJS {
15
+ ojs: string;
16
+ offset: number;
17
+ inlineMD: boolean;
18
+ }
19
+ export declare function encodeBacktick(str: string): string;
20
+ export declare function notebook2ojs(_: string): ParsedOJS[];
21
+ export declare function ojs2notebook(ojs: string): ohq.Notebook;
22
+ export declare function omd2notebook(omd: string): ohq.Notebook;
23
+ export declare function fetchEx(url: string): Promise<Response>;
24
+ export declare function download(impUrl: string): Promise<ohq.Notebook>;
25
+ export {};
26
+ //# sourceMappingURL=util.d.ts.map
@@ -0,0 +1,19 @@
1
+ import { ohq } from "@hpcc-js/observable-shim";
2
+ import { ParsedImportCell, ParsedVariable } from "./cst";
3
+ export declare class Writer {
4
+ protected _files: ohq.File[];
5
+ protected _imports: string[];
6
+ protected _functions: string[];
7
+ protected _defines: string[];
8
+ protected _defineUid: number;
9
+ protected _functionUid: number;
10
+ constructor();
11
+ toString(): string;
12
+ files(files: ohq.File[]): void;
13
+ import(url: string): void;
14
+ importDefine(imp: Partial<ParsedImportCell>): void;
15
+ function(variable: Partial<ParsedVariable>): string;
16
+ define(variable: Partial<ParsedVariable>, observable?: boolean, inlineFunc?: boolean, funcId?: string): void;
17
+ error(msg: string): void;
18
+ }
19
+ //# sourceMappingURL=writer.d.ts.map