Table alignment and docs

This commit is contained in:
Martin Haug 2022-12-21 14:24:22 +01:00
parent c06be66990
commit be83b3d687

View File

@ -1,9 +1,35 @@
use crate::layout::{GridNode, TrackSizing, TrackSizings}; use crate::layout::{AlignNode, GridNode, TrackSizing, TrackSizings};
use crate::prelude::*; use crate::prelude::*;
/// # Table /// # Table
/// A table of items. /// A table of items.
/// ///
/// Tables are used to arrange content in cells. Cells can contain arbitray
/// content, including multiple paragraphs and are specified in row-major order.
/// Because tables are [grids](@grid) with configurable cell strokes and
/// padding, refer to the [grid](@grid) docs for more information on how to size
/// the table tracks.
///
/// ## Example
/// ```
/// #table(
/// columns: (1fr, auto, auto),
/// padding: 10pt,
/// align: horizon,
/// [], [*Area*], [*Parameters*],
/// image("cylinder.svg", fit: "contain"),
/// $ pi h (D^2 - d^2) / 4 $,
/// [
/// $h$: height \
/// $D$: outer radius \
/// $d$: inner radius
/// ],
/// image("tetrahedron.svg", fit: "contain"),
/// $ sqrt(2) / 12 a^3 $,
/// [$a$: edge length]
/// )
/// ```
///
/// ## Parameters /// ## Parameters
/// - cells: Content (positional, variadic) /// - cells: Content (positional, variadic)
/// The contents of the table cells. /// The contents of the table cells.
@ -11,18 +37,33 @@ use crate::prelude::*;
/// - rows: TrackSizings (named) /// - rows: TrackSizings (named)
/// Defines the row sizes. /// Defines the row sizes.
/// ///
/// See [the respective `grid` argument](@grid/rows) for more information
/// on sizing tracks.
///
/// - columns: TrackSizings (named) /// - columns: TrackSizings (named)
/// Defines the column sizes. /// Defines the column sizes.
/// ///
/// See [the respective `grid` argument](@grid/columns) for more information
/// on sizing tracks.
///
/// - gutter: TrackSizings (named) /// - gutter: TrackSizings (named)
/// Defines the gaps between rows & columns. /// Defines the gaps between rows & columns.
/// ///
/// See [the respective `grid` argument](@grid/gutter) for more information
/// on gutter.
///
/// - column-gutter: TrackSizings (named) /// - column-gutter: TrackSizings (named)
/// Defines the gaps between columns. Takes precedence over `gutter`. /// Defines the gaps between columns. Takes precedence over `gutter`.
/// ///
/// See [the respective `grid` argument](@grid/column-gutter) for more information
/// on gutter.
///
/// - row-gutter: TrackSizings (named) /// - row-gutter: TrackSizings (named)
/// Defines the gaps between rows. Takes precedence over `gutter`. /// Defines the gaps between rows. Takes precedence over `gutter`.
/// ///
/// See [the respective `grid` argument](@grid/row-gutter) for more information
/// on gutter.
///
/// ## Category /// ## Category
/// basics /// basics
#[func] #[func]
@ -40,11 +81,44 @@ pub struct TableNode {
#[node] #[node]
impl TableNode { impl TableNode {
/// How to fill the cells. /// How to fill the cells.
///
/// This can either be a color or a function that returns a color. The
/// function is passed the cell's column and row index, starting at zero.
/// This can be used to implement striped tables.
///
/// # Example
/// ```
/// #table(
/// fill: (col, _) => if odd(col) { luma(240) } else { luma(255) },
/// align: (col, row) =>
/// if row == 0 { center }
/// else if col == 0 { left }
/// else { right },
/// columns: 4,
/// [], [*Q1*], [*Q2*], [*Q3*],
/// [Revenue:], [1000 €], [2000 €], [3000 €],
/// [Expenses:], [500 €], [1000 €], [1500 €],
/// [Profit:], [500 €], [1000 €], [1500 €],
/// )
/// ```
#[property(referenced)] #[property(referenced)]
pub const FILL: Celled<Option<Paint>> = Celled::Value(None); pub const FILL: Celled<Option<Paint>> = Celled::Value(None);
/// How to align the cell's content.
///
/// This can either be a single alignment or a function that returns an
/// alignment. The function is passed the cell's column and row index,
/// starting at zero. If set to `{auto}`, the outer alignment is used.
#[property(referenced)]
pub const ALIGN: Celled<Smart<Axes<Option<GenAlign>>>> = Celled::Value(Smart::Auto);
/// How to stroke the cells. /// How to stroke the cells.
///
/// This can be a color, a stroke width, both, or `{none}` to disable
/// the stroke.
#[property(resolve, fold)] #[property(resolve, fold)]
pub const STROKE: Option<PartialStroke> = Some(PartialStroke::default()); pub const STROKE: Option<PartialStroke> = Some(PartialStroke::default());
/// How much to pad the cells's content. /// How much to pad the cells's content.
pub const PADDING: Rel<Length> = Abs::pt(5.0).into(); pub const PADDING: Rel<Length> = Abs::pt(5.0).into();
@ -89,6 +163,7 @@ impl Layout for TableNode {
let fill = styles.get(Self::FILL); let fill = styles.get(Self::FILL);
let stroke = styles.get(Self::STROKE).map(PartialStroke::unwrap_or_default); let stroke = styles.get(Self::STROKE).map(PartialStroke::unwrap_or_default);
let padding = styles.get(Self::PADDING); let padding = styles.get(Self::PADDING);
let align = styles.get(Self::ALIGN);
let cols = self.tracks.x.len().max(1); let cols = self.tracks.x.len().max(1);
let cells = self let cells = self
@ -99,12 +174,16 @@ impl Layout for TableNode {
.map(|(i, child)| { .map(|(i, child)| {
let mut child = child.padded(Sides::splat(padding)); let mut child = child.padded(Sides::splat(padding));
let x = i % cols;
let y = i / cols;
if let Smart::Custom(alignment) = align.resolve(vt, x, y)? {
child = child.styled(AlignNode::ALIGNS, alignment)
}
if let Some(stroke) = stroke { if let Some(stroke) = stroke {
child = child.stroked(stroke); child = child.stroked(stroke);
} }
let x = i % cols;
let y = i / cols;
if let Some(fill) = fill.resolve(vt, x, y)? { if let Some(fill) = fill.resolve(vt, x, y)? {
child = child.filled(fill); child = child.filled(fill);
} }