2023-09-19 19:19:22 +00:00
|
|
|
use super::{
|
|
|
|
AbsoluteLength, Bounds, DefiniteLength, Edges, Layout, Length, Pixels, Point, Result, Size,
|
|
|
|
Style,
|
|
|
|
};
|
2023-09-21 18:18:09 +00:00
|
|
|
use collections::HashMap;
|
2023-09-19 19:19:22 +00:00
|
|
|
use std::fmt::Debug;
|
2023-09-21 02:28:32 +00:00
|
|
|
use taffy::{
|
|
|
|
geometry::Size as TaffySize,
|
|
|
|
style::AvailableSpace as TaffyAvailableSpace,
|
2023-09-21 18:18:09 +00:00
|
|
|
tree::{Measurable, MeasureFunc, NodeId},
|
2023-09-21 02:28:32 +00:00
|
|
|
Taffy,
|
|
|
|
};
|
2023-09-19 19:19:22 +00:00
|
|
|
|
2023-09-21 18:18:09 +00:00
|
|
|
pub struct TaffyLayoutEngine {
|
|
|
|
taffy: Taffy,
|
|
|
|
children_to_parents: HashMap<LayoutId, LayoutId>,
|
|
|
|
absolute_layouts: HashMap<LayoutId, Layout>,
|
2023-09-21 02:28:32 +00:00
|
|
|
}
|
|
|
|
|
2023-09-19 19:19:22 +00:00
|
|
|
impl TaffyLayoutEngine {
|
|
|
|
pub fn new() -> Self {
|
2023-09-21 18:18:09 +00:00
|
|
|
TaffyLayoutEngine {
|
|
|
|
taffy: Taffy::new(),
|
|
|
|
children_to_parents: HashMap::default(),
|
|
|
|
absolute_layouts: HashMap::default(),
|
|
|
|
}
|
2023-09-19 19:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn request_layout(
|
|
|
|
&mut self,
|
|
|
|
style: Style,
|
|
|
|
rem_size: Pixels,
|
|
|
|
children: &[LayoutId],
|
|
|
|
) -> Result<LayoutId> {
|
|
|
|
let style = style.to_taffy(rem_size);
|
|
|
|
if children.is_empty() {
|
2023-09-21 18:18:09 +00:00
|
|
|
Ok(self.taffy.new_leaf(style)?.into())
|
2023-09-19 19:19:22 +00:00
|
|
|
} else {
|
2023-09-21 18:18:09 +00:00
|
|
|
let parent_id = self
|
|
|
|
.taffy
|
|
|
|
// This is safe because LayoutId is repr(transparent) to taffy::tree::NodeId.
|
|
|
|
.new_with_children(style, unsafe { std::mem::transmute(children) })?
|
|
|
|
.into();
|
|
|
|
for child_id in children {
|
|
|
|
self.children_to_parents.insert(*child_id, parent_id);
|
|
|
|
}
|
|
|
|
Ok(parent_id)
|
2023-09-19 19:19:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-20 20:32:55 +00:00
|
|
|
pub fn request_measured_layout(
|
|
|
|
&mut self,
|
|
|
|
style: Style,
|
|
|
|
rem_size: Pixels,
|
2023-09-21 02:28:32 +00:00
|
|
|
measure: impl Fn(Size<Option<Pixels>>, Size<AvailableSpace>) -> Size<Pixels>
|
|
|
|
+ Send
|
|
|
|
+ Sync
|
|
|
|
+ 'static,
|
2023-09-20 20:32:55 +00:00
|
|
|
) -> Result<LayoutId> {
|
|
|
|
let style = style.to_taffy(rem_size);
|
|
|
|
|
2023-09-21 02:28:32 +00:00
|
|
|
let measurable = Box::new(Measureable(measure)) as Box<dyn Measurable>;
|
|
|
|
Ok(self
|
2023-09-21 18:18:09 +00:00
|
|
|
.taffy
|
|
|
|
.new_leaf_with_measure(style, MeasureFunc::Boxed(measurable))?
|
|
|
|
.into())
|
2023-09-20 20:32:55 +00:00
|
|
|
}
|
|
|
|
|
2023-09-19 19:19:22 +00:00
|
|
|
pub fn layout(&mut self, id: LayoutId) -> Result<Layout> {
|
2023-09-21 18:18:09 +00:00
|
|
|
if let Some(layout) = self.absolute_layouts.get(&id).cloned() {
|
|
|
|
return Ok(layout);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut relative_layout: Layout = self.taffy.layout(id.into()).map(Into::into)?;
|
|
|
|
if let Some(parent_id) = self.children_to_parents.get(&id).copied() {
|
|
|
|
let parent_layout = self.layout(parent_id)?;
|
|
|
|
relative_layout.bounds.origin += parent_layout.bounds.origin;
|
|
|
|
}
|
|
|
|
self.absolute_layouts.insert(id, relative_layout.clone());
|
|
|
|
|
|
|
|
Ok(relative_layout)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
|
|
|
|
#[repr(transparent)]
|
|
|
|
pub struct LayoutId(NodeId);
|
|
|
|
|
|
|
|
impl std::hash::Hash for LayoutId {
|
|
|
|
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
|
|
|
|
u64::from(self.0).hash(state);
|
2023-09-19 19:19:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-21 18:18:09 +00:00
|
|
|
impl From<NodeId> for LayoutId {
|
|
|
|
fn from(node_id: NodeId) -> Self {
|
|
|
|
Self(node_id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<LayoutId> for NodeId {
|
|
|
|
fn from(layout_id: LayoutId) -> NodeId {
|
|
|
|
layout_id.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub enum AvailableSpace {
|
|
|
|
/// The amount of space available is the specified number of pixels
|
|
|
|
Definite(Pixels),
|
|
|
|
/// The amount of space available is indefinite and the node should be laid out under a min-content constraint
|
|
|
|
MinContent,
|
|
|
|
/// The amount of space available is indefinite and the node should be laid out under a max-content constraint
|
|
|
|
MaxContent,
|
|
|
|
}
|
|
|
|
|
2023-09-20 20:32:55 +00:00
|
|
|
struct Measureable<F>(F);
|
|
|
|
|
|
|
|
impl<F> taffy::tree::Measurable for Measureable<F>
|
|
|
|
where
|
2023-09-21 02:28:32 +00:00
|
|
|
F: Send + Sync + Fn(Size<Option<Pixels>>, Size<AvailableSpace>) -> Size<Pixels>,
|
2023-09-20 20:32:55 +00:00
|
|
|
{
|
|
|
|
fn measure(
|
|
|
|
&self,
|
2023-09-21 02:28:32 +00:00
|
|
|
known_dimensions: TaffySize<Option<f32>>,
|
|
|
|
available_space: TaffySize<TaffyAvailableSpace>,
|
|
|
|
) -> TaffySize<f32> {
|
|
|
|
let known_dimensions: Size<Option<f32>> = known_dimensions.into();
|
|
|
|
let known_dimensions: Size<Option<Pixels>> = known_dimensions.map(|d| d.map(Into::into));
|
|
|
|
let available_space = available_space.into();
|
|
|
|
let size = (self.0)(known_dimensions, available_space);
|
|
|
|
size.into()
|
2023-09-20 20:32:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-19 19:19:22 +00:00
|
|
|
trait ToTaffy<Output> {
|
|
|
|
fn to_taffy(&self, rem_size: Pixels) -> Output;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToTaffy<taffy::style::Style> for Style {
|
|
|
|
fn to_taffy(&self, rem_size: Pixels) -> taffy::style::Style {
|
|
|
|
taffy::style::Style {
|
|
|
|
display: self.display,
|
|
|
|
overflow: self.overflow.clone().into(),
|
|
|
|
scrollbar_width: self.scrollbar_width,
|
|
|
|
position: self.position,
|
|
|
|
inset: self.inset.to_taffy(rem_size),
|
|
|
|
size: self.size.to_taffy(rem_size),
|
|
|
|
min_size: self.min_size.to_taffy(rem_size),
|
|
|
|
max_size: self.max_size.to_taffy(rem_size),
|
|
|
|
aspect_ratio: self.aspect_ratio,
|
|
|
|
margin: self.margin.to_taffy(rem_size),
|
|
|
|
padding: self.padding.to_taffy(rem_size),
|
|
|
|
border: self.border_widths.to_taffy(rem_size),
|
|
|
|
align_items: self.align_items,
|
|
|
|
align_self: self.align_self,
|
|
|
|
align_content: self.align_content,
|
|
|
|
justify_content: self.justify_content,
|
|
|
|
gap: self.gap.to_taffy(rem_size),
|
|
|
|
flex_direction: self.flex_direction,
|
|
|
|
flex_wrap: self.flex_wrap,
|
|
|
|
flex_basis: self.flex_basis.to_taffy(rem_size),
|
|
|
|
flex_grow: self.flex_grow,
|
|
|
|
flex_shrink: self.flex_shrink,
|
|
|
|
..Default::default() // Ignore grid properties for now
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// impl ToTaffy for Bounds<Length> {
|
|
|
|
// type Output = taffy::prelude::Bounds<taffy::prelude::LengthPercentageAuto>;
|
|
|
|
|
|
|
|
// fn to_taffy(
|
|
|
|
// &self,
|
|
|
|
// rem_size: Pixels,
|
|
|
|
// ) -> taffy::prelude::Bounds<taffy::prelude::LengthPercentageAuto> {
|
|
|
|
// taffy::prelude::Bounds {
|
|
|
|
// origin: self.origin.to_taffy(rem_size),
|
|
|
|
// size: self.size.to_taffy(rem_size),
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
impl ToTaffy<taffy::style::LengthPercentageAuto> for Length {
|
|
|
|
fn to_taffy(&self, rem_size: Pixels) -> taffy::prelude::LengthPercentageAuto {
|
|
|
|
match self {
|
|
|
|
Length::Definite(length) => length.to_taffy(rem_size),
|
|
|
|
Length::Auto => taffy::prelude::LengthPercentageAuto::Auto,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToTaffy<taffy::style::Dimension> for Length {
|
|
|
|
fn to_taffy(&self, rem_size: Pixels) -> taffy::prelude::Dimension {
|
|
|
|
match self {
|
|
|
|
Length::Definite(length) => length.to_taffy(rem_size),
|
|
|
|
Length::Auto => taffy::prelude::Dimension::Auto,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToTaffy<taffy::style::LengthPercentage> for DefiniteLength {
|
|
|
|
fn to_taffy(&self, rem_size: Pixels) -> taffy::style::LengthPercentage {
|
|
|
|
match self {
|
|
|
|
DefiniteLength::Absolute(length) => match length {
|
|
|
|
AbsoluteLength::Pixels(pixels) => {
|
|
|
|
taffy::style::LengthPercentage::Length(pixels.into())
|
|
|
|
}
|
|
|
|
AbsoluteLength::Rems(rems) => {
|
|
|
|
taffy::style::LengthPercentage::Length((*rems * rem_size).into())
|
|
|
|
}
|
|
|
|
},
|
|
|
|
DefiniteLength::Fraction(fraction) => {
|
|
|
|
taffy::style::LengthPercentage::Percent(*fraction)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToTaffy<taffy::style::LengthPercentageAuto> for DefiniteLength {
|
|
|
|
fn to_taffy(&self, rem_size: Pixels) -> taffy::style::LengthPercentageAuto {
|
|
|
|
match self {
|
|
|
|
DefiniteLength::Absolute(length) => match length {
|
|
|
|
AbsoluteLength::Pixels(pixels) => {
|
|
|
|
taffy::style::LengthPercentageAuto::Length(pixels.into())
|
|
|
|
}
|
|
|
|
AbsoluteLength::Rems(rems) => {
|
|
|
|
taffy::style::LengthPercentageAuto::Length((*rems * rem_size).into())
|
|
|
|
}
|
|
|
|
},
|
|
|
|
DefiniteLength::Fraction(fraction) => {
|
|
|
|
taffy::style::LengthPercentageAuto::Percent(*fraction)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToTaffy<taffy::style::Dimension> for DefiniteLength {
|
|
|
|
fn to_taffy(&self, rem_size: Pixels) -> taffy::style::Dimension {
|
|
|
|
match self {
|
|
|
|
DefiniteLength::Absolute(length) => match length {
|
|
|
|
AbsoluteLength::Pixels(pixels) => taffy::style::Dimension::Length(pixels.into()),
|
|
|
|
AbsoluteLength::Rems(rems) => {
|
|
|
|
taffy::style::Dimension::Length((*rems * rem_size).into())
|
|
|
|
}
|
|
|
|
},
|
|
|
|
DefiniteLength::Fraction(fraction) => taffy::style::Dimension::Percent(*fraction),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToTaffy<taffy::style::LengthPercentage> for AbsoluteLength {
|
|
|
|
fn to_taffy(&self, rem_size: Pixels) -> taffy::style::LengthPercentage {
|
|
|
|
match self {
|
|
|
|
AbsoluteLength::Pixels(pixels) => taffy::style::LengthPercentage::Length(pixels.into()),
|
|
|
|
AbsoluteLength::Rems(rems) => {
|
|
|
|
taffy::style::LengthPercentage::Length((*rems * rem_size).into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, T2: Clone + Debug> From<taffy::geometry::Point<T>> for Point<T2>
|
|
|
|
where
|
|
|
|
T: Into<T2>,
|
|
|
|
{
|
|
|
|
fn from(point: taffy::geometry::Point<T>) -> Point<T2> {
|
|
|
|
Point {
|
|
|
|
x: point.x.into(),
|
|
|
|
y: point.y.into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Clone + Debug, T2> Into<taffy::geometry::Point<T2>> for Point<T>
|
|
|
|
where
|
|
|
|
T: Into<T2>,
|
|
|
|
{
|
|
|
|
fn into(self) -> taffy::geometry::Point<T2> {
|
|
|
|
taffy::geometry::Point {
|
|
|
|
x: self.x.into(),
|
|
|
|
y: self.y.into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: ToTaffy<U> + Clone + Debug, U> ToTaffy<taffy::geometry::Size<U>> for Size<T> {
|
|
|
|
fn to_taffy(&self, rem_size: Pixels) -> taffy::geometry::Size<U> {
|
|
|
|
taffy::geometry::Size {
|
|
|
|
width: self.width.to_taffy(rem_size).into(),
|
|
|
|
height: self.height.to_taffy(rem_size).into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, U> ToTaffy<taffy::geometry::Rect<U>> for Edges<T>
|
|
|
|
where
|
|
|
|
T: ToTaffy<U> + Clone + Debug,
|
|
|
|
{
|
|
|
|
fn to_taffy(&self, rem_size: Pixels) -> taffy::geometry::Rect<U> {
|
|
|
|
taffy::geometry::Rect {
|
|
|
|
top: self.top.to_taffy(rem_size).into(),
|
|
|
|
right: self.right.to_taffy(rem_size).into(),
|
|
|
|
bottom: self.bottom.to_taffy(rem_size).into(),
|
|
|
|
left: self.left.to_taffy(rem_size).into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-21 02:28:32 +00:00
|
|
|
impl<T: Into<U>, U: Clone + Debug> From<TaffySize<T>> for Size<U> {
|
|
|
|
fn from(taffy_size: taffy::geometry::Size<T>) -> Self {
|
|
|
|
Size {
|
|
|
|
width: taffy_size.width.into(),
|
|
|
|
height: taffy_size.height.into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Into<U> + Clone + Debug, U> From<Size<T>> for taffy::geometry::Size<U> {
|
|
|
|
fn from(size: Size<T>) -> Self {
|
|
|
|
taffy::geometry::Size {
|
|
|
|
width: size.width.into(),
|
|
|
|
height: size.height.into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// impl From<TaffySize<Option<f32>>> for Size<Option<Pixels>> {
|
|
|
|
// fn from(value: TaffySize<Option<f32>>) -> Self {
|
|
|
|
// Self {
|
|
|
|
// width: value.width.map(Into::into),
|
|
|
|
// height: value.height.map(Into::into),
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// impl From<TaffySize<TaffyAvailableSpace>> for Size<AvailableSpace> {
|
|
|
|
// fn from(taffy_size: TaffySize<TaffyAvailableSpace>) -> Self {
|
|
|
|
// Size {
|
|
|
|
// width: From::from(taffy_size.width),
|
|
|
|
// height: From::from(taffy_size.height),
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
impl From<TaffyAvailableSpace> for AvailableSpace {
|
|
|
|
fn from(space: TaffyAvailableSpace) -> Self {
|
|
|
|
match space {
|
|
|
|
TaffyAvailableSpace::Definite(value) => AvailableSpace::Definite(Pixels(value)),
|
|
|
|
TaffyAvailableSpace::MinContent => AvailableSpace::MinContent,
|
|
|
|
TaffyAvailableSpace::MaxContent => AvailableSpace::MaxContent,
|
2023-09-19 19:19:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<&taffy::tree::Layout> for Layout {
|
|
|
|
fn from(layout: &taffy::tree::Layout) -> Self {
|
|
|
|
Layout {
|
|
|
|
order: layout.order,
|
|
|
|
bounds: Bounds {
|
|
|
|
origin: layout.location.into(),
|
|
|
|
size: layout.size.into(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|