2020-04-28 19:09:02 -04:00
|
|
|
use crate::parser::Filter;
|
2020-04-12 18:29:40 -04:00
|
|
|
use crate::renderer::errors::RenderError;
|
2020-05-09 14:00:19 -04:00
|
|
|
use crate::renderer::errors::WalkError;
|
2020-05-10 17:12:15 -04:00
|
|
|
use std::any::Any;
|
2020-04-11 22:23:59 -04:00
|
|
|
use std::fmt::Debug;
|
2020-04-11 20:34:16 -04:00
|
|
|
|
2020-05-10 19:01:02 -04:00
|
|
|
pub trait ContextElement:
|
2020-05-10 21:07:31 -04:00
|
|
|
Debug + Walkable + Renderable + Loopable + CloneIntoBoxedContextElement + CompareContextElement
|
2020-05-10 19:01:02 -04:00
|
|
|
{
|
|
|
|
}
|
2020-04-11 20:34:16 -04:00
|
|
|
|
2020-04-11 22:19:54 -04:00
|
|
|
pub trait Walkable {
|
2020-05-09 14:00:19 -04:00
|
|
|
fn walk(&self, segment: &str) -> Result<&dyn ContextElement, WalkError>;
|
2020-04-11 20:34:16 -04:00
|
|
|
}
|
2020-04-28 19:09:02 -04:00
|
|
|
|
|
|
|
pub trait Renderable {
|
|
|
|
fn render(&self, filters: &Vec<Filter>) -> Result<String, RenderError>;
|
|
|
|
}
|
2020-04-28 19:34:52 -04:00
|
|
|
|
|
|
|
pub trait Loopable {
|
|
|
|
/// Return the elements for a Dust section
|
|
|
|
///
|
|
|
|
/// Sections in dust are accomplished with the {#path} syntax. A
|
|
|
|
/// section has a truthiness check performed on it. If that
|
|
|
|
/// truthiness check fails, then it will render the
|
|
|
|
/// else-block. Otherwise if its a scalar value it will render
|
|
|
|
/// once with the context being the element at that path. Finally,
|
|
|
|
/// if its an array-like value then it will render n-times, once
|
|
|
|
/// for each element of the array.
|
2020-05-09 14:14:22 -04:00
|
|
|
fn get_loop_elements(&self) -> Vec<&dyn ContextElement>;
|
2020-04-28 19:34:52 -04:00
|
|
|
}
|
2020-05-10 14:53:12 -04:00
|
|
|
|
2020-05-10 17:12:15 -04:00
|
|
|
pub trait CompareContextElement {
|
|
|
|
fn to_any(&self) -> &dyn Any;
|
2020-05-10 19:16:55 -04:00
|
|
|
|
|
|
|
fn equals(&self, other: &dyn ContextElement) -> bool;
|
2020-05-10 17:12:15 -04:00
|
|
|
}
|
|
|
|
|
2020-05-10 21:07:31 -04:00
|
|
|
pub trait CloneIntoBoxedContextElement {
|
2020-05-10 19:07:41 -04:00
|
|
|
fn clone_to_box(&self) -> Box<dyn ContextElement>;
|
2020-05-10 19:01:02 -04:00
|
|
|
}
|
|
|
|
|
2020-05-10 21:07:31 -04:00
|
|
|
impl<C: 'static + ContextElement + Clone> CloneIntoBoxedContextElement for C {
|
|
|
|
fn clone_to_box(&self) -> Box<dyn ContextElement> {
|
|
|
|
Box::new(self.clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-10 20:58:47 -04:00
|
|
|
impl<'a, 'b> PartialEq<&'b dyn ContextElement> for &'a dyn ContextElement {
|
|
|
|
fn eq(&self, other: &&'b dyn ContextElement) -> bool {
|
2020-05-10 21:00:06 -04:00
|
|
|
self.equals(*other)
|
2020-05-10 20:58:47 -04:00
|
|
|
}
|
|
|
|
}
|