use crate::{
    hydration::HydrationKey, ComponentRepr, HydrationCtx, IntoView, View,
};
pub trait IntoFragment {
    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 = "info", skip_all,)
    )]
    fn into_fragment(self) -> Fragment {
        self.into_iter().map(|v| v.into_view()).collect()
    }
}
#[derive(Debug, Clone)]
pub struct Fragment {
    id: Option<HydrationKey>,
    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 {
    #[inline(always)]
    pub fn new(nodes: Vec<View>) -> Self {
        Self::new_with_id(HydrationCtx::id(), nodes)
    }
    #[inline(always)]
    pub fn lazy(nodes: impl FnOnce() -> Vec<View>) -> Self {
        Self::new_with_id(HydrationCtx::id(), nodes())
    }
    #[inline(always)]
    pub const fn new_with_id(
        id: Option<HydrationKey>,
        nodes: Vec<View>,
    ) -> Self {
        Self {
            id,
            nodes,
            #[cfg(debug_assertions)]
            view_marker: None,
        }
    }
    #[inline(always)]
    pub fn as_children(&self) -> &[View] {
        &self.nodes
    }
    #[inline(always)]
    pub fn id(&self) -> &Option<HydrationKey> {
        &self.id
    }
    #[cfg(debug_assertions)]
    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 = "info", name = "</>", skip_all, fields(children = self.nodes.len())))]
    fn into_view(self) -> View {
        self.into()
    }
}