lightningcss/values/
rect.rsuse crate::error::{ParserError, PrinterError};
use crate::printer::Printer;
use crate::traits::{IsCompatible, Parse, ToCss};
#[cfg(feature = "visitor")]
use crate::visitor::Visit;
use cssparser::*;
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "visitor", derive(Visit))]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "jsonschema", derive(schemars::JsonSchema))]
#[cfg_attr(feature = "into_owned", derive(static_self::IntoOwned))]
pub struct Rect<T>(
pub T,
pub T,
pub T,
pub T,
);
impl<T> Rect<T> {
pub fn new(first: T, second: T, third: T, fourth: T) -> Self {
Rect(first, second, third, fourth)
}
}
impl<T: Default + Clone> Default for Rect<T> {
fn default() -> Rect<T> {
Rect::all(T::default())
}
}
impl<T> Rect<T>
where
T: Clone,
{
pub fn all(v: T) -> Self {
Rect::new(v.clone(), v.clone(), v.clone(), v)
}
pub fn parse_with<'i, 't, Parse>(
input: &mut Parser<'i, 't>,
parse: Parse,
) -> Result<Self, ParseError<'i, ParserError<'i>>>
where
Parse: Fn(&mut Parser<'i, 't>) -> Result<T, ParseError<'i, ParserError<'i>>>,
{
let first = parse(input)?;
let second = if let Ok(second) = input.try_parse(|i| parse(i)) {
second
} else {
return Ok(Self::new(first.clone(), first.clone(), first.clone(), first));
};
let third = if let Ok(third) = input.try_parse(|i| parse(i)) {
third
} else {
return Ok(Self::new(first.clone(), second.clone(), first, second));
};
let fourth = if let Ok(fourth) = input.try_parse(|i| parse(i)) {
fourth
} else {
return Ok(Self::new(first, second.clone(), third, second));
};
Ok(Self::new(first, second, third, fourth))
}
}
impl<'i, T> Parse<'i> for Rect<T>
where
T: Clone + PartialEq + Parse<'i>,
{
fn parse<'t>(input: &mut Parser<'i, 't>) -> Result<Self, ParseError<'i, ParserError<'i>>> {
Self::parse_with(input, T::parse)
}
}
impl<T> ToCss for Rect<T>
where
T: PartialEq + ToCss,
{
fn to_css<W>(&self, dest: &mut Printer<W>) -> Result<(), PrinterError>
where
W: std::fmt::Write,
{
self.0.to_css(dest)?;
let same_vertical = self.0 == self.2;
let same_horizontal = self.1 == self.3;
if same_vertical && same_horizontal && self.0 == self.1 {
return Ok(());
}
dest.write_str(" ")?;
self.1.to_css(dest)?;
if same_vertical && same_horizontal {
return Ok(());
}
dest.write_str(" ")?;
self.2.to_css(dest)?;
if same_horizontal {
return Ok(());
}
dest.write_str(" ")?;
self.3.to_css(dest)
}
}
impl<T: IsCompatible> IsCompatible for Rect<T> {
fn is_compatible(&self, browsers: crate::targets::Browsers) -> bool {
self.0.is_compatible(browsers)
&& self.1.is_compatible(browsers)
&& self.2.is_compatible(browsers)
&& self.3.is_compatible(browsers)
}
}