Skip to content
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

[WIP] hack together stylesheet observer #124

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/record/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { snapshot } from 'rrweb-snapshot';
import initObservers from './observer';
import initObservers, { observeStylesheet } from './observer';
import {
mirror,
on,
Expand Down Expand Up @@ -80,9 +80,11 @@ function record(options: recordOptions = {}): listenerHandler | undefined {
inlineStylesheet,
maskAllInputs,
);

if (!node) {
return console.warn('Failed to snapshot the document');
}

mirror.map = idNodeMap;
wrappedEmit(
wrapEvent({
Expand Down Expand Up @@ -181,6 +183,13 @@ function record(options: recordOptions = {}): listenerHandler | undefined {
inlineStylesheet,
}),
);

for (var i in mirror.map) {
const node = mirror.map[i];
if ((node as any).tagName == 'STYLE') {
observeStylesheet(node as any);
}
}
};
if (
document.readyState === 'interactive' ||
Expand Down
20 changes: 20 additions & 0 deletions src/record/observer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,26 @@ function initInputObserver(
};
}

export function observeStylesheet(styleRoot: HTMLLinkElement) {
const handler: ProxyHandler<any> = {
apply: function apply(target, thisArg, argumentsList) {
const result = target.apply(thisArg, argumentsList);
styleRoot.innerHTML = Array.from(thisArg.rules, x => x.cssText).join(
'\n',
);

const sheet = styleRoot.sheet as CSSStyleSheet;
sheet.insertRule = new Proxy(sheet.insertRule, handler);
return result;
},
};

const sheet = styleRoot.sheet as CSSStyleSheet;
const proxy = new Proxy(sheet.insertRule, handler);
sheet.insertRule = proxy;
sheet.insertRule('.rr_track_on {}');
}

export default function initObservers(o: observerParam): listenerHandler {
const mutationObserver = initMutationObserver(
o.mutationCb,
Expand Down