1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//use vega_lite::Spec;
use crate::Vegalite;
use anyhow::Error;
use showata::ContentInfo;
use showata::Showable;

impl Showable for Vegalite {
    fn to_content_info(&self) -> Result<ContentInfo, Error> {
        // vega4-extension: .vg, .vl, .vg.json, .vl.json, .vega, .vegalite
        // mime-types: 	application/vnd.vega.v3+json, application/vnd.vegalite.v2+json
        let content = serde_json::to_string(self)?;
        Ok(ContentInfo {
            content,
            mime_type: "application/vnd.vegalite.v4+json".into(),
        })
    }

    // TODO for html use [vega/vega-embed: Publish Vega visualizations as embedded web components with interactive parameters.](https://github.com/vega/vega-embed)
    // TODO add an Config parameter (with config for to json str, config for embed)
    fn to_html_page(&self) -> Result<String, Error> {
        let dod = self.to_content_info()?;
        let content = VEGA_EMBED_HTML_TEMPLATE.replace("{{ spec_as_json }}", &dod.content);
        Ok(content)
    }
}

const VEGA_EMBED_HTML_TEMPLATE: &str = r#"
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <!-- Import Vega 5 & Vega-Lite 4 (does not have to be from CDN) -->
  <script src="https://cdn.jsdelivr.net/npm/vega@5"></script>
  <script src="https://cdn.jsdelivr.net/npm/vega-lite@4"></script>
  <!-- Import vega-embed -->
  <script src="https://cdn.jsdelivr.net/npm/vega-embed@6"></script>
</head>
<body>

<div id="vis"></div>

<script type="text/javascript">
  var spec = {{ spec_as_json }};
  vegaEmbed('#vis', spec).then(function(result) {
    // Access the Vega view instance (https://vega.github.io/vega/docs/api/view/) as result.view
  }).catch(console.error);
</script>
</body>
</html>
"#;