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
use std::borrow::BorrowMut;
use crate::{DefaultModifiers, Renderable};
use crate::components::{Appendable, Button, ButtonStyle, ChildContainer, View};
use crate::components::icons::Lucide;
use crate::node::{Node, NodeContainer};
#[derive(Debug, Clone)]
pub struct Popup {
children: Vec<Box<dyn Renderable>>,
node: Node,
pub el_to_attach_to: String,
form_to_submit_on_open: Option<String>,
form_to_submit_on_close: Option<String>,
pub window_controls: bool,
pub open: bool,
}
impl NodeContainer for Popup {
fn get_node(&mut self) -> &mut Node {
self.node.borrow_mut()
}
}
impl DefaultModifiers<Popup> for Popup {}
impl Popup {
pub fn new() -> Self {
Popup {
children: vec![],
node: Default::default(),
el_to_attach_to: "".to_string(),
form_to_submit_on_open: None,
form_to_submit_on_close: None,
window_controls: true,
open: false,
}
}
pub fn attach_to(&mut self, el: &str) -> Self {
self.el_to_attach_to = el.to_string();
self.clone()
}
pub fn open(&mut self, is_open: bool) -> Self {
self.open = is_open;
self.clone()
}
pub fn hide_window_controls(&mut self) -> Self {
self.window_controls = false;
self.clone()
}
pub fn on_open_submit_form(&mut self, form_name: &str) -> Self {
self.form_to_submit_on_open = Some(form_name.to_string());
self.clone()
}
pub fn on_close_submit_form(&mut self, form_name: &str) -> Self {
self.form_to_submit_on_close = Some(form_name.to_string());
self.clone()
}
}
impl ChildContainer for Popup {
fn get_children(&mut self) -> &mut Vec<Box<dyn Renderable>> {
return self.children.borrow_mut();
}
}
impl Appendable for Popup {}
impl Renderable for Popup {
fn render(&self) -> Node {
let mut popup = View::new()
.add_class("popup")
.set_attr("data-attach-to", self.el_to_attach_to.as_str());
if let Some(form_name) = &self.form_to_submit_on_open {
popup.set_attr("data-form-to-submit-on-open", form_name);
}
if let Some(form_name) = &self.form_to_submit_on_close {
popup.set_attr("data-form-to-submit-on-close", form_name);
}
if self.open {
popup.add_class("visible");
} else {
popup.remove_class("visible");
}
let mut window = self.clone()
.add_class("popup__window");
if self.window_controls {
window.node.children.push({
View::new()
.add_class("popup__window-bar")
.append_child({
Button::icon_only(Lucide::X, ButtonStyle::Link)
.add_class("popup__window-controls")
})
}.render());
}
window.node.children.push({
let mut content = View::new()
.add_class("popup__window-content");
self.children.iter()
.for_each(|child| {
content.append_child(child.clone());
});
content.render()
});
popup.node.children.push({
window.node
});
popup.node
}
}