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
//! Frontend AST to HTML AST conversion.
use std::iter::FromIterator;
use std::collections::{HashSet, HashMap};
use std::rc::Rc;
use std::borrow::Cow;
use crate::frontend::data::*;
use crate::frontend::ast::*;
use crate::frontend::pass;

use crate::codegen::html;

/// Ensure that `Node` is first canonicalized!
/// - I.e. make sure the inputs have been passes through the `html_canonicalization` function.
pub(crate) fn node_to_html<'a>(node: Node<'a>) -> html::Node<'a> {
    fn enclosure<'a>(
        start: &'a str,
        children: Vec<Node<'a>>,
        end: &'a str,
    ) -> html::Node<'a> {
        html::Node::Fragment(
            vec![
                vec![html::Node::new_text(start)],
                children.into_iter().map(node_to_html).collect::<Vec<_>>(),
                vec![html::Node::new_text(end)],
            ].concat()
        )
    }
    fn enclosure_cow<'a>(
        start: Atom<'a>,
        children: Vec<Node<'a>>,
        end: Option<Atom<'a>>,
    ) -> html::Node<'a> {
        let end = match end {
            Some(x) => x,
            None => Cow::Owned(String::new()),
        };
        html::Node::Fragment(
            vec![
                vec![html::Node::Text(Text(start))],
                children.into_iter().map(node_to_html).collect::<Vec<_>>(),
                vec![html::Node::Text(Text(end))],
            ].concat()
        )
    }
    fn map_children<'a>(children: Vec<Node<'a>>) -> Vec<html::Node<'a>> {
        children.into_iter().map(node_to_html).collect::<Vec<_>>()
    }
    fn to_html_attributes<'a>(parameters: Vec<Node<'a>>) -> HashMap<Text<'a>, Text<'a>> {
        parameters
            .into_iter()
            .filter_map(|node| -> Option<Text<'a>> {
                match node {
                    Node::String(Ann{data: txt, ..}) if !txt.trim().is_empty() => {
                        Some(Text(txt))
                    }
                    _ => None
                }
            })
            .map(|x| -> (Text<'a>, Text<'a>) {
                if let Some((l, r)) = x.0.split_once("=") {
                    (Text(Cow::Owned(l.to_owned())), Text(Cow::Owned(r.to_owned())))
                } else {
                    (x, Text(Cow::Borrowed("")))
                }
            })
            .collect::<HashMap<_, _>>()
    }
    match node {
        Node::Tag(node) => {
            html::Node::Element(html::Element {
                name: Text(node.name.data),
                attributes: node.parameters
                    .map(to_html_attributes)
                    .unwrap_or_default(),
                children: map_children(node.children),
            })
        },
        Node::Enclosure(Ann{data: Enclosure {
            kind: EnclosureKind::CurlyBrace,
            children
        }, ..}) => {
            enclosure(
                "{",
                children,
                "}"
            )
        },
        Node::Enclosure(Ann{data: Enclosure {
            kind: EnclosureKind::Parens,
            children
        }, ..}) => {
            enclosure(
                "(",
                children,
                ")"
            )
        },
        Node::Enclosure(Ann{data: Enclosure {
            kind: EnclosureKind::Fragment,
            children
        }, ..}) => {
            html::Node::Fragment(map_children(children))
        },
        Node::Enclosure(Ann{data: Enclosure {
            kind: EnclosureKind::SquareParen,
            children
        }, ..}) => {
            enclosure(
                "[",
                children,
                "]"
            )
        },
        Node::Enclosure(Ann{data: Enclosure {
            kind: EnclosureKind::Error{open, close},
            children
        }, ..}) => {
            enclosure_cow(
                open,
                children,
                close
            )
        },
        Node::Ident(Ann{data, ..}) => {
            html::Node::Text(Text::new("\\").append(Text(data)))
        },
        Node::String(Ann{data, ..}) => {
            html::Node::Text(Text(data))
        },
        Node::InvalidToken(Ann{data, ..}) => {
            html::Node::Text(Text(data))
        }
    }
}