♻️ Refactor core for minimal PageTop setup

This commit is contained in:
Manuel Cillero 2024-11-30 22:15:06 +01:00
parent 2b229573cd
commit 556c9159d3
64 changed files with 192 additions and 6561 deletions

View file

@ -0,0 +1,213 @@
use crate::core::component::{ComponentTrait, Context};
use crate::html::{html, Markup};
use crate::{fn_builder, TypeId};
use std::sync::{Arc, RwLock};
#[derive(Clone)]
pub struct AnyComponent(Arc<RwLock<dyn ComponentTrait>>);
impl AnyComponent {
pub fn with(component: impl ComponentTrait) -> Self {
AnyComponent(Arc::new(RwLock::new(component)))
}
// AnyComponent RENDER.
pub fn render(&self, cx: &mut Context) -> Markup {
self.0.write().unwrap().render(cx)
}
// AnyComponent HELPERS.
fn type_id(&self) -> TypeId {
self.0.read().unwrap().type_id()
}
fn id(&self) -> String {
self.0.read().unwrap().id().unwrap_or_default()
}
}
// *************************************************************************************************
pub struct TypedComponent<C: ComponentTrait>(Arc<RwLock<C>>);
impl<C: ComponentTrait> Clone for TypedComponent<C> {
fn clone(&self) -> Self {
Self(self.0.clone())
}
}
impl<C: ComponentTrait> TypedComponent<C> {
pub fn with(component: C) -> Self {
TypedComponent(Arc::new(RwLock::new(component)))
}
// TypedComponent RENDER.
pub fn render(&self, cx: &mut Context) -> Markup {
self.0.write().unwrap().render(cx)
}
// TypedComponent HELPERS.
fn to_any(&self) -> AnyComponent {
AnyComponent(self.0.clone())
}
}
// *************************************************************************************************
pub enum AnyOp {
Add(AnyComponent),
InsertAfterId(&'static str, AnyComponent),
InsertBeforeId(&'static str, AnyComponent),
Prepend(AnyComponent),
RemoveById(&'static str),
ReplaceById(&'static str, AnyComponent),
Reset,
}
pub enum TypedOp<C: ComponentTrait> {
Add(TypedComponent<C>),
InsertAfterId(&'static str, TypedComponent<C>),
InsertBeforeId(&'static str, TypedComponent<C>),
Prepend(TypedComponent<C>),
RemoveById(&'static str),
ReplaceById(&'static str, TypedComponent<C>),
Reset,
}
#[derive(Clone, Default)]
pub struct Children(Vec<AnyComponent>);
impl Children {
pub fn new() -> Self {
Children::default()
}
pub fn with(any: AnyComponent) -> Self {
Children::default().with_value(AnyOp::Add(any))
}
pub(crate) fn merge(mixes: &[Option<&Children>]) -> Self {
let mut opt = Children::default();
for m in mixes.iter().flatten() {
opt.0.append(&mut m.0.clone());
}
opt
}
// Children BUILDER.
#[fn_builder]
pub fn set_value(&mut self, op: AnyOp) -> &mut Self {
match op {
AnyOp::Add(any) => self.add(any),
AnyOp::InsertAfterId(id, any) => self.insert_after_id(id, any),
AnyOp::InsertBeforeId(id, any) => self.insert_before_id(id, any),
AnyOp::Prepend(any) => self.prepend(any),
AnyOp::RemoveById(id) => self.remove_by_id(id),
AnyOp::ReplaceById(id, any) => self.replace_by_id(id, any),
AnyOp::Reset => self.reset(),
};
self
}
#[fn_builder]
pub fn set_typed<C: ComponentTrait + Default>(&mut self, op: TypedOp<C>) -> &mut Self {
match op {
TypedOp::Add(typed) => self.add(typed.to_any()),
TypedOp::InsertAfterId(id, typed) => self.insert_after_id(id, typed.to_any()),
TypedOp::InsertBeforeId(id, typed) => self.insert_before_id(id, typed.to_any()),
TypedOp::Prepend(typed) => self.prepend(typed.to_any()),
TypedOp::RemoveById(id) => self.remove_by_id(id),
TypedOp::ReplaceById(id, typed) => self.replace_by_id(id, typed.to_any()),
TypedOp::Reset => self.reset(),
};
self
}
#[inline]
fn add(&mut self, any: AnyComponent) {
self.0.push(any);
}
#[inline]
fn insert_after_id(&mut self, id: &str, any: AnyComponent) {
match self.0.iter().position(|c| c.id() == id) {
Some(index) => self.0.insert(index + 1, any),
_ => self.0.push(any),
};
}
#[inline]
fn insert_before_id(&mut self, id: &str, any: AnyComponent) {
match self.0.iter().position(|c| c.id() == id) {
Some(index) => self.0.insert(index, any),
_ => self.0.insert(0, any),
};
}
#[inline]
fn prepend(&mut self, any: AnyComponent) {
self.0.insert(0, any);
}
#[inline]
fn remove_by_id(&mut self, id: &str) {
if let Some(index) = self.0.iter().position(|c| c.id() == id) {
self.0.remove(index);
}
}
#[inline]
fn replace_by_id(&mut self, id: &str, any: AnyComponent) {
for c in &mut self.0 {
if c.id() == id {
*c = any;
break;
}
}
}
#[inline]
fn reset(&mut self) {
self.0.clear();
}
// Children GETTERS.
pub fn len(&self) -> usize {
self.0.len()
}
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
pub fn get_by_id(&self, id: impl Into<String>) -> Option<&AnyComponent> {
let id = id.into();
self.0.iter().find(|c| c.id() == id)
}
pub fn iter_by_id(&self, id: impl Into<String>) -> impl Iterator<Item = &AnyComponent> {
let id = id.into();
self.0.iter().filter(move |&c| c.id() == id)
}
pub fn iter_by_type_id(&self, type_id: TypeId) -> impl Iterator<Item = &AnyComponent> {
self.0.iter().filter(move |&c| c.type_id() == type_id)
}
// Children RENDER.
pub fn render(&self, cx: &mut Context) -> Markup {
html! {
@for c in &self.0 {
(c.render(cx))
}
}
}
}