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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
//! Dilla renderer to output the result.

use crate::bubbable::Bubbable;
use crate::renderable::{Html, Renderable};
use crate::{engine, DEFINITION};

use indexmap::IndexMap;
use minijinja::{context, Environment, HtmlEscape};
use serde::Serialize;
use serde_json::{json, Map, Value};
use std::collections::HashMap;

/// Wrap the Render to build the HTML markup.
#[derive(Debug, Default, Serialize)]
pub struct RendererWrapper {
    pub body: String,
    pub head: String,
    pub style: String,
    /// Global libraries provided by the design system.
    pub system_stylesheet: String,
    #[serde(with = "indexmap::map::serde_seq")]
    pub system_javascript_src: IndexMap<String, Value>,
    pub stylesheet: String,
    #[serde(with = "indexmap::map::serde_seq")]
    pub javascript_src: IndexMap<String, Value>,
    // Internal container for the string version of js to use on non json output.
    system_javascript: String,
    javascript: String,
}

impl RendererWrapper {
    pub fn new() -> Self {
        RendererWrapper {
            body: String::new(),
            head: String::new(),
            style: String::new(),
            system_stylesheet: String::new(),
            system_javascript_src: IndexMap::new(),
            stylesheet: String::new(),
            javascript_src: IndexMap::new(),
            system_javascript: String::new(),
            javascript: String::new(),
        }
    }

    pub fn add_body(&mut self, body: &str) {
        self.body.push_str(body);
    }

    pub fn add_body_nl(&mut self, body: &str) {
        if body.is_empty() {
            return;
        }
        self.body.push('\n');
        self.body.push_str(body);
    }

    pub fn add_head(&mut self, head: &str) {
        if head.is_empty() {
            return;
        }
        self.head.push('\n');
        self.head.push_str(head);
    }

    pub fn add_style(&mut self, style: &str) {
        if style.is_empty() {
            return;
        }
        self.style.push('\n');
        self.style.push_str(style);
    }

    pub fn add_system_stylesheet(&mut self, stylesheet: &str) {
        if stylesheet.is_empty() {
            return;
        }
        self.system_stylesheet.push('\n');
        self.system_stylesheet.push_str(stylesheet);
    }

    pub fn add_system_javascript(&mut self, script: &str) {
        self.system_javascript.push('\n');
        self.system_javascript.push_str(script);
    }

    pub fn add_system_javascript_src(&mut self, script_url: &str, data: Value) {
        self.system_javascript_src
            .insert(script_url.to_string(), data);
    }

    pub fn add_stylesheet(&mut self, stylesheet: &str) {
        if stylesheet.is_empty() {
            return;
        }
        self.stylesheet.push('\n');
        self.stylesheet.push_str(stylesheet);
    }

    pub fn add_javascript(&mut self, script: &str) {
        self.javascript.push('\n');
        self.javascript.push_str(script);
    }

    pub fn add_javascript_src(&mut self, script_url: &str, data: Value) {
        self.javascript_src.insert(script_url.to_string(), data);
    }

    /// Build Bubabble for this render.
    pub fn build(&mut self, bubbable: Bubbable) {
        self.build_system_library();
        self.build_bubbable(bubbable);
    }

    fn build_system_library(&mut self) -> &mut Self {
        // Get libraries defined by the design system (always loaded).
        let default_css: &str = DEFINITION.default_libraries_css_html;
        self.add_system_stylesheet(default_css);

        for (url, phf_attributes) in DEFINITION.default_libraries_js.iter() {
            let mut attributes = Map::new();
            for (key, value) in phf_attributes {
                attributes.insert(key.to_string(), Value::String(value.to_string()));
            }
            let new_attributes = Value::Object(attributes);

            // Create a string js with attributes for non json output.
            let js = Renderable::script(url, &new_attributes).to_html_string();

            self.add_system_javascript(&js);
            // Add regular js map with attributes as object.
            self.add_system_javascript_src(url, new_attributes);
        }

        self
    }

    fn build_bubbable(&mut self, bubbable: Bubbable) -> &mut Self {
        let css: String = bubbable.library.css.join("\n");
        self.add_stylesheet(&css);

        for (url, attributes) in bubbable.library.js {
            // Create a string js with attributes for non json output.
            let js = Renderable::script(&url, &attributes).to_html_string();
            self.add_javascript(&js);
            // Add regular js map with attributes as object.
            self.add_javascript_src(&url, attributes);
        }

        let attached_build: String = bubbable.attached_build.clone();
        self.add_head(&attached_build);

        let style: String = bubbable.style;
        if !style.is_empty() {
            self.add_style(&style);
        }

        self
    }
}

/// Simple render struct to process the data.
#[derive(Debug, Default)]
pub(crate) struct Renderer {
    pub output: RendererWrapper,
    pub translation: HashMap<String, String>,
}

impl Renderer {
    pub fn new() -> Self {
        Renderer {
            output: RendererWrapper::new(),
            translation: HashMap::new(),
        }
    }

    pub fn set_translation(&mut self, translation: HashMap<String, String>) {
        self.translation = translation;
    }

    pub fn render(&mut self, json: &Value) {
        // First pass is to collect all bubbable from 'json' recursively.
        let mut bubbable: Bubbable = Bubbable::new();
        bubbable.collect(json);
        // @todo move from bubbable to renderer.
        bubbable.render_variables();

        self.set_translation(bubbable.translation.clone());
        self.output.build(bubbable);

        let mut env: minijinja::Environment = engine::init_jinja_environnement();

        if json.is_array() {
            self.do_render(json.as_array().unwrap(), &mut env);
        } else {
            self.do_render(&[json.to_owned()], &mut env);
        }
    }

    /// Recursively render a serde_json Value.
    /// @todo is it a better place to wrap Value in a vec?
    pub fn do_render(&mut self, data: &[Value], env: &mut Environment) {
        for element in data.iter() {
            match element {
                Value::String(string) => {
                    let escaped: String = HtmlEscape(string).to_string();
                    self.output.add_body(&escaped);
                }
                Value::Bool(boolean) => {
                    self.output.add_body(boolean.to_string().as_str());
                }
                Value::Number(number) => {
                    self.output.add_body(number.to_string().as_str());
                }
                Value::Array(array) => {
                    self.do_render(array, env);
                }
                Value::Object(obj) => {
                    let ctx = context! { _translation => self.translation };
                    let mut renderable = Renderable::new(obj.to_owned());
                    renderable.build_with_env(env, ctx);
                    self.output.add_body_nl(&renderable.to_html_string());
                }
                _ => {
                    // @todo [devtools] log something
                    // todo!();
                }
            };
        }
    }
}

impl Output for Renderer {
    // @todo deprecate as we want to work only with serde_json::Value or minijinja::value::Value
    fn to_output_string(&self, output: &str) -> String {
        let mut style: String = "".to_string();
        if !self.output.style.is_empty() {
            style = format!("<style>\n{}</style>\n", self.output.style);
        }

        let response: String = match output {
            "_test" => self.output.body.to_string(),
            "_test_full"=> format!(
                "{}{}{}{}{}{}{}",
                self.output.body,
                self.output.head,
                style,
                self.output.system_stylesheet,
                self.output.stylesheet,
                self.output.system_javascript,
                self.output.javascript,
            ),
            "full" => format!(
                "<!DOCTYPE html>\n<html>\n\t<head>\n{}\n{}\n{}\n{}\n\t</head>\n\t<body>\n{}\n{}\n{}\n\t</body>\n</html>",
                self.output.head,
                self.output.system_stylesheet,
                self.output.stylesheet,
                style,
                self.output.body,
                self.output.system_javascript,
                self.output.javascript,
            ),
            "json" => serde_json::to_string(&self.to_output()).unwrap_or_else(|_| "".to_string()),
            "_logs" => "".to_string(),
            _ => format!("<!-- Unknown output: {} -->", output),
        };

        response
    }

    fn to_output(&self) -> Value {
        json!({
            "attached": self.output.head,
            "body": self.output.body,
            "system_stylesheet": self.output.system_stylesheet,
            "system_javascript": self.output.system_javascript_src,
            "stylesheet": self.output.stylesheet,
            "javascript": self.output.javascript_src,
            "variables": self.output.style,
        })
    }
}

/// Generate the response based on output type.
pub trait Output: std::fmt::Debug {
    fn to_output_string(&self, output: &str) -> String;
    fn to_output(&self) -> Value;
}

impl std::fmt::Display for dyn Output {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        write!(f, "{}", self.to_output_string("full"))
    }
}