-
-
Notifications
You must be signed in to change notification settings - Fork 512
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(css_semantic): resolve nested selectors #4658
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
mod events; | ||
mod semantic_model; | ||
#[cfg(test)] | ||
mod tests; | ||
|
||
pub use events::*; | ||
pub use semantic_model::*; |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -108,14 +108,26 @@ impl SemanticModelBuilder { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.map(|parent| parent.specificity.clone()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.unwrap_or_default(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if let Some(current_rule) = self.current_rule_stack.last() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let current_rule = self.rules_by_id.get_mut(current_rule).unwrap(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
current_rule.selectors.push(Selector { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
range, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
original, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
specificity: parent_specificity + specificity.clone(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let parent_selectors = self | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.current_rule_stack | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.last() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.and_then(|rule_id| self.rules_by_id.get(rule_id)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.and_then(|rule| rule.parent_id) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.and_then(|parent_id| self.rules_by_id.get(&parent_id)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.map(|parent| parent.selectors.clone()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.unwrap_or_default(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if let Some(current_rule_id) = self.current_rule_stack.last() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let resolved_selectors = resolve_selector(&name, &parent_selectors); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let current_rule = self.rules_by_id.get_mut(current_rule_id).unwrap(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for name in resolved_selectors.iter() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
current_rule.selectors.push(Selector { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name: name.to_string(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We already have a |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
range, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
original: original.clone(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
specificity: parent_specificity.clone() + specificity.clone(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
current_rule.specificity += specificity; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -173,3 +185,23 @@ impl SemanticModelBuilder { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fn resolve_selector(current: &str, parent: &[Selector]) -> Vec<String> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
nit: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's possible that I am late to the party, so I am sorry if this questions come too late. Is there a particular reason we need to track There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, there was a flaw in my implementation; I realized that storing SyntaxNode makes things easier. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let mut resolved = Vec::new(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if parent.is_empty() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return vec![current.to_string()]; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for parent in parent { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let parent = parent.name.to_string(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if current.contains('&') { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let current = current.replace('&', &parent); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resolved.push(current); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resolved.push(format!("{} {}", parent, current)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resolved | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+190
to
+206
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
mod selector; | ||
mod specificity; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
name
is somewhat ambiguous, andselector_name
would improve readability IMHO