pub struct Scoped {
    pub styles: Vec<String>,
    pub theme_attribute: Vec<(String, Vec<String>)>,
    pub theme_class: Vec<String>,
    pub local_variables: Vec<String>,
}

Fields§

§styles: Vec<String>§theme_attribute: Vec<(String, Vec<String>)>§theme_class: Vec<String>§local_variables: Vec<String>

Implementations§

source§

impl Scoped

source

pub fn new() -> Self

source

pub fn collect(&mut self, data: &Map<String, Value>)

Collect scoped @styles, @local_variables and @theme from the provided data Map.

Arguments
  • data - A reference to a Map containing the data to collect scoped variables and styles from.
Example
use serde_json::{json, Map};
use dilla_renderer::scoped::Scoped;

let mut scoped = Scoped::new();

let mut data = Map::new();
data.insert(format!("@styles"), json!(["style-1", "style-2"]));
data.insert(
  format!("@local_variables"),
  json!({"var-1": "#222", "var-2": "#333"}),
);

scoped.collect(&data);

assert_eq!(scoped.styles, vec!["style-1", "style-2"]);
assert_eq!(scoped.local_variables, vec!["--var-1: #222;", "--var-2: #333;"]);
source

fn collect_local_variables(&mut self, data: &Map<String, Value>)

Collects scoped variables from the provided data map.

This looks for a key formatted as “@local_variables” in the data map. If that key contains a JSON object, it iterates through the key-value pairs. For each variable key that is defined in the global DEFINITION.variables, it formats the variable and value as “–{key}: {value};” and adds it to the local_variables field on self.

Arguments
  • data - Reference to the data map to collect variables from
source

fn collect_styles(&mut self, data: &Map<String, Value>)

Collects scoped styles from the provided data map.

This looks for a key formatted as “{KEY_PREFIX}{KEY_STYLES}” in the data map. If that key contains a JSON array, it iterates through each style string. The style strings are added to the styles field on self.

Arguments
  • data - Reference to the data map to collect styles from
source

fn collect_theme(&mut self, data: &Map<String, Value>)

Collects scoped theme from the provided data map.

This looks for a key formatted as “{KEY_PREFIX}{KEY_THEME}” in the data map.

Arguments
  • data - Reference to the data map to collect styles from

Trait Implementations§

source§

impl Debug for Scoped

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Scoped

source§

fn default() -> Scoped

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V