Struct dilla_renderer::scoped::Scoped
source · 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
impl Scoped
pub fn new() -> Self
sourcepub fn collect(&mut self, data: &Map<String, Value>)
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;"]);
sourcefn collect_local_variables(&mut self, data: &Map<String, Value>)
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
sourcefn collect_styles(&mut self, data: &Map<String, Value>)
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
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Scoped
impl Send for Scoped
impl Sync for Scoped
impl Unpin for Scoped
impl UnwindSafe for Scoped
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more