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
use crate::dom::{Element, MemoryDOM, MemoryElement, DOM};
use crate::extensions::attributes::Attributes;
use crate::extensions::Extension;
use std::cell::RefCell;
use std::rc::Rc;
mod dom;
mod extensions;

#[derive(Debug)]
pub struct Halcyon {
    api: Box<DOM>,
    current_vnode: RefCell<Option<VirtualNode>>,
    extensions: Vec<Box<Extension>>,
}

impl Halcyon {
    pub fn new(api: Box<DOM>, extensions: Vec<Box<Extension>>) -> Halcyon {
        Halcyon {
            api: api,
            current_vnode: RefCell::new(None),
            extensions: extensions,
        }
    }

    pub fn has_patched(&self) -> bool {
        let mut c = self.current_vnode.borrow();
        if let None = *c {
            return false;
        }
        return true;
    }

    pub fn patch(&self, new_vnode: VirtualNode) {
        let mut c = self.current_vnode.borrow_mut();
        if let None = *c {
            *c = Some(new_vnode);
            return;
        }

        for e in self.extensions.iter() {
            e.pre();
        }
        *c = Some(new_vnode);
        for e in self.extensions.iter() {
            e.post();
        }
    }
}

#[derive(Debug)]
pub enum VirtualNode {
    Element(VirtualNodeElement),
    Text(VirtualNodeText),
}

impl VirtualNode {
    fn from_element(e: Rc<RefCell<Element>>) -> VirtualNode {
        VirtualNode::Element(VirtualNodeElement {
            selector: String::from("div"),
            data: None,
            children: None,
            element: Some(e),
            list_key: None,
        })
    }
}

type VirtualNodeData = i32;
type Key = i32;

#[derive(Debug)]
pub struct VirtualNodeElement {
    selector: String,
    data: Option<VirtualNodeData>,
    children: Option<Vec<VirtualNode>>,
    element: Option<Rc<RefCell<Element>>>,
    list_key: Option<Key>,
}

#[derive(Debug)]
pub struct VirtualNodeText {
    element: Option<Rc<RefCell<Element>>>,
    text: String,
}

pub fn h(
    selector: &str,
    data: Option<VirtualNodeData>,
    children: Option<Vec<VirtualNode>>,
) -> VirtualNode {
    VirtualNode::Element(VirtualNodeElement {
        selector: String::from(selector),
        data: data,
        children: children,
        element: None,
        list_key: None,
    })
}

pub fn t(text: &str) -> VirtualNode {
    VirtualNode::Text(VirtualNodeText {
        element: None,
        text: String::from(text),
    })
}

#[cfg(test)]
mod tests {
    use super::*;

    fn render(element: Rc<RefCell<Element>>, container: VirtualNode) {
        thread_local! {
            static HALCYON:Halcyon = Halcyon::new(MemoryDOM::new(),vec![Box::new(Attributes::new())]);
        };
        HALCYON.with(|halcyon| {
            if !halcyon.has_patched() {
                // If it's our first time
                // Render the existing element
                halcyon.patch(VirtualNode::from_element(element));
            }
            // Render the new virtual dom
            halcyon.patch(container);
            println!("{:?}",halcyon);
        });
    }

    fn hello_world(name: Option<&str>) -> VirtualNode {
        let n = match name {
            Some(v) => v,
            _ => "World",
        };
        h("div", None, Some(vec![t(&format!("Hello {}", n))]))
    }

    #[test]
    fn it_works() {
        let body = MemoryElement::new("body");
        render(body.clone(), hello_world(None));
        render(body.clone(), hello_world(Some("Richard")));
    }
}