forked from brikou/CSS-in-JS-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetRequiredScopes.ts
More file actions
30 lines (25 loc) · 863 Bytes
/
getRequiredScopes.ts
File metadata and controls
30 lines (25 loc) · 863 Bytes
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
import * as postcss from "postcss";
import * as parseSelector from "postcss-selector-parser";
import { getSelectorScope } from "./getSelectorScope";
export function getRequiredScopes(
css: string,
scope: string,
knownScopes: Set<string>,
): Set<string> {
const requiredScopes: Set<string> = new Set();
const root = postcss.parse(css);
root.walkRules((rule) => {
parseSelector((nodes: any) => {
nodes.walkClasses((node: any) => {
const selectorScope = getSelectorScope(node.toString());
if (selectorScope === scope) {
return;
}
if (knownScopes.has(selectorScope)) {
requiredScopes.add(selectorScope);
}
});
}).processSync(rule.selector);
});
return requiredScopes;
}