disposition_model_common 0.1.0

SVG diagram generator common data model types.
Documentation
use std::ops::{Deref, DerefMut};

use serde::{Deserialize, Serialize};

/// Additional CSS to place in the SVG's inline `<styles>` section.
///
/// This allows for custom CSS rules such as keyframe animations that
/// cannot be expressed through Tailwind classes alone.
///
/// # Example
///
/// ```yaml
/// css: >-
///   @keyframes stroke-dashoffset-move {
///     0%   { stroke-dasharray: 3; stroke-dashoffset: 30; }
///     100% { stroke-dasharray: 3; stroke-dashoffset: 0; }
///   }
///   @keyframes stroke-dashoffset-move-request {
///     0%   { stroke-dashoffset: 0; }
///     100% { stroke-dashoffset: 228; }
///   }
/// ```
#[cfg_attr(
    all(feature = "schemars", not(feature = "test")),
    derive(schemars::JsonSchema)
)]
#[derive(Clone, Debug, Default, PartialEq, Eq, Deserialize, Serialize)]
pub struct Css(String);

impl Css {
    /// Returns a new empty `Css`.
    pub fn new() -> Self {
        Self::default()
    }

    /// Returns a new `Css` with the given content.
    pub fn from_string(css: String) -> Self {
        Self(css)
    }

    /// Returns the underlying string.
    pub fn into_inner(self) -> String {
        self.0
    }

    /// Returns true if the CSS is empty.
    pub fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    /// Returns the CSS content as a string slice.
    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl Deref for Css {
    type Target = String;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl DerefMut for Css {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}

impl From<String> for Css {
    fn from(inner: String) -> Self {
        Self(inner)
    }
}

impl From<&str> for Css {
    fn from(s: &str) -> Self {
        Self(s.to_owned())
    }
}