-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpageDeclaration.js
51 lines (42 loc) · 1.58 KB
/
pageDeclaration.js
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
export default class PageDeclaration {
constructor({ location, executeClientScripts, contentSelectors, noiseSelectors, filters }) {
this.location = location;
this.executeClientScripts = executeClientScripts;
this.contentSelectors = contentSelectors;
this.noiseSelectors = noiseSelectors;
this.filters = filters;
this.id = new URL(location).pathname.split('/').filter(Boolean).join('-');
}
get cssSelectors() {
const { contentSelectors, noiseSelectors } = this;
const result = [
...PageDeclaration.extractCssSelectorsFromProperty(contentSelectors),
...PageDeclaration.extractCssSelectorsFromProperty(noiseSelectors),
];
return result.filter(selector => selector);
}
static extractCssSelectorsFromProperty(property) {
if (Array.isArray(property)) {
return []
.concat(property)
.flatMap(selector => PageDeclaration.extractCssSelectorsFromSelector(selector));
}
return PageDeclaration.extractCssSelectorsFromSelector(property);
}
static extractCssSelectorsFromSelector(selector) {
if (typeof selector === 'object') {
const { startBefore, endBefore, startAfter, endAfter } = selector;
return [ startBefore, endBefore, startAfter, endAfter ].filter(rangeSelector => rangeSelector);
}
return [selector];
}
toPersistence() {
return {
fetch: this.location,
select: this.contentSelectors,
remove: this.noiseSelectors,
filter: this.filters ? this.filters.map(filter => filter.name) : undefined,
executeClientScripts: this.executeClientScripts,
};
}
}