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
use crate::{
    hydration::HydrationKey, ComponentRepr, HydrationCtx, IntoView, View,
};
use leptos_reactive::Scope;

/// Trait for converting any iterable into a [`Fragment`].
pub trait IntoFragment {
    /// Consumes this type, returning [`Fragment`].
    fn into_fragment(self, cx: Scope) -> Fragment;
}

impl<I, V> IntoFragment for I
where
    I: IntoIterator<Item = V>,
    V: IntoView,
{
    fn into_fragment(self, cx: Scope) -> Fragment {
        self.into_iter().map(|v| v.into_view(cx)).collect()
    }
}

/// Represents a group of [`views`](View).
#[derive(Debug, Clone)]
pub struct Fragment {
    id: HydrationKey,
    /// The nodes contained in the fragment.
    pub nodes: Vec<View>,
    #[cfg(debug_assertions)]
    pub(crate) view_marker: Option<String>,
}

impl FromIterator<View> for Fragment {
    fn from_iter<T: IntoIterator<Item = View>>(iter: T) -> Self {
        Fragment::new(iter.into_iter().collect())
    }
}

impl From<View> for Fragment {
    fn from(view: View) -> Self {
        Fragment::new(vec![view])
    }
}

impl Fragment {
    /// Creates a new [`Fragment`] from a [`Vec<Node>`].
    pub fn new(nodes: Vec<View>) -> Self {
        Self::new_with_id(HydrationCtx::id(), nodes)
    }

    /// Creates a new [`Fragment`] from a function that returns [`Vec<Node>`].
    pub fn lazy(nodes: impl FnOnce() -> Vec<View>) -> Self {
        Self::new_with_id(HydrationCtx::id(), nodes())
    }

    /// Creates a new [`Fragment`] with the given hydration ID from a [`Vec<Node>`].
    pub fn new_with_id(id: HydrationKey, nodes: Vec<View>) -> Self {
        Self {
            id,
            nodes,
            #[cfg(debug_assertions)]
            view_marker: None,
        }
    }

    /// Gives access to the [View] children contained within the fragment.
    pub fn as_children(&self) -> &[View] {
        &self.nodes
    }

    /// Returns the fragment's hydration ID.
    pub fn id(&self) -> &HydrationKey {
        &self.id
    }

    #[cfg(debug_assertions)]
    /// Adds an optional marker indicating the view macro source.
    pub fn with_view_marker(mut self, marker: impl Into<String>) -> Self {
        self.view_marker = Some(marker.into());
        self
    }
}

impl IntoView for Fragment {
    #[cfg_attr(debug_assertions, instrument(level = "trace", name = "</>", skip_all, fields(children = self.nodes.len())))]
    fn into_view(self, cx: leptos_reactive::Scope) -> View {
        let mut frag = ComponentRepr::new_with_id("", self.id.clone());

        #[cfg(debug_assertions)]
        {
            frag.view_marker = self.view_marker;
        }

        frag.children = self.nodes;

        frag.into_view(cx)
    }
}