use comemo::Track;
use crate::diag::{SourceResult, bail};
use crate::engine::Engine;
use crate::foundations::{
Array, Content, Context, Depth, Func, NativeElement, Packed, Smart, StyleChain,
Styles, Value, cast, elem, scope,
};
use crate::introspection::{Locatable, Tagged};
use crate::layout::{Em, Length};
use crate::text::TextElem;
#[elem(scope, title = "Bullet List", Locatable, Tagged)]
pub struct ListElem {
#[default(true)]
pub tight: bool,
#[default(ListMarker::Content(vec![
// These are all available in the default font, vertically centered, and
// roughly of the same size (with the last one having slightly lower
// weight because it is not filled).
TextElem::packed('\u{2022}'), // Bullet
TextElem::packed('\u{2023}'), // Triangular Bullet
TextElem::packed('\u{2013}'), // En-dash
]))]
pub marker: ListMarker,
pub indent: Length,
#[default(Em::new(0.5).into())]
pub body_indent: Length,
pub spacing: Smart<Length>,
#[variadic]
pub children: Vec<Packed<ListItem>>,
#[internal]
#[fold]
#[ghost]
pub depth: Depth,
}
#[scope]
impl ListElem {
#[elem]
type ListItem;
}
#[elem(name = "item", title = "Bullet List Item", Tagged)]
pub struct ListItem {
#[required]
pub body: Content,
}
cast! {
ListItem,
v: Content => v.unpack::<Self>().unwrap_or_else(Self::new)
}
#[derive(Debug, Clone, PartialEq, Hash)]
pub enum ListMarker {
Content(Vec<Content>),
Func(Func),
}
impl ListMarker {
pub fn resolve(
&self,
engine: &mut Engine,
styles: StyleChain,
depth: usize,
) -> SourceResult<Content> {
Ok(match self {
Self::Content(list) => {
list.get(depth % list.len()).cloned().unwrap_or_default()
}
Self::Func(func) => func
.call(engine, Context::new(None, Some(styles)).track(), [depth])?
.display(),
})
}
}
cast! {
ListMarker,
self => match self {
Self::Content(vec) => if vec.len() == 1 {
vec.into_iter().next().unwrap().into_value()
} else {
vec.into_value()
},
Self::Func(func) => func.into_value(),
},
v: Content => Self::Content(vec![v]),
array: Array => {
if array.is_empty() {
bail!("array must contain at least one marker");
}
Self::Content(array.into_iter().map(Value::display).collect())
},
v: Func => Self::Func(v),
}
pub trait ListLike: NativeElement {
type Item: ListItemLike;
fn create(children: Vec<Packed<Self::Item>>, tight: bool) -> Self;
}
pub trait ListItemLike: NativeElement {
fn styled(item: Packed<Self>, styles: Styles) -> Packed<Self>;
}
impl ListLike for ListElem {
type Item = ListItem;
fn create(children: Vec<Packed<Self::Item>>, tight: bool) -> Self {
Self::new(children).with_tight(tight)
}
}
impl ListItemLike for ListItem {
fn styled(mut item: Packed<Self>, styles: Styles) -> Packed<Self> {
item.body.style_in_place(styles);
item
}
}