@hpcc-js/observablehq-compiler 1.1.1 → 1.1.3

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 (52) 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 +586 -562
  5. package/dist/index.esm.js.map +1 -1
  6. package/dist/index.esm.min.js +2 -2
  7. package/dist/index.esm.min.js.map +1 -1
  8. package/dist/index.js +6716 -6688
  9. package/dist/index.js.map +1 -1
  10. package/dist/index.min.js +3 -3
  11. package/dist/index.min.js.map +1 -1
  12. package/package.json +5 -4
  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/compiler.md +234 -234
  20. package/src/compiler.ts +279 -264
  21. package/src/cst.ts +172 -172
  22. package/src/index.css +459 -459
  23. package/src/index.ts +6 -7
  24. package/src/util.md +113 -113
  25. package/src/util.ts +163 -153
  26. package/src/writer.ts +80 -80
  27. package/types/__package__.d.ts +3 -3
  28. package/types/__tests__/File Attachments.d.ts +109 -109
  29. package/types/__tests__/Introduction to Imports.d.ts +119 -119
  30. package/types/__tests__/Observable TimeChart.d.ts +110 -110
  31. package/types/__tests__/index.d.ts +1 -1
  32. package/types/__tests__/node.d.ts +1 -1
  33. package/types/compiler.d.ts +90 -87
  34. package/types/compiler.d.ts.map +1 -1
  35. package/types/cst.d.ts +41 -41
  36. package/types/index.d.ts +4 -5
  37. package/types/index.d.ts.map +1 -1
  38. package/types/util.d.ts +28 -25
  39. package/types/util.d.ts.map +1 -1
  40. package/types/writer.d.ts +18 -18
  41. package/types-3.4/__package__.d.ts +4 -0
  42. package/types-3.4/__tests__/File Attachments.d.ts +110 -0
  43. package/types-3.4/__tests__/Introduction to Imports.d.ts +120 -0
  44. package/types-3.4/__tests__/Observable TimeChart.d.ts +111 -0
  45. package/types-3.4/__tests__/index.d.ts +2 -0
  46. package/types-3.4/__tests__/node.d.ts +2 -0
  47. package/types-3.4/compiler.d.ts +94 -0
  48. package/types-3.4/cst.d.ts +42 -0
  49. package/types-3.4/index.d.ts +5 -0
  50. package/types-3.4/util.d.ts +29 -0
  51. package/types-3.4/writer.d.ts +19 -0
  52. package/src/__tests__/tsconfig.json +0 -21
@@ -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,94 @@
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
+ id: string;
6
+ modules: {
7
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Module;
8
+ importVariables: {
9
+ (main: ohq.Module, otherModule: ohq.Module): void;
10
+ dispose(): void;
11
+ }[];
12
+ variables: {
13
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
14
+ dispose(): void;
15
+ write(w: Writer): void;
16
+ }[];
17
+ dispose(): void;
18
+ write(w: Writer): void;
19
+ }[];
20
+ variables: {
21
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
22
+ dispose(): void;
23
+ write(w: Writer): void;
24
+ }[];
25
+ dispose(): void;
26
+ write(w: Writer): void;
27
+ }>;
28
+ export declare type CellFunc = Awaited<ReturnType<typeof createCell>>;
29
+ declare function createFile(file: ohq.File, baseUrl: string): [
30
+ string,
31
+ any
32
+ ];
33
+ export declare type FileFunc = ReturnType<typeof createFile>;
34
+ export declare function compile(notebook: ohq.Notebook, baseUrl?: string): Promise<{
35
+ (runtime: ohq.Runtime, inspector?: ohq.InspectorFactory): ohq.Module;
36
+ fileAttachments: Map<string, any>;
37
+ cells: Map<string, {
38
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): void;
39
+ id: string;
40
+ modules: {
41
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Module;
42
+ importVariables: {
43
+ (main: ohq.Module, otherModule: ohq.Module): void;
44
+ dispose(): void;
45
+ }[];
46
+ variables: {
47
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
48
+ dispose(): void;
49
+ write(w: Writer): void;
50
+ }[];
51
+ dispose(): void;
52
+ write(w: Writer): void;
53
+ }[];
54
+ variables: {
55
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
56
+ dispose(): void;
57
+ write(w: Writer): void;
58
+ }[];
59
+ dispose(): void;
60
+ write(w: Writer): void;
61
+ }>;
62
+ appendCell(n: ohq.Node, baseUrl: any): Promise<{
63
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): void;
64
+ id: string;
65
+ modules: {
66
+ (runtime: ohq.Runtime, main: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Module;
67
+ importVariables: {
68
+ (main: ohq.Module, otherModule: ohq.Module): void;
69
+ dispose(): void;
70
+ }[];
71
+ variables: {
72
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
73
+ dispose(): void;
74
+ write(w: Writer): void;
75
+ }[];
76
+ dispose(): void;
77
+ write(w: Writer): void;
78
+ }[];
79
+ variables: {
80
+ (module: ohq.Module, inspector?: ohq.InspectorFactory): ohq.Variable;
81
+ dispose(): void;
82
+ write(w: Writer): void;
83
+ }[];
84
+ dispose(): void;
85
+ write(w: Writer): void;
86
+ }>;
87
+ disposeCell(id: string): Promise<void>;
88
+ dispose(): void;
89
+ write(w: Writer): void;
90
+ toString(w?: Writer): string;
91
+ }>;
92
+ export declare type compileFunc = Awaited<ReturnType<typeof compile>>;
93
+ export {};
94
+ //# 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,5 @@
1
+ export { ohq } from "@hpcc-js/observable-shim";
2
+ export * from "./compiler";
3
+ export { ojs2notebook, omd2notebook, parseOmd, download } from "./util";
4
+ import "../src/index.css";
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,29 @@
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
+ cell: any;
19
+ error: any;
20
+ }
21
+ export declare function encodeBacktick(str: string): string;
22
+ export declare function parseOmd(_: string): ParsedOJS[];
23
+ export declare function notebook2ojs(_: string): ParsedOJS[];
24
+ export declare function ojs2notebook(ojs: string): ohq.Notebook;
25
+ export declare function omd2notebook(omd: string): ohq.Notebook;
26
+ export declare function fetchEx(url: string, proxyPrefix?: string, proxyPostfix?: string): Promise<Response>;
27
+ export declare function download(impUrl: string): Promise<ohq.Notebook>;
28
+ export {};
29
+ //# 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
@@ -1,21 +0,0 @@
1
- {
2
- "extends": "../tsconfig.settings.json",
3
- "compilerOptions": {
4
- "rootDir": "./src",
5
- "outDir": "./lib-umd",
6
- "declarationDir": "./types",
7
- "target": "ES2018",
8
- "noImplicitThis": true,
9
- "resolveJsonModule": true,
10
- "lib": [
11
- "dom",
12
- "ES2018"
13
- ],
14
- "types": [
15
- "mocha"
16
- ]
17
- },
18
- "include": [
19
- "./src/**/*"
20
- ]
21
- }