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

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

impl<I, V> IntoFragment for I
where
    I: IntoIterator<Item = V>,
    V: IntoView,
{
    #[cfg_attr(
        any(debug_assertions, feature = "ssr"),
        instrument(level = "trace", skip_all,)
    )]
    fn into_fragment(self) -> Fragment {
        self.into_iter().map(|v| v.into_view()).collect()
    }
}

/// Represents a group of [`views`](View).
#[must_use = "You are creating a Fragment but not using it. An unused view can \
              cause your view to be rendered as () unexpectedly, and it can \
              also cause issues with client-side hydration."]
#[derive(Debug, Clone)]
pub struct Fragment {
    id: Option<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 From<Fragment> for View {
    fn from(value: Fragment) -> Self {
        let mut frag = ComponentRepr::new_with_id("", value.id);

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

        frag.children = value.nodes;

        frag.into()
    }
}

impl Fragment {
    /// Creates a new [`Fragment`] from a [`Vec<Node>`].
    #[inline(always)]
    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>`].
    #[inline(always)]
    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>`].
    #[inline(always)]
    pub const fn new_with_id(
        id: Option<HydrationKey>,
        nodes: Vec<View>,
    ) -> Self {
        Self {
            id,
            nodes,
            #[cfg(debug_assertions)]
            view_marker: None,
        }
    }

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

    /// Returns the fragment's hydration ID.
    #[inline(always)]
    pub fn id(&self) -> &Option<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) -> View {
        self.into()
    }
}