1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use super::*;
mod aspect;

use self::aspect::Aspect;

#[doc=include_str!("readme.md")]
#[derive(Clone, Debug)]
pub struct TailwindAspect {
    kind: Aspect,
}

impl<T> From<T> for TailwindAspect
where
    T: Into<String>,
{
    fn from(kind: T) -> Self {
        Self { kind: Aspect::Standard(kind.into()) }
    }
}

impl Display for TailwindAspect {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(f, "aspect-{}", self.kind)
    }
}

impl TailwindInstance for TailwindAspect {
    fn attributes(&self, _: &TailwindBuilder) -> CssAttributes {
        css_attributes! {
            "aspect-ratio" => self.kind.get_properties()
        }
    }
}

impl TailwindAspect {
    /// <https://tailwindcss.com/docs/aspect-ratio>
    pub fn parse(pattern: &[&str], arbitrary: &TailwindArbitrary) -> Result<Self> {
        Ok(Self { kind: Aspect::parse(pattern, arbitrary)? })
    }
    /// dispatch to [aspect-ratio](https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio)
    pub fn parse_arbitrary(arbitrary: &TailwindArbitrary) -> Result<Self> {
        Ok(Self { kind: Aspect::parse_arbitrary(arbitrary)? })
    }
    /// <https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio>
    pub fn check_valid(mode: &str) -> bool {
        Aspect::check_valid(mode)
    }
}