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
use leptos_reactive::Scope;

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, 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>,
}

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 }
  }

  /// 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
  }
}

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());

    frag.children = self.nodes;

    frag.into_view(cx)
  }
}