@uwdata/mosaic-spec 0.5.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.
- package/LICENSE +28 -0
- package/README.md +57 -0
- package/dist/mosaic-spec.js +45445 -0
- package/dist/mosaic-spec.min.js +89 -0
- package/package.json +37 -0
- package/src/ast/ASTNode.js +18 -0
- package/src/ast/DataNode.js +226 -0
- package/src/ast/ExpressionNode.js +65 -0
- package/src/ast/HConcatNode.js +29 -0
- package/src/ast/HSpaceNode.js +25 -0
- package/src/ast/InputNode.js +34 -0
- package/src/ast/LiteralNode.js +21 -0
- package/src/ast/OptionsNode.js +52 -0
- package/src/ast/ParamNode.js +55 -0
- package/src/ast/ParamRefNode.js +22 -0
- package/src/ast/PlotAttributeNode.js +55 -0
- package/src/ast/PlotFromNode.js +44 -0
- package/src/ast/PlotInteractorNode.js +34 -0
- package/src/ast/PlotLegendNode.js +36 -0
- package/src/ast/PlotMarkNode.js +75 -0
- package/src/ast/PlotNode.js +66 -0
- package/src/ast/SelectionNode.js +26 -0
- package/src/ast/SpecNode.js +47 -0
- package/src/ast/TransformNode.js +118 -0
- package/src/ast/VConcatNode.js +28 -0
- package/src/ast/VSpaceNode.js +25 -0
- package/src/ast-to-dom.js +64 -0
- package/src/ast-to-esm.js +178 -0
- package/src/config/components.js +28 -0
- package/src/config/extensions.js +23 -0
- package/src/config/inputs.js +12 -0
- package/src/config/plots.js +58 -0
- package/src/config/transforms.js +35 -0
- package/src/constants.js +51 -0
- package/src/index.js +36 -0
- package/src/parse-spec.js +111 -0
- package/src/util.js +47 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023, UW Interactive Data Lab
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
and/or other materials provided with the distribution.
|
|
14
|
+
|
|
15
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
16
|
+
contributors may be used to endorse or promote products derived from
|
|
17
|
+
this software without specific prior written permission.
|
|
18
|
+
|
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# mosaic-spec
|
|
2
|
+
|
|
3
|
+
Declarative specification of Mosaic-powered applications as JSON or YAML files. This package provides a parser and code generation framework for reading specifications in a JSON format and generating live Mosaic visualizations and dashboards using the [vgplot](https://github.com/uwdata/mosaic/tree/main/packages/vgplot) API.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
To parse a specification and generate round-trip JSON output (`.toJSON()`), JavaScript module code (`astToESM`), or a live web application (`astToDOM`):
|
|
8
|
+
|
|
9
|
+
```js
|
|
10
|
+
import { parseSpec, astToDOM, astToESM } from '@uwdata/mosaic-spec';
|
|
11
|
+
|
|
12
|
+
// declarative specification in JSON format
|
|
13
|
+
const spec = {
|
|
14
|
+
plot: [
|
|
15
|
+
{
|
|
16
|
+
mark: 'lineY',
|
|
17
|
+
data: { from: 'table' },
|
|
18
|
+
x: 'date',
|
|
19
|
+
y: 'value'
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
width: 640,
|
|
23
|
+
height: 200
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
// parse specification to internal AST (abstract syntax tree)
|
|
27
|
+
const ast = parseSpec(spec);
|
|
28
|
+
|
|
29
|
+
// serialize back to a normalized JSON format
|
|
30
|
+
const json = ast.toJSON();
|
|
31
|
+
|
|
32
|
+
// generate ESM (ECMAScript Module) code
|
|
33
|
+
const code = astToESM(ast);
|
|
34
|
+
|
|
35
|
+
// instantiate a running application
|
|
36
|
+
// assumes standard browser facilities in globabl variable `window`
|
|
37
|
+
const {
|
|
38
|
+
element, // root DOM element of the application
|
|
39
|
+
params // Map of all named Params and Selections
|
|
40
|
+
} = await astToDOM(ast);
|
|
41
|
+
|
|
42
|
+
// add application to current web page
|
|
43
|
+
document.body.appendChild(element);
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
To parse specifications in YAML format, import the `yaml` library and use it to parse input specification files:
|
|
47
|
+
|
|
48
|
+
```js
|
|
49
|
+
import { parseSpec } from '@uwdata/mosaic-spec';
|
|
50
|
+
import { parse } from 'yaml';
|
|
51
|
+
|
|
52
|
+
const yaml = /* load yaml file file */;
|
|
53
|
+
const spec = parse(yaml); // parse yaml to JS objects
|
|
54
|
+
|
|
55
|
+
// parse specification to internal AST (abstract syntax tree)
|
|
56
|
+
const ast = parseSpec(spec);
|
|
57
|
+
```
|