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
32 lines (26 loc) · 913 Bytes
/
getRequiredScopes.ts
File metadata and controls
32 lines (26 loc) · 913 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
31
32
import { parse } from "postcss";
import parse from "postcss-selector-parser";
import { Container, ClassName } from "postcss-selector-parser";
import { getSelectorScope } from "./getSelectorScope";
export function getRequiredScopes(
css: string,
scope: string,
knownScopes: Set<string>,
): Set<string> {
const requiredScopes = new Set();
const root = parse(css);
root.walkRules((rule) => {
parse((selectors: Container) => {
selectors.walkClasses((className: ClassName) => {
const selectorScope = getSelectorScope(className.toString());
if (selectorScope === scope) {
return;
}
if (knownScopes.has(selectorScope)) {
requiredScopes.add(selectorScope);
}
});
}).processSync(rule.selector);
});
return requiredScopes;
}