@depup/datadog__browser-rum 6.31.0-depup.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +25 -0
- package/bundle/chunks/profiler-9f1c1103f1ef0aa98257-datadog-rum.js +1 -0
- package/bundle/chunks/recorder-926b641c6ef51d09a378-datadog-rum.js +1 -0
- package/bundle/datadog-rum.js +1 -0
- package/changes.json +5 -0
- package/cjs/boot/isBrowserSupported.d.ts +4 -0
- package/cjs/boot/isBrowserSupported.js +17 -0
- package/cjs/boot/isBrowserSupported.js.map +1 -0
- package/cjs/boot/lazyLoadProfiler.d.ts +3 -0
- package/cjs/boot/lazyLoadProfiler.js +56 -0
- package/cjs/boot/lazyLoadProfiler.js.map +1 -0
- package/cjs/boot/lazyLoadRecorder.d.ts +3 -0
- package/cjs/boot/lazyLoadRecorder.js +56 -0
- package/cjs/boot/lazyLoadRecorder.js.map +1 -0
- package/cjs/boot/postStartStrategy.d.ts +33 -0
- package/cjs/boot/postStartStrategy.js +98 -0
- package/cjs/boot/postStartStrategy.js.map +1 -0
- package/cjs/boot/preStartStrategy.d.ts +6 -0
- package/cjs/boot/preStartStrategy.js +24 -0
- package/cjs/boot/preStartStrategy.js.map +1 -0
- package/cjs/boot/profilerApi.d.ts +2 -0
- package/cjs/boot/profilerApi.js +52 -0
- package/cjs/boot/profilerApi.js.map +1 -0
- package/cjs/boot/recorderApi.d.ts +3 -0
- package/cjs/boot/recorderApi.js +71 -0
- package/cjs/boot/recorderApi.js.map +1 -0
- package/cjs/boot/startRecording.d.ts +6 -0
- package/cjs/boot/startRecording.js +45 -0
- package/cjs/boot/startRecording.js.map +1 -0
- package/cjs/domain/deflate/deflateEncoder.d.ts +3 -0
- package/cjs/domain/deflate/deflateEncoder.js +110 -0
- package/cjs/domain/deflate/deflateEncoder.js.map +1 -0
- package/cjs/domain/deflate/deflateWorker.d.ts +29 -0
- package/cjs/domain/deflate/deflateWorker.js +105 -0
- package/cjs/domain/deflate/deflateWorker.js.map +1 -0
- package/cjs/domain/deflate/index.d.ts +3 -0
- package/cjs/domain/deflate/index.js +11 -0
- package/cjs/domain/deflate/index.js.map +1 -0
- package/cjs/domain/getSessionReplayLink.d.ts +2 -0
- package/cjs/domain/getSessionReplayLink.js +35 -0
- package/cjs/domain/getSessionReplayLink.js.map +1 -0
- package/cjs/domain/profiling/actionHistory.d.ts +10 -0
- package/cjs/domain/profiling/actionHistory.js +49 -0
- package/cjs/domain/profiling/actionHistory.js.map +1 -0
- package/cjs/domain/profiling/longTaskHistory.d.ts +11 -0
- package/cjs/domain/profiling/longTaskHistory.js +28 -0
- package/cjs/domain/profiling/longTaskHistory.js.map +1 -0
- package/cjs/domain/profiling/profiler.d.ts +7 -0
- package/cjs/domain/profiling/profiler.js +267 -0
- package/cjs/domain/profiling/profiler.js.map +1 -0
- package/cjs/domain/profiling/profilingContext.d.ts +6 -0
- package/cjs/domain/profiling/profilingContext.js +31 -0
- package/cjs/domain/profiling/profilingContext.js.map +1 -0
- package/cjs/domain/profiling/profilingSupported.d.ts +1 -0
- package/cjs/domain/profiling/profilingSupported.js +11 -0
- package/cjs/domain/profiling/profilingSupported.js.map +1 -0
- package/cjs/domain/profiling/test-utils/mockedTrace.d.ts +3 -0
- package/cjs/domain/profiling/test-utils/mockedTrace.js +57 -0
- package/cjs/domain/profiling/test-utils/mockedTrace.js.map +1 -0
- package/cjs/domain/profiling/transport/assembly.d.ts +7 -0
- package/cjs/domain/profiling/transport/assembly.js +45 -0
- package/cjs/domain/profiling/transport/assembly.js.map +1 -0
- package/cjs/domain/profiling/transport/buildProfileEventAttributes.d.ts +33 -0
- package/cjs/domain/profiling/transport/buildProfileEventAttributes.js +63 -0
- package/cjs/domain/profiling/transport/buildProfileEventAttributes.js.map +1 -0
- package/cjs/domain/profiling/types/index.d.ts +2 -0
- package/cjs/domain/profiling/types/index.js +3 -0
- package/cjs/domain/profiling/types/index.js.map +1 -0
- package/cjs/domain/profiling/types/profilerApi.types.d.ts +58 -0
- package/cjs/domain/profiling/types/profilerApi.types.js +5 -0
- package/cjs/domain/profiling/types/profilerApi.types.js.map +1 -0
- package/cjs/domain/profiling/types/rumProfiler.types.d.ts +55 -0
- package/cjs/domain/profiling/types/rumProfiler.types.js +3 -0
- package/cjs/domain/profiling/types/rumProfiler.types.js.map +1 -0
- package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.d.ts +1 -0
- package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.js +7 -0
- package/cjs/domain/profiling/utils/getCustomOrDefaultViewName.js.map +1 -0
- package/cjs/domain/profiling/utils/getDefaultViewName.d.ts +1 -0
- package/cjs/domain/profiling/utils/getDefaultViewName.js +14 -0
- package/cjs/domain/profiling/utils/getDefaultViewName.js.map +1 -0
- package/cjs/domain/profiling/utils/getNumberOfSamples.d.ts +8 -0
- package/cjs/domain/profiling/utils/getNumberOfSamples.js +19 -0
- package/cjs/domain/profiling/utils/getNumberOfSamples.js.map +1 -0
- package/cjs/domain/profiling/vitalHistory.d.ts +10 -0
- package/cjs/domain/profiling/vitalHistory.js +42 -0
- package/cjs/domain/profiling/vitalHistory.js.map +1 -0
- package/cjs/domain/record/assembly.d.ts +3 -0
- package/cjs/domain/record/assembly.js +16 -0
- package/cjs/domain/record/assembly.js.map +1 -0
- package/cjs/domain/record/elementsScrollPositions.d.ts +10 -0
- package/cjs/domain/record/elementsScrollPositions.js +23 -0
- package/cjs/domain/record/elementsScrollPositions.js.map +1 -0
- package/cjs/domain/record/eventsUtils.d.ts +2 -0
- package/cjs/domain/record/eventsUtils.js +15 -0
- package/cjs/domain/record/eventsUtils.js.map +1 -0
- package/cjs/domain/record/index.d.ts +6 -0
- package/cjs/domain/record/index.js +17 -0
- package/cjs/domain/record/index.js.map +1 -0
- package/cjs/domain/record/internalApi.d.ts +22 -0
- package/cjs/domain/record/internalApi.js +55 -0
- package/cjs/domain/record/internalApi.js.map +1 -0
- package/cjs/domain/record/itemIds.d.ts +40 -0
- package/cjs/domain/record/itemIds.js +58 -0
- package/cjs/domain/record/itemIds.js.map +1 -0
- package/cjs/domain/record/mutationBatch.d.ts +12 -0
- package/cjs/domain/record/mutationBatch.js +44 -0
- package/cjs/domain/record/mutationBatch.js.map +1 -0
- package/cjs/domain/record/record.d.ts +16 -0
- package/cjs/domain/record/record.js +88 -0
- package/cjs/domain/record/record.js.map +1 -0
- package/cjs/domain/record/record.types.d.ts +18 -0
- package/cjs/domain/record/record.types.js +3 -0
- package/cjs/domain/record/record.types.js.map +1 -0
- package/cjs/domain/record/recordingScope.d.ts +24 -0
- package/cjs/domain/record/recordingScope.js +29 -0
- package/cjs/domain/record/recordingScope.js.map +1 -0
- package/cjs/domain/record/serialization/changeEncoder.d.ts +22 -0
- package/cjs/domain/record/serialization/changeEncoder.js +59 -0
- package/cjs/domain/record/serialization/changeEncoder.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/changeConverter.d.ts +10 -0
- package/cjs/domain/record/serialization/conversions/changeConverter.js +216 -0
- package/cjs/domain/record/serialization/conversions/changeConverter.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/changeDecoder.d.ts +16 -0
- package/cjs/domain/record/serialization/conversions/changeDecoder.js +137 -0
- package/cjs/domain/record/serialization/conversions/changeDecoder.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/index.d.ts +7 -0
- package/cjs/domain/record/serialization/conversions/index.js +11 -0
- package/cjs/domain/record/serialization/conversions/index.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/mutationLog.d.ts +15 -0
- package/cjs/domain/record/serialization/conversions/mutationLog.js +36 -0
- package/cjs/domain/record/serialization/conversions/mutationLog.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/nodeIdRemapper.d.ts +10 -0
- package/cjs/domain/record/serialization/conversions/nodeIdRemapper.js +53 -0
- package/cjs/domain/record/serialization/conversions/nodeIdRemapper.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/renderOptions.d.ts +6 -0
- package/cjs/domain/record/serialization/conversions/renderOptions.js +12 -0
- package/cjs/domain/record/serialization/conversions/renderOptions.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/stringTable.d.ts +5 -0
- package/cjs/domain/record/serialization/conversions/stringTable.js +22 -0
- package/cjs/domain/record/serialization/conversions/stringTable.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/vDocument.d.ts +23 -0
- package/cjs/domain/record/serialization/conversions/vDocument.js +176 -0
- package/cjs/domain/record/serialization/conversions/vDocument.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/vNode.d.ts +66 -0
- package/cjs/domain/record/serialization/conversions/vNode.js +285 -0
- package/cjs/domain/record/serialization/conversions/vNode.js.map +1 -0
- package/cjs/domain/record/serialization/conversions/vStyleSheet.d.ts +16 -0
- package/cjs/domain/record/serialization/conversions/vStyleSheet.js +29 -0
- package/cjs/domain/record/serialization/conversions/vStyleSheet.js.map +1 -0
- package/cjs/domain/record/serialization/experimentalFeatures.d.ts +2 -0
- package/cjs/domain/record/serialization/experimentalFeatures.js +16 -0
- package/cjs/domain/record/serialization/experimentalFeatures.js.map +1 -0
- package/cjs/domain/record/serialization/index.d.ts +17 -0
- package/cjs/domain/record/serialization/index.js +37 -0
- package/cjs/domain/record/serialization/index.js.map +1 -0
- package/cjs/domain/record/serialization/insertionCursor.d.ts +57 -0
- package/cjs/domain/record/serialization/insertionCursor.js +68 -0
- package/cjs/domain/record/serialization/insertionCursor.js.map +1 -0
- package/cjs/domain/record/serialization/serialization.types.d.ts +24 -0
- package/cjs/domain/record/serialization/serialization.types.js +3 -0
- package/cjs/domain/record/serialization/serialization.types.js.map +1 -0
- package/cjs/domain/record/serialization/serializationStats.d.ts +12 -0
- package/cjs/domain/record/serialization/serializationStats.js +32 -0
- package/cjs/domain/record/serialization/serializationStats.js.map +1 -0
- package/cjs/domain/record/serialization/serializationTransaction.d.ts +96 -0
- package/cjs/domain/record/serialization/serializationTransaction.js +103 -0
- package/cjs/domain/record/serialization/serializationTransaction.js.map +1 -0
- package/cjs/domain/record/serialization/serializationUtils.d.ts +18 -0
- package/cjs/domain/record/serialization/serializationUtils.js +88 -0
- package/cjs/domain/record/serialization/serializationUtils.js.map +1 -0
- package/cjs/domain/record/serialization/serializeAttribute.d.ts +4 -0
- package/cjs/domain/record/serialization/serializeAttribute.js +42 -0
- package/cjs/domain/record/serialization/serializeAttribute.js.map +1 -0
- package/cjs/domain/record/serialization/serializeAttributes.d.ts +7 -0
- package/cjs/domain/record/serialization/serializeAttributes.js +167 -0
- package/cjs/domain/record/serialization/serializeAttributes.js.map +1 -0
- package/cjs/domain/record/serialization/serializeFullSnapshot.d.ts +5 -0
- package/cjs/domain/record/serialization/serializeFullSnapshot.js +34 -0
- package/cjs/domain/record/serialization/serializeFullSnapshot.js.map +1 -0
- package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.d.ts +5 -0
- package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.js +13 -0
- package/cjs/domain/record/serialization/serializeFullSnapshotAsChange.js.map +1 -0
- package/cjs/domain/record/serialization/serializeMutations.d.ts +11 -0
- package/cjs/domain/record/serialization/serializeMutations.js +262 -0
- package/cjs/domain/record/serialization/serializeMutations.js.map +1 -0
- package/cjs/domain/record/serialization/serializeMutationsAsChange.d.ts +5 -0
- package/cjs/domain/record/serialization/serializeMutationsAsChange.js +204 -0
- package/cjs/domain/record/serialization/serializeMutationsAsChange.js.map +1 -0
- package/cjs/domain/record/serialization/serializeNode.d.ts +7 -0
- package/cjs/domain/record/serialization/serializeNode.js +154 -0
- package/cjs/domain/record/serialization/serializeNode.js.map +1 -0
- package/cjs/domain/record/serialization/serializeNodeAsChange.d.ts +4 -0
- package/cjs/domain/record/serialization/serializeNodeAsChange.js +153 -0
- package/cjs/domain/record/serialization/serializeNodeAsChange.js.map +1 -0
- package/cjs/domain/record/serialization/serializeStyleSheets.d.ts +3 -0
- package/cjs/domain/record/serialization/serializeStyleSheets.js +30 -0
- package/cjs/domain/record/serialization/serializeStyleSheets.js.map +1 -0
- package/cjs/domain/record/serializationVerifier.d.ts +18 -0
- package/cjs/domain/record/serializationVerifier.js +126 -0
- package/cjs/domain/record/serializationVerifier.js.map +1 -0
- package/cjs/domain/record/shadowRootsController.d.ts +11 -0
- package/cjs/domain/record/shadowRootsController.js +45 -0
- package/cjs/domain/record/shadowRootsController.js.map +1 -0
- package/cjs/domain/record/startFullSnapshots.d.ts +10 -0
- package/cjs/domain/record/startFullSnapshots.js +50 -0
- package/cjs/domain/record/startFullSnapshots.js.map +1 -0
- package/cjs/domain/record/trackers/index.d.ts +12 -0
- package/cjs/domain/record/trackers/index.js +27 -0
- package/cjs/domain/record/trackers/index.js.map +1 -0
- package/cjs/domain/record/trackers/trackFocus.d.ts +5 -0
- package/cjs/domain/record/trackers/trackFocus.js +15 -0
- package/cjs/domain/record/trackers/trackFocus.js.map +1 -0
- package/cjs/domain/record/trackers/trackFrustration.d.ts +6 -0
- package/cjs/domain/record/trackers/trackFrustration.js +31 -0
- package/cjs/domain/record/trackers/trackFrustration.js.map +1 -0
- package/cjs/domain/record/trackers/trackInput.d.ts +4 -0
- package/cjs/domain/record/trackers/trackInput.js +104 -0
- package/cjs/domain/record/trackers/trackInput.js.map +1 -0
- package/cjs/domain/record/trackers/trackMediaInteraction.d.ts +5 -0
- package/cjs/domain/record/trackers/trackMediaInteraction.js +29 -0
- package/cjs/domain/record/trackers/trackMediaInteraction.js.map +1 -0
- package/cjs/domain/record/trackers/trackMouseInteraction.d.ts +5 -0
- package/cjs/domain/record/trackers/trackMouseInteraction.js +59 -0
- package/cjs/domain/record/trackers/trackMouseInteraction.js.map +1 -0
- package/cjs/domain/record/trackers/trackMove.d.ts +9 -0
- package/cjs/domain/record/trackers/trackMove.js +55 -0
- package/cjs/domain/record/trackers/trackMove.js.map +1 -0
- package/cjs/domain/record/trackers/trackMutation.d.ts +13 -0
- package/cjs/domain/record/trackers/trackMutation.js +41 -0
- package/cjs/domain/record/trackers/trackMutation.js.map +1 -0
- package/cjs/domain/record/trackers/trackScroll.d.ts +5 -0
- package/cjs/domain/record/trackers/trackScroll.js +48 -0
- package/cjs/domain/record/trackers/trackScroll.js.map +1 -0
- package/cjs/domain/record/trackers/trackStyleSheet.d.ts +6 -0
- package/cjs/domain/record/trackers/trackStyleSheet.js +89 -0
- package/cjs/domain/record/trackers/trackStyleSheet.js.map +1 -0
- package/cjs/domain/record/trackers/trackViewEnd.d.ts +5 -0
- package/cjs/domain/record/trackers/trackViewEnd.js +20 -0
- package/cjs/domain/record/trackers/trackViewEnd.js.map +1 -0
- package/cjs/domain/record/trackers/trackViewportResize.d.ts +6 -0
- package/cjs/domain/record/trackers/trackViewportResize.js +46 -0
- package/cjs/domain/record/trackers/trackViewportResize.js.map +1 -0
- package/cjs/domain/record/trackers/tracker.types.d.ts +3 -0
- package/cjs/domain/record/trackers/tracker.types.js +3 -0
- package/cjs/domain/record/trackers/tracker.types.js.map +1 -0
- package/cjs/domain/record/viewports.d.ts +20 -0
- package/cjs/domain/record/viewports.js +60 -0
- package/cjs/domain/record/viewports.js.map +1 -0
- package/cjs/domain/replayStats.d.ts +8 -0
- package/cjs/domain/replayStats.js +60 -0
- package/cjs/domain/replayStats.js.map +1 -0
- package/cjs/domain/scriptLoadingError.d.ts +6 -0
- package/cjs/domain/scriptLoadingError.js +26 -0
- package/cjs/domain/scriptLoadingError.js.map +1 -0
- package/cjs/domain/segmentCollection/buildReplayPayload.d.ts +15 -0
- package/cjs/domain/segmentCollection/buildReplayPayload.js +26 -0
- package/cjs/domain/segmentCollection/buildReplayPayload.js.map +1 -0
- package/cjs/domain/segmentCollection/index.d.ts +4 -0
- package/cjs/domain/segmentCollection/index.js +11 -0
- package/cjs/domain/segmentCollection/index.js.map +1 -0
- package/cjs/domain/segmentCollection/segment.d.ts +16 -0
- package/cjs/domain/segmentCollection/segment.js +82 -0
- package/cjs/domain/segmentCollection/segment.js.map +1 -0
- package/cjs/domain/segmentCollection/segmentCollection.d.ts +31 -0
- package/cjs/domain/segmentCollection/segmentCollection.js +113 -0
- package/cjs/domain/segmentCollection/segmentCollection.js.map +1 -0
- package/cjs/domain/segmentCollection/startSegmentTelemetry.d.ts +6 -0
- package/cjs/domain/segmentCollection/startSegmentTelemetry.js +52 -0
- package/cjs/domain/segmentCollection/startSegmentTelemetry.js.map +1 -0
- package/cjs/domain/startRecordBridge.d.ts +5 -0
- package/cjs/domain/startRecordBridge.js +17 -0
- package/cjs/domain/startRecordBridge.js.map +1 -0
- package/cjs/domain/startRecorderInitTelemetry.d.ts +15 -0
- package/cjs/domain/startRecorderInitTelemetry.js +55 -0
- package/cjs/domain/startRecorderInitTelemetry.js.map +1 -0
- package/cjs/entries/internal.d.ts +11 -0
- package/cjs/entries/internal.js +28 -0
- package/cjs/entries/internal.js.map +1 -0
- package/cjs/entries/internalSynthetics.d.ts +2 -0
- package/cjs/entries/internalSynthetics.js +27 -0
- package/cjs/entries/internalSynthetics.js.map +1 -0
- package/cjs/entries/main.d.ts +23 -0
- package/cjs/entries/main.js +35 -0
- package/cjs/entries/main.js.map +1 -0
- package/cjs/types/index.d.ts +3 -0
- package/cjs/types/index.js +18 -0
- package/cjs/types/index.js.map +1 -0
- package/cjs/types/profiling.d.ts +296 -0
- package/cjs/types/profiling.js +6 -0
- package/cjs/types/profiling.js.map +1 -0
- package/cjs/types/sessionReplay.d.ts +934 -0
- package/cjs/types/sessionReplay.js +6 -0
- package/cjs/types/sessionReplay.js.map +1 -0
- package/cjs/types/sessionReplayConstants.d.ts +71 -0
- package/cjs/types/sessionReplayConstants.js +67 -0
- package/cjs/types/sessionReplayConstants.js.map +1 -0
- package/esm/boot/isBrowserSupported.d.ts +4 -0
- package/esm/boot/isBrowserSupported.js +14 -0
- package/esm/boot/isBrowserSupported.js.map +1 -0
- package/esm/boot/lazyLoadProfiler.d.ts +3 -0
- package/esm/boot/lazyLoadProfiler.js +19 -0
- package/esm/boot/lazyLoadProfiler.js.map +1 -0
- package/esm/boot/lazyLoadRecorder.d.ts +3 -0
- package/esm/boot/lazyLoadRecorder.js +19 -0
- package/esm/boot/lazyLoadRecorder.js.map +1 -0
- package/esm/boot/postStartStrategy.d.ts +33 -0
- package/esm/boot/postStartStrategy.js +95 -0
- package/esm/boot/postStartStrategy.js.map +1 -0
- package/esm/boot/preStartStrategy.d.ts +6 -0
- package/esm/boot/preStartStrategy.js +21 -0
- package/esm/boot/preStartStrategy.js.map +1 -0
- package/esm/boot/profilerApi.d.ts +2 -0
- package/esm/boot/profilerApi.js +49 -0
- package/esm/boot/profilerApi.js.map +1 -0
- package/esm/boot/recorderApi.d.ts +3 -0
- package/esm/boot/recorderApi.js +68 -0
- package/esm/boot/recorderApi.js.map +1 -0
- package/esm/boot/startRecording.d.ts +6 -0
- package/esm/boot/startRecording.js +42 -0
- package/esm/boot/startRecording.js.map +1 -0
- package/esm/domain/deflate/deflateEncoder.d.ts +3 -0
- package/esm/domain/deflate/deflateEncoder.js +107 -0
- package/esm/domain/deflate/deflateEncoder.js.map +1 -0
- package/esm/domain/deflate/deflateWorker.d.ts +29 -0
- package/esm/domain/deflate/deflateWorker.js +97 -0
- package/esm/domain/deflate/deflateWorker.js.map +1 -0
- package/esm/domain/deflate/index.d.ts +3 -0
- package/esm/domain/deflate/index.js +3 -0
- package/esm/domain/deflate/index.js.map +1 -0
- package/esm/domain/getSessionReplayLink.d.ts +2 -0
- package/esm/domain/getSessionReplayLink.js +32 -0
- package/esm/domain/getSessionReplayLink.js.map +1 -0
- package/esm/domain/profiling/actionHistory.d.ts +10 -0
- package/esm/domain/profiling/actionHistory.js +45 -0
- package/esm/domain/profiling/actionHistory.js.map +1 -0
- package/esm/domain/profiling/longTaskHistory.d.ts +11 -0
- package/esm/domain/profiling/longTaskHistory.js +24 -0
- package/esm/domain/profiling/longTaskHistory.js.map +1 -0
- package/esm/domain/profiling/profiler.d.ts +7 -0
- package/esm/domain/profiling/profiler.js +263 -0
- package/esm/domain/profiling/profiler.js.map +1 -0
- package/esm/domain/profiling/profilingContext.d.ts +6 -0
- package/esm/domain/profiling/profilingContext.js +28 -0
- package/esm/domain/profiling/profilingContext.js.map +1 -0
- package/esm/domain/profiling/profilingSupported.d.ts +1 -0
- package/esm/domain/profiling/profilingSupported.js +8 -0
- package/esm/domain/profiling/profilingSupported.js.map +1 -0
- package/esm/domain/profiling/test-utils/mockedTrace.d.ts +3 -0
- package/esm/domain/profiling/test-utils/mockedTrace.js +54 -0
- package/esm/domain/profiling/test-utils/mockedTrace.js.map +1 -0
- package/esm/domain/profiling/transport/assembly.d.ts +7 -0
- package/esm/domain/profiling/transport/assembly.js +42 -0
- package/esm/domain/profiling/transport/assembly.js.map +1 -0
- package/esm/domain/profiling/transport/buildProfileEventAttributes.d.ts +33 -0
- package/esm/domain/profiling/transport/buildProfileEventAttributes.js +60 -0
- package/esm/domain/profiling/transport/buildProfileEventAttributes.js.map +1 -0
- package/esm/domain/profiling/types/index.d.ts +2 -0
- package/esm/domain/profiling/types/index.js +2 -0
- package/esm/domain/profiling/types/index.js.map +1 -0
- package/esm/domain/profiling/types/profilerApi.types.d.ts +58 -0
- package/esm/domain/profiling/types/profilerApi.types.js +4 -0
- package/esm/domain/profiling/types/profilerApi.types.js.map +1 -0
- package/esm/domain/profiling/types/rumProfiler.types.d.ts +55 -0
- package/esm/domain/profiling/types/rumProfiler.types.js +2 -0
- package/esm/domain/profiling/types/rumProfiler.types.js.map +1 -0
- package/esm/domain/profiling/utils/getCustomOrDefaultViewName.d.ts +1 -0
- package/esm/domain/profiling/utils/getCustomOrDefaultViewName.js +3 -0
- package/esm/domain/profiling/utils/getCustomOrDefaultViewName.js.map +1 -0
- package/esm/domain/profiling/utils/getDefaultViewName.d.ts +1 -0
- package/esm/domain/profiling/utils/getDefaultViewName.js +11 -0
- package/esm/domain/profiling/utils/getDefaultViewName.js.map +1 -0
- package/esm/domain/profiling/utils/getNumberOfSamples.d.ts +8 -0
- package/esm/domain/profiling/utils/getNumberOfSamples.js +16 -0
- package/esm/domain/profiling/utils/getNumberOfSamples.js.map +1 -0
- package/esm/domain/profiling/vitalHistory.d.ts +10 -0
- package/esm/domain/profiling/vitalHistory.js +38 -0
- package/esm/domain/profiling/vitalHistory.js.map +1 -0
- package/esm/domain/record/assembly.d.ts +3 -0
- package/esm/domain/record/assembly.js +13 -0
- package/esm/domain/record/assembly.js.map +1 -0
- package/esm/domain/record/elementsScrollPositions.d.ts +10 -0
- package/esm/domain/record/elementsScrollPositions.js +20 -0
- package/esm/domain/record/elementsScrollPositions.js.map +1 -0
- package/esm/domain/record/eventsUtils.d.ts +2 -0
- package/esm/domain/record/eventsUtils.js +11 -0
- package/esm/domain/record/eventsUtils.js.map +1 -0
- package/esm/domain/record/index.d.ts +6 -0
- package/esm/domain/record/index.js +5 -0
- package/esm/domain/record/index.js.map +1 -0
- package/esm/domain/record/internalApi.d.ts +22 -0
- package/esm/domain/record/internalApi.js +51 -0
- package/esm/domain/record/internalApi.js.map +1 -0
- package/esm/domain/record/itemIds.d.ts +40 -0
- package/esm/domain/record/itemIds.js +52 -0
- package/esm/domain/record/itemIds.js.map +1 -0
- package/esm/domain/record/mutationBatch.d.ts +12 -0
- package/esm/domain/record/mutationBatch.js +40 -0
- package/esm/domain/record/mutationBatch.js.map +1 -0
- package/esm/domain/record/record.d.ts +16 -0
- package/esm/domain/record/record.js +52 -0
- package/esm/domain/record/record.js.map +1 -0
- package/esm/domain/record/record.types.d.ts +18 -0
- package/esm/domain/record/record.types.js +2 -0
- package/esm/domain/record/record.types.js.map +1 -0
- package/esm/domain/record/recordingScope.d.ts +24 -0
- package/esm/domain/record/recordingScope.js +26 -0
- package/esm/domain/record/recordingScope.js.map +1 -0
- package/esm/domain/record/serialization/changeEncoder.d.ts +22 -0
- package/esm/domain/record/serialization/changeEncoder.js +56 -0
- package/esm/domain/record/serialization/changeEncoder.js.map +1 -0
- package/esm/domain/record/serialization/conversions/changeConverter.d.ts +10 -0
- package/esm/domain/record/serialization/conversions/changeConverter.js +213 -0
- package/esm/domain/record/serialization/conversions/changeConverter.js.map +1 -0
- package/esm/domain/record/serialization/conversions/changeDecoder.d.ts +16 -0
- package/esm/domain/record/serialization/conversions/changeDecoder.js +134 -0
- package/esm/domain/record/serialization/conversions/changeDecoder.js.map +1 -0
- package/esm/domain/record/serialization/conversions/index.d.ts +7 -0
- package/esm/domain/record/serialization/conversions/index.js +4 -0
- package/esm/domain/record/serialization/conversions/index.js.map +1 -0
- package/esm/domain/record/serialization/conversions/mutationLog.d.ts +15 -0
- package/esm/domain/record/serialization/conversions/mutationLog.js +33 -0
- package/esm/domain/record/serialization/conversions/mutationLog.js.map +1 -0
- package/esm/domain/record/serialization/conversions/nodeIdRemapper.d.ts +10 -0
- package/esm/domain/record/serialization/conversions/nodeIdRemapper.js +49 -0
- package/esm/domain/record/serialization/conversions/nodeIdRemapper.js.map +1 -0
- package/esm/domain/record/serialization/conversions/renderOptions.d.ts +6 -0
- package/esm/domain/record/serialization/conversions/renderOptions.js +9 -0
- package/esm/domain/record/serialization/conversions/renderOptions.js.map +1 -0
- package/esm/domain/record/serialization/conversions/stringTable.d.ts +5 -0
- package/esm/domain/record/serialization/conversions/stringTable.js +19 -0
- package/esm/domain/record/serialization/conversions/stringTable.js.map +1 -0
- package/esm/domain/record/serialization/conversions/vDocument.d.ts +23 -0
- package/esm/domain/record/serialization/conversions/vDocument.js +173 -0
- package/esm/domain/record/serialization/conversions/vDocument.js.map +1 -0
- package/esm/domain/record/serialization/conversions/vNode.d.ts +66 -0
- package/esm/domain/record/serialization/conversions/vNode.js +282 -0
- package/esm/domain/record/serialization/conversions/vNode.js.map +1 -0
- package/esm/domain/record/serialization/conversions/vStyleSheet.d.ts +16 -0
- package/esm/domain/record/serialization/conversions/vStyleSheet.js +26 -0
- package/esm/domain/record/serialization/conversions/vStyleSheet.js.map +1 -0
- package/esm/domain/record/serialization/experimentalFeatures.d.ts +2 -0
- package/esm/domain/record/serialization/experimentalFeatures.js +12 -0
- package/esm/domain/record/serialization/experimentalFeatures.js.map +1 -0
- package/esm/domain/record/serialization/index.d.ts +17 -0
- package/esm/domain/record/serialization/index.js +14 -0
- package/esm/domain/record/serialization/index.js.map +1 -0
- package/esm/domain/record/serialization/insertionCursor.d.ts +57 -0
- package/esm/domain/record/serialization/insertionCursor.js +64 -0
- package/esm/domain/record/serialization/insertionCursor.js.map +1 -0
- package/esm/domain/record/serialization/serialization.types.d.ts +24 -0
- package/esm/domain/record/serialization/serialization.types.js +2 -0
- package/esm/domain/record/serialization/serialization.types.js.map +1 -0
- package/esm/domain/record/serialization/serializationStats.d.ts +12 -0
- package/esm/domain/record/serialization/serializationStats.js +27 -0
- package/esm/domain/record/serialization/serializationStats.js.map +1 -0
- package/esm/domain/record/serialization/serializationTransaction.d.ts +96 -0
- package/esm/domain/record/serialization/serializationTransaction.js +99 -0
- package/esm/domain/record/serialization/serializationTransaction.js.map +1 -0
- package/esm/domain/record/serialization/serializationUtils.d.ts +18 -0
- package/esm/domain/record/serialization/serializationUtils.js +80 -0
- package/esm/domain/record/serialization/serializationUtils.js.map +1 -0
- package/esm/domain/record/serialization/serializeAttribute.d.ts +4 -0
- package/esm/domain/record/serialization/serializeAttribute.js +38 -0
- package/esm/domain/record/serialization/serializeAttribute.js.map +1 -0
- package/esm/domain/record/serialization/serializeAttributes.d.ts +7 -0
- package/esm/domain/record/serialization/serializeAttributes.js +161 -0
- package/esm/domain/record/serialization/serializeAttributes.js.map +1 -0
- package/esm/domain/record/serialization/serializeFullSnapshot.d.ts +5 -0
- package/esm/domain/record/serialization/serializeFullSnapshot.js +31 -0
- package/esm/domain/record/serialization/serializeFullSnapshot.js.map +1 -0
- package/esm/domain/record/serialization/serializeFullSnapshotAsChange.d.ts +5 -0
- package/esm/domain/record/serialization/serializeFullSnapshotAsChange.js +10 -0
- package/esm/domain/record/serialization/serializeFullSnapshotAsChange.js.map +1 -0
- package/esm/domain/record/serialization/serializeMutations.d.ts +11 -0
- package/esm/domain/record/serialization/serializeMutations.js +257 -0
- package/esm/domain/record/serialization/serializeMutations.js.map +1 -0
- package/esm/domain/record/serialization/serializeMutationsAsChange.d.ts +5 -0
- package/esm/domain/record/serialization/serializeMutationsAsChange.js +201 -0
- package/esm/domain/record/serialization/serializeMutationsAsChange.js.map +1 -0
- package/esm/domain/record/serialization/serializeNode.d.ts +7 -0
- package/esm/domain/record/serialization/serializeNode.js +149 -0
- package/esm/domain/record/serialization/serializeNode.js.map +1 -0
- package/esm/domain/record/serialization/serializeNodeAsChange.d.ts +4 -0
- package/esm/domain/record/serialization/serializeNodeAsChange.js +150 -0
- package/esm/domain/record/serialization/serializeNodeAsChange.js.map +1 -0
- package/esm/domain/record/serialization/serializeStyleSheets.d.ts +3 -0
- package/esm/domain/record/serialization/serializeStyleSheets.js +27 -0
- package/esm/domain/record/serialization/serializeStyleSheets.js.map +1 -0
- package/esm/domain/record/serializationVerifier.d.ts +18 -0
- package/esm/domain/record/serializationVerifier.js +123 -0
- package/esm/domain/record/serializationVerifier.js.map +1 -0
- package/esm/domain/record/shadowRootsController.d.ts +11 -0
- package/esm/domain/record/shadowRootsController.js +41 -0
- package/esm/domain/record/shadowRootsController.js.map +1 -0
- package/esm/domain/record/startFullSnapshots.d.ts +10 -0
- package/esm/domain/record/startFullSnapshots.js +46 -0
- package/esm/domain/record/startFullSnapshots.js.map +1 -0
- package/esm/domain/record/trackers/index.d.ts +12 -0
- package/esm/domain/record/trackers/index.js +12 -0
- package/esm/domain/record/trackers/index.js.map +1 -0
- package/esm/domain/record/trackers/trackFocus.d.ts +5 -0
- package/esm/domain/record/trackers/trackFocus.js +12 -0
- package/esm/domain/record/trackers/trackFocus.js.map +1 -0
- package/esm/domain/record/trackers/trackFrustration.d.ts +6 -0
- package/esm/domain/record/trackers/trackFrustration.js +28 -0
- package/esm/domain/record/trackers/trackFrustration.js.map +1 -0
- package/esm/domain/record/trackers/trackInput.d.ts +4 -0
- package/esm/domain/record/trackers/trackInput.js +101 -0
- package/esm/domain/record/trackers/trackInput.js.map +1 -0
- package/esm/domain/record/trackers/trackMediaInteraction.d.ts +5 -0
- package/esm/domain/record/trackers/trackMediaInteraction.js +26 -0
- package/esm/domain/record/trackers/trackMediaInteraction.js.map +1 -0
- package/esm/domain/record/trackers/trackMouseInteraction.d.ts +5 -0
- package/esm/domain/record/trackers/trackMouseInteraction.js +56 -0
- package/esm/domain/record/trackers/trackMouseInteraction.js.map +1 -0
- package/esm/domain/record/trackers/trackMove.d.ts +9 -0
- package/esm/domain/record/trackers/trackMove.js +51 -0
- package/esm/domain/record/trackers/trackMove.js.map +1 -0
- package/esm/domain/record/trackers/trackMutation.d.ts +13 -0
- package/esm/domain/record/trackers/trackMutation.js +38 -0
- package/esm/domain/record/trackers/trackMutation.js.map +1 -0
- package/esm/domain/record/trackers/trackScroll.d.ts +5 -0
- package/esm/domain/record/trackers/trackScroll.js +45 -0
- package/esm/domain/record/trackers/trackScroll.js.map +1 -0
- package/esm/domain/record/trackers/trackStyleSheet.d.ts +6 -0
- package/esm/domain/record/trackers/trackStyleSheet.js +85 -0
- package/esm/domain/record/trackers/trackStyleSheet.js.map +1 -0
- package/esm/domain/record/trackers/trackViewEnd.d.ts +5 -0
- package/esm/domain/record/trackers/trackViewEnd.js +17 -0
- package/esm/domain/record/trackers/trackViewEnd.js.map +1 -0
- package/esm/domain/record/trackers/trackViewportResize.d.ts +6 -0
- package/esm/domain/record/trackers/trackViewportResize.js +42 -0
- package/esm/domain/record/trackers/trackViewportResize.js.map +1 -0
- package/esm/domain/record/trackers/tracker.types.d.ts +3 -0
- package/esm/domain/record/trackers/tracker.types.js +2 -0
- package/esm/domain/record/trackers/tracker.types.js.map +1 -0
- package/esm/domain/record/viewports.d.ts +20 -0
- package/esm/domain/record/viewports.js +55 -0
- package/esm/domain/record/viewports.js.map +1 -0
- package/esm/domain/replayStats.d.ts +8 -0
- package/esm/domain/replayStats.js +51 -0
- package/esm/domain/replayStats.js.map +1 -0
- package/esm/domain/scriptLoadingError.d.ts +6 -0
- package/esm/domain/scriptLoadingError.js +23 -0
- package/esm/domain/scriptLoadingError.js.map +1 -0
- package/esm/domain/segmentCollection/buildReplayPayload.d.ts +15 -0
- package/esm/domain/segmentCollection/buildReplayPayload.js +23 -0
- package/esm/domain/segmentCollection/buildReplayPayload.js.map +1 -0
- package/esm/domain/segmentCollection/index.d.ts +4 -0
- package/esm/domain/segmentCollection/index.js +4 -0
- package/esm/domain/segmentCollection/index.js.map +1 -0
- package/esm/domain/segmentCollection/segment.d.ts +16 -0
- package/esm/domain/segmentCollection/segment.js +46 -0
- package/esm/domain/segmentCollection/segment.js.map +1 -0
- package/esm/domain/segmentCollection/segmentCollection.d.ts +31 -0
- package/esm/domain/segmentCollection/segmentCollection.js +106 -0
- package/esm/domain/segmentCollection/segmentCollection.js.map +1 -0
- package/esm/domain/segmentCollection/startSegmentTelemetry.d.ts +6 -0
- package/esm/domain/segmentCollection/startSegmentTelemetry.js +49 -0
- package/esm/domain/segmentCollection/startSegmentTelemetry.js.map +1 -0
- package/esm/domain/startRecordBridge.d.ts +5 -0
- package/esm/domain/startRecordBridge.js +14 -0
- package/esm/domain/startRecordBridge.js.map +1 -0
- package/esm/domain/startRecorderInitTelemetry.d.ts +15 -0
- package/esm/domain/startRecorderInitTelemetry.js +52 -0
- package/esm/domain/startRecorderInitTelemetry.js.map +1 -0
- package/esm/entries/internal.d.ts +11 -0
- package/esm/entries/internal.js +4 -0
- package/esm/entries/internal.js.map +1 -0
- package/esm/entries/internalSynthetics.d.ts +2 -0
- package/esm/entries/internalSynthetics.js +23 -0
- package/esm/entries/internalSynthetics.js.map +1 -0
- package/esm/entries/main.d.ts +23 -0
- package/esm/entries/main.js +31 -0
- package/esm/entries/main.js.map +1 -0
- package/esm/types/index.d.ts +3 -0
- package/esm/types/index.js +2 -0
- package/esm/types/index.js.map +1 -0
- package/esm/types/profiling.d.ts +296 -0
- package/esm/types/profiling.js +5 -0
- package/esm/types/profiling.js.map +1 -0
- package/esm/types/sessionReplay.d.ts +934 -0
- package/esm/types/sessionReplay.js +5 -0
- package/esm/types/sessionReplay.js.map +1 -0
- package/esm/types/sessionReplayConstants.d.ts +71 -0
- package/esm/types/sessionReplayConstants.js +64 -0
- package/esm/types/sessionReplayConstants.js.map +1 -0
- package/internal/package.json +6 -0
- package/internal-synthetics/package.json +6 -0
- package/package.json +52 -0
- package/src/boot/isBrowserSupported.ts +14 -0
- package/src/boot/lazyLoadProfiler.ts +20 -0
- package/src/boot/lazyLoadRecorder.ts +20 -0
- package/src/boot/postStartStrategy.ts +176 -0
- package/src/boot/preStartStrategy.ts +34 -0
- package/src/boot/profilerApi.ts +82 -0
- package/src/boot/recorderApi.ts +113 -0
- package/src/boot/startRecording.ts +70 -0
- package/src/domain/deflate/deflateEncoder.ts +144 -0
- package/src/domain/deflate/deflateWorker.ts +152 -0
- package/src/domain/deflate/index.ts +9 -0
- package/src/domain/getSessionReplayLink.ts +40 -0
- package/src/domain/profiling/actionHistory.ts +65 -0
- package/src/domain/profiling/longTaskHistory.ts +40 -0
- package/src/domain/profiling/profiler.ts +366 -0
- package/src/domain/profiling/profilingContext.ts +39 -0
- package/src/domain/profiling/profilingSupported.ts +10 -0
- package/src/domain/profiling/test-utils/mockedTrace.ts +58 -0
- package/src/domain/profiling/transport/assembly.ts +63 -0
- package/src/domain/profiling/transport/buildProfileEventAttributes.ts +106 -0
- package/src/domain/profiling/types/index.ts +2 -0
- package/src/domain/profiling/types/profilerApi.types.ts +87 -0
- package/src/domain/profiling/types/rumProfiler.types.ts +62 -0
- package/src/domain/profiling/utils/getCustomOrDefaultViewName.ts +4 -0
- package/src/domain/profiling/utils/getDefaultViewName.ts +12 -0
- package/src/domain/profiling/utils/getNumberOfSamples.ts +17 -0
- package/src/domain/profiling/vitalHistory.ts +58 -0
- package/src/domain/record/assembly.ts +19 -0
- package/src/domain/record/elementsScrollPositions.ts +28 -0
- package/src/domain/record/eventsUtils.ts +12 -0
- package/src/domain/record/index.ts +12 -0
- package/src/domain/record/internalApi.ts +84 -0
- package/src/domain/record/itemIds.ts +97 -0
- package/src/domain/record/mutationBatch.ts +47 -0
- package/src/domain/record/record.ts +90 -0
- package/src/domain/record/record.types.ts +22 -0
- package/src/domain/record/recordingScope.ts +58 -0
- package/src/domain/record/serialization/changeEncoder.ts +89 -0
- package/src/domain/record/serialization/conversions/changeConverter.ts +277 -0
- package/src/domain/record/serialization/conversions/changeDecoder.ts +192 -0
- package/src/domain/record/serialization/conversions/index.ts +7 -0
- package/src/domain/record/serialization/conversions/mutationLog.ts +56 -0
- package/src/domain/record/serialization/conversions/nodeIdRemapper.ts +69 -0
- package/src/domain/record/serialization/conversions/renderOptions.ts +14 -0
- package/src/domain/record/serialization/conversions/stringTable.ts +25 -0
- package/src/domain/record/serialization/conversions/vDocument.ts +239 -0
- package/src/domain/record/serialization/conversions/vNode.ts +417 -0
- package/src/domain/record/serialization/conversions/vStyleSheet.ts +47 -0
- package/src/domain/record/serialization/experimentalFeatures.ts +15 -0
- package/src/domain/record/serialization/index.ts +21 -0
- package/src/domain/record/serialization/insertionCursor.ts +131 -0
- package/src/domain/record/serialization/serialization.types.ts +38 -0
- package/src/domain/record/serialization/serializationStats.ts +43 -0
- package/src/domain/record/serialization/serializationTransaction.ts +255 -0
- package/src/domain/record/serialization/serializationUtils.ts +103 -0
- package/src/domain/record/serialization/serializeAttribute.ts +55 -0
- package/src/domain/record/serialization/serializeAttributes.ts +194 -0
- package/src/domain/record/serialization/serializeFullSnapshot.ts +46 -0
- package/src/domain/record/serialization/serializeFullSnapshotAsChange.ts +33 -0
- package/src/domain/record/serialization/serializeMutations.ts +395 -0
- package/src/domain/record/serialization/serializeMutationsAsChange.ts +298 -0
- package/src/domain/record/serialization/serializeNode.ts +229 -0
- package/src/domain/record/serialization/serializeNodeAsChange.ts +237 -0
- package/src/domain/record/serialization/serializeStyleSheets.ts +36 -0
- package/src/domain/record/serializationVerifier.ts +208 -0
- package/src/domain/record/shadowRootsController.ts +62 -0
- package/src/domain/record/startFullSnapshots.ts +92 -0
- package/src/domain/record/trackers/index.ts +12 -0
- package/src/domain/record/trackers/trackFocus.ts +16 -0
- package/src/domain/record/trackers/trackFrustration.ts +39 -0
- package/src/domain/record/trackers/trackInput.ts +128 -0
- package/src/domain/record/trackers/trackMediaInteraction.ts +43 -0
- package/src/domain/record/trackers/trackMouseInteraction.ts +74 -0
- package/src/domain/record/trackers/trackMove.ts +78 -0
- package/src/domain/record/trackers/trackMutation.ts +74 -0
- package/src/domain/record/trackers/trackScroll.ts +61 -0
- package/src/domain/record/trackers/trackStyleSheet.ts +117 -0
- package/src/domain/record/trackers/trackViewEnd.ts +27 -0
- package/src/domain/record/trackers/trackViewportResize.ts +69 -0
- package/src/domain/record/trackers/tracker.types.ts +3 -0
- package/src/domain/record/viewports.ts +68 -0
- package/src/domain/replayStats.ts +61 -0
- package/src/domain/scriptLoadingError.ts +36 -0
- package/src/domain/segmentCollection/buildReplayPayload.ts +52 -0
- package/src/domain/segmentCollection/index.ts +4 -0
- package/src/domain/segmentCollection/segment.ts +79 -0
- package/src/domain/segmentCollection/segmentCollection.ts +200 -0
- package/src/domain/segmentCollection/startSegmentTelemetry.ts +91 -0
- package/src/domain/startRecordBridge.ts +17 -0
- package/src/domain/startRecorderInitTelemetry.ts +90 -0
- package/src/entries/internal.ts +18 -0
- package/src/entries/internalSynthetics.ts +24 -0
- package/src/entries/main.ts +96 -0
- package/src/types/index.ts +3 -0
- package/src/types/profiling.ts +298 -0
- package/src/types/sessionReplay.ts +990 -0
- package/src/types/sessionReplayConstants.ts +130 -0
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
import {
|
|
2
|
+
reducePrivacyLevel,
|
|
3
|
+
getNodeSelfPrivacyLevel,
|
|
4
|
+
getTextContent,
|
|
5
|
+
isNodeShadowRoot,
|
|
6
|
+
forEachChildNodes,
|
|
7
|
+
NodePrivacyLevel,
|
|
8
|
+
PRIVACY_ATTR_NAME,
|
|
9
|
+
PRIVACY_ATTR_VALUE_HIDDEN,
|
|
10
|
+
getScrollX,
|
|
11
|
+
getScrollY,
|
|
12
|
+
isElementNode,
|
|
13
|
+
} from '@datadog/browser-rum-core'
|
|
14
|
+
import { MediaInteractionType } from '../../../types'
|
|
15
|
+
import type { NodeId, StyleSheetId } from '../itemIds'
|
|
16
|
+
import type { InsertionCursor } from './insertionCursor'
|
|
17
|
+
import type { ChangeSerializationTransaction } from './serializationTransaction'
|
|
18
|
+
import { serializeDOMAttributes, serializeVirtualAttributes } from './serializeAttributes'
|
|
19
|
+
|
|
20
|
+
export function serializeNodeAsChange(
|
|
21
|
+
cursor: InsertionCursor,
|
|
22
|
+
node: Node,
|
|
23
|
+
parentPrivacyLevel: NodePrivacyLevel,
|
|
24
|
+
transaction: ChangeSerializationTransaction
|
|
25
|
+
): void {
|
|
26
|
+
// Ignore the children of <style> elements; the CSS rules they contain are already
|
|
27
|
+
// serialized as StyleSheetSnapshots.
|
|
28
|
+
if (node.parentNode?.nodeName === 'STYLE') {
|
|
29
|
+
return
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
let privacyLevel: NodePrivacyLevel
|
|
33
|
+
|
|
34
|
+
const selfPrivacyLevel = getNodeSelfPrivacyLevel(node)
|
|
35
|
+
if (selfPrivacyLevel) {
|
|
36
|
+
privacyLevel = reducePrivacyLevel(selfPrivacyLevel, parentPrivacyLevel)
|
|
37
|
+
} else {
|
|
38
|
+
privacyLevel = parentPrivacyLevel
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
if (privacyLevel === NodePrivacyLevel.HIDDEN) {
|
|
42
|
+
serializeHiddenNodePlaceholder(cursor, node, transaction)
|
|
43
|
+
return
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Totally ignore risky or unwanted elements. (e.g. <script>, some <link> and <meta> elements)
|
|
47
|
+
if (privacyLevel === NodePrivacyLevel.IGNORE) {
|
|
48
|
+
return
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
switch (node.nodeType) {
|
|
52
|
+
case node.CDATA_SECTION_NODE:
|
|
53
|
+
serializeCDataNodeAsChange(cursor, node as CDATASection, transaction)
|
|
54
|
+
break
|
|
55
|
+
case node.DOCUMENT_NODE:
|
|
56
|
+
serializeDocumentNodeAsChange(cursor, node as Document, transaction)
|
|
57
|
+
break
|
|
58
|
+
case node.DOCUMENT_FRAGMENT_NODE:
|
|
59
|
+
serializeDocumentFragmentNodeAsChange(cursor, node as DocumentFragment, transaction)
|
|
60
|
+
break
|
|
61
|
+
case node.DOCUMENT_TYPE_NODE:
|
|
62
|
+
serializeDocumentTypeNodeAsChange(cursor, node as DocumentType, transaction)
|
|
63
|
+
break
|
|
64
|
+
case node.ELEMENT_NODE:
|
|
65
|
+
serializeElementNodeAsChange(cursor, node as Element, privacyLevel, transaction)
|
|
66
|
+
break
|
|
67
|
+
case node.TEXT_NODE:
|
|
68
|
+
serializeTextNodeAsChange(cursor, node as Text, privacyLevel, transaction)
|
|
69
|
+
break
|
|
70
|
+
default:
|
|
71
|
+
return
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// If this node can't have children, we're done.
|
|
75
|
+
switch (node.nodeType) {
|
|
76
|
+
case node.CDATA_SECTION_NODE:
|
|
77
|
+
case node.DOCUMENT_TYPE_NODE:
|
|
78
|
+
case node.TEXT_NODE:
|
|
79
|
+
return
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
cursor.descend()
|
|
83
|
+
forEachChildNodes(node, (childNode) => {
|
|
84
|
+
serializeNodeAsChange(cursor, childNode, privacyLevel, transaction)
|
|
85
|
+
})
|
|
86
|
+
cursor.ascend()
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
function serializeDocumentNodeAsChange(
|
|
90
|
+
cursor: InsertionCursor,
|
|
91
|
+
document: Document,
|
|
92
|
+
transaction: ChangeSerializationTransaction
|
|
93
|
+
): void {
|
|
94
|
+
const { nodeId, insertionPoint } = cursor.advance(document)
|
|
95
|
+
transaction.addNode(insertionPoint, '#document')
|
|
96
|
+
transaction.setScrollPosition(nodeId, getScrollX(), getScrollY())
|
|
97
|
+
serializeStyleSheetsAsChange(document.adoptedStyleSheets, nodeId, transaction)
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
function serializeDocumentFragmentNodeAsChange(
|
|
101
|
+
cursor: InsertionCursor,
|
|
102
|
+
documentFragment: DocumentFragment,
|
|
103
|
+
transaction: ChangeSerializationTransaction
|
|
104
|
+
): void {
|
|
105
|
+
const { nodeId, insertionPoint } = cursor.advance(documentFragment)
|
|
106
|
+
const isShadowRoot = isNodeShadowRoot(documentFragment)
|
|
107
|
+
if (!isShadowRoot) {
|
|
108
|
+
transaction.addNode(insertionPoint, '#document-fragment')
|
|
109
|
+
return
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
transaction.addNode(insertionPoint, '#shadow-root')
|
|
113
|
+
transaction.scope.shadowRootsController.addShadowRoot(documentFragment, transaction.scope)
|
|
114
|
+
serializeStyleSheetsAsChange(documentFragment.adoptedStyleSheets, nodeId, transaction)
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
function serializeDocumentTypeNodeAsChange(
|
|
118
|
+
cursor: InsertionCursor,
|
|
119
|
+
documentType: DocumentType,
|
|
120
|
+
transaction: ChangeSerializationTransaction
|
|
121
|
+
): void {
|
|
122
|
+
const { insertionPoint } = cursor.advance(documentType)
|
|
123
|
+
transaction.addNode(insertionPoint, '#doctype', documentType.name, documentType.publicId, documentType.systemId)
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
function serializeElementNodeAsChange(
|
|
127
|
+
cursor: InsertionCursor,
|
|
128
|
+
element: Element,
|
|
129
|
+
privacyLevel: NodePrivacyLevel,
|
|
130
|
+
transaction: ChangeSerializationTransaction
|
|
131
|
+
): void {
|
|
132
|
+
const { nodeId, insertionPoint } = cursor.advance(element)
|
|
133
|
+
const domAttributes = Object.entries(serializeDOMAttributes(element, privacyLevel, transaction))
|
|
134
|
+
transaction.addNode(insertionPoint, encodedElementName(element), ...domAttributes)
|
|
135
|
+
|
|
136
|
+
const {
|
|
137
|
+
_cssText: cssText,
|
|
138
|
+
rr_mediaState: mediaState,
|
|
139
|
+
rr_scrollLeft: scrollLeft,
|
|
140
|
+
rr_scrollTop: scrollTop,
|
|
141
|
+
} = serializeVirtualAttributes(element, privacyLevel, transaction)
|
|
142
|
+
|
|
143
|
+
const linkOrStyle = element as HTMLLinkElement | HTMLStyleElement
|
|
144
|
+
if (cssText !== undefined && linkOrStyle.sheet) {
|
|
145
|
+
const sheetId = transaction.scope.styleSheetIds.getOrInsert(linkOrStyle.sheet)
|
|
146
|
+
transaction.addStyleSheet(cssText)
|
|
147
|
+
transaction.attachStyleSheets(nodeId, [sheetId])
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
if (mediaState === 'played') {
|
|
151
|
+
transaction.setMediaPlaybackState(nodeId, MediaInteractionType.Play)
|
|
152
|
+
} else if (mediaState === 'paused') {
|
|
153
|
+
transaction.setMediaPlaybackState(nodeId, MediaInteractionType.Pause)
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
if (scrollLeft !== undefined || scrollTop !== undefined) {
|
|
157
|
+
transaction.setScrollPosition(nodeId, scrollLeft || 0, scrollTop || 0)
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
function serializeTextNodeAsChange(
|
|
162
|
+
cursor: InsertionCursor,
|
|
163
|
+
textNode: Text,
|
|
164
|
+
privacyLevel: NodePrivacyLevel,
|
|
165
|
+
transaction: ChangeSerializationTransaction
|
|
166
|
+
): void {
|
|
167
|
+
const textContent = getTextContent(textNode, privacyLevel)
|
|
168
|
+
if (textContent === undefined) {
|
|
169
|
+
return
|
|
170
|
+
}
|
|
171
|
+
const { insertionPoint } = cursor.advance(textNode)
|
|
172
|
+
transaction.addNode(insertionPoint, '#text', textContent)
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
function serializeCDataNodeAsChange(
|
|
176
|
+
cursor: InsertionCursor,
|
|
177
|
+
cdataNode: CDATASection,
|
|
178
|
+
transaction: ChangeSerializationTransaction
|
|
179
|
+
): void {
|
|
180
|
+
const { insertionPoint } = cursor.advance(cdataNode)
|
|
181
|
+
transaction.addNode(insertionPoint, '#cdata-section')
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
function serializeHiddenNodePlaceholder(
|
|
185
|
+
cursor: InsertionCursor,
|
|
186
|
+
node: Node,
|
|
187
|
+
transaction: ChangeSerializationTransaction
|
|
188
|
+
): void {
|
|
189
|
+
// We only generate placeholders for element nodes; other hidden nodes are simply not
|
|
190
|
+
// serialized.
|
|
191
|
+
if (!isElementNode(node)) {
|
|
192
|
+
return
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
const { nodeId, insertionPoint } = cursor.advance(node)
|
|
196
|
+
transaction.addNode(insertionPoint, encodedElementName(node), [PRIVACY_ATTR_NAME, PRIVACY_ATTR_VALUE_HIDDEN])
|
|
197
|
+
const { width, height } = node.getBoundingClientRect()
|
|
198
|
+
transaction.setSize(nodeId, width, height)
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
function serializeStyleSheetsAsChange(
|
|
202
|
+
sheets: CSSStyleSheet[] | undefined,
|
|
203
|
+
nodeId: NodeId,
|
|
204
|
+
transaction: ChangeSerializationTransaction
|
|
205
|
+
): void {
|
|
206
|
+
if (!sheets || sheets.length === 0) {
|
|
207
|
+
return undefined
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
transaction.attachStyleSheets(
|
|
211
|
+
nodeId,
|
|
212
|
+
sheets.map((sheet) => serializeStyleSheetAsChange(sheet, transaction))
|
|
213
|
+
)
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
function serializeStyleSheetAsChange(sheet: CSSStyleSheet, transaction: ChangeSerializationTransaction): StyleSheetId {
|
|
217
|
+
const rules = Array.from(sheet.cssRules || sheet.rules, (rule) => rule.cssText)
|
|
218
|
+
const mediaList = sheet.media.length > 0 ? Array.from(sheet.media) : undefined
|
|
219
|
+
transaction.addMetric(
|
|
220
|
+
'cssText',
|
|
221
|
+
rules.reduce((totalLength, rule) => totalLength + rule.length, 0)
|
|
222
|
+
)
|
|
223
|
+
transaction.addStyleSheet(rules, mediaList, sheet.disabled)
|
|
224
|
+
return transaction.scope.styleSheetIds.getOrInsert(sheet)
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
function encodedElementName(element: Element): Exclude<string, `#${string}`> {
|
|
228
|
+
const nodeName = element.nodeName
|
|
229
|
+
if (isSVGElement(element)) {
|
|
230
|
+
return `svg>${nodeName}`
|
|
231
|
+
}
|
|
232
|
+
return nodeName
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
function isSVGElement(element: Element): element is SVGElement {
|
|
236
|
+
return element.namespaceURI === 'http://www.w3.org/2000/svg'
|
|
237
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { StyleSheet } from '../../../types'
|
|
2
|
+
import type { SerializationTransaction } from './serializationTransaction'
|
|
3
|
+
|
|
4
|
+
export function serializeStyleSheets(
|
|
5
|
+
cssStyleSheets: CSSStyleSheet[] | undefined,
|
|
6
|
+
transaction: SerializationTransaction
|
|
7
|
+
): StyleSheet[] | undefined {
|
|
8
|
+
if (cssStyleSheets === undefined || cssStyleSheets.length === 0) {
|
|
9
|
+
return undefined
|
|
10
|
+
}
|
|
11
|
+
const serializeStylesheet = (cssStyleSheet: CSSStyleSheet) => {
|
|
12
|
+
const rules = cssStyleSheet.cssRules || cssStyleSheet.rules
|
|
13
|
+
const cssRules = Array.from(rules, (cssRule) => cssRule.cssText)
|
|
14
|
+
transaction.addMetric(
|
|
15
|
+
'cssText',
|
|
16
|
+
cssRules.reduce((totalLength, rule) => totalLength + rule.length, 0)
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
const styleSheet: StyleSheet = {
|
|
20
|
+
cssRules,
|
|
21
|
+
disabled: cssStyleSheet.disabled || undefined,
|
|
22
|
+
media: cssStyleSheet.media.length > 0 ? Array.from(cssStyleSheet.media) : undefined,
|
|
23
|
+
}
|
|
24
|
+
return styleSheet
|
|
25
|
+
}
|
|
26
|
+
// Safari iOS 16.x implements adoptedStyleSheets as a FrozenArray that:
|
|
27
|
+
// - can't be iterated over through map or for...of
|
|
28
|
+
// - can't be converted to regular array with Array.from
|
|
29
|
+
// - can't be detected with Array.isArray or Object.isFrozen
|
|
30
|
+
// Use index access to avoid the issue
|
|
31
|
+
const styleSheets: StyleSheet[] = []
|
|
32
|
+
for (let index = 0; index < cssStyleSheets.length; index++) {
|
|
33
|
+
styleSheets.push(serializeStylesheet(cssStyleSheets[index]))
|
|
34
|
+
}
|
|
35
|
+
return styleSheets
|
|
36
|
+
}
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
import { noop } from '@datadog/browser-core'
|
|
2
|
+
import { IncrementalSource, RecordType } from '../../types'
|
|
3
|
+
import type {
|
|
4
|
+
AttributeMutation,
|
|
5
|
+
BrowserChangeRecord,
|
|
6
|
+
BrowserFullSnapshotRecord,
|
|
7
|
+
BrowserIncrementalSnapshotRecord,
|
|
8
|
+
BrowserRecord,
|
|
9
|
+
RemovedNodeMutation,
|
|
10
|
+
} from '../../types'
|
|
11
|
+
import type { EmitRecordCallback, SerializeEvent } from './record.types'
|
|
12
|
+
import { createRecordingScope } from './recordingScope'
|
|
13
|
+
import type { RecordingScope } from './recordingScope'
|
|
14
|
+
import type { ShadowRootsController } from './shadowRootsController'
|
|
15
|
+
import {
|
|
16
|
+
createChangeConverter,
|
|
17
|
+
createCopyingNodeIdRemapper,
|
|
18
|
+
serializeFullSnapshotAsChange,
|
|
19
|
+
serializeMutationsAsChange,
|
|
20
|
+
} from './serialization'
|
|
21
|
+
import type { NodeId } from './itemIds'
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* SerializationVerifier compares the output of the V1 and Change serialization
|
|
25
|
+
* algorithms. It's designed to seamlessly add verification to existing test suites which
|
|
26
|
+
* are written against the V1 serialization algorithm.
|
|
27
|
+
*
|
|
28
|
+
* To use it, create a SerializationVerifier configured with the same RecordingScope used
|
|
29
|
+
* by the current test. The SerializationVerifier will automatically listen for V1
|
|
30
|
+
* serializations being performed by the test code and will perform the corresponding
|
|
31
|
+
* Change serialization. It will then convert the resulting BrowserChangeRecord to the old
|
|
32
|
+
* V1 format and compare the results to verify that the two algorithms produce the same
|
|
33
|
+
* output.
|
|
34
|
+
*/
|
|
35
|
+
export interface SerializationVerifier {
|
|
36
|
+
stop(this: void): void
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export type OnVerificationError = (message: string, context?: any) => void
|
|
40
|
+
|
|
41
|
+
export function createSerializationVerifier(
|
|
42
|
+
scope: RecordingScope,
|
|
43
|
+
onError: OnVerificationError
|
|
44
|
+
): SerializationVerifier {
|
|
45
|
+
// Node id numbering differs between the V1 and Change serialization
|
|
46
|
+
// algorithms, so if we want to be able to compare their output, we need to replace the
|
|
47
|
+
// 'input' node ids in each Change record with the 'output' node ids produced by the V1
|
|
48
|
+
// serialization algorithm. This NodeIdRemapper will handle that task.
|
|
49
|
+
const nodeIdRemapper = createCopyingNodeIdRemapper()
|
|
50
|
+
scope.nodeIds = nodeIdRemapper.outputNodeIds
|
|
51
|
+
|
|
52
|
+
// Create a separate recording scope to use for Change serialization.
|
|
53
|
+
const changeScope = createRecordingScope(scope.configuration, scope.elementsScrollPositions, {
|
|
54
|
+
addShadowRoot: noop,
|
|
55
|
+
removeShadowRoot: noop,
|
|
56
|
+
flush: noop,
|
|
57
|
+
stop: noop,
|
|
58
|
+
} as ShadowRootsController)
|
|
59
|
+
changeScope.nodeIds = nodeIdRemapper.inputNodeIds
|
|
60
|
+
|
|
61
|
+
// Create the converter that we'll use to transform the records generated by Change
|
|
62
|
+
// serialization into the V1 format.
|
|
63
|
+
let converter = createChangeConverter()
|
|
64
|
+
|
|
65
|
+
const { unsubscribe } = scope.serializeObservable.subscribe((event: SerializeEvent) => {
|
|
66
|
+
let changeRecord: BrowserRecord | undefined
|
|
67
|
+
const emitRecord: EmitRecordCallback = (record: BrowserRecord): void => {
|
|
68
|
+
changeRecord = record
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
switch (event.type) {
|
|
72
|
+
case 'full':
|
|
73
|
+
// Create a new converter since we've transitioned to a new view.
|
|
74
|
+
converter = createChangeConverter()
|
|
75
|
+
|
|
76
|
+
serializeFullSnapshotAsChange(event.timestamp, event.kind, event.target, emitRecord, noop, changeScope)
|
|
77
|
+
break
|
|
78
|
+
|
|
79
|
+
case 'incremental':
|
|
80
|
+
serializeMutationsAsChange(event.timestamp, event.target, emitRecord, noop, changeScope)
|
|
81
|
+
break
|
|
82
|
+
|
|
83
|
+
default:
|
|
84
|
+
event satisfies never
|
|
85
|
+
return
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
if (!changeRecord) {
|
|
89
|
+
onError('No change record serialized', event)
|
|
90
|
+
return
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
try {
|
|
94
|
+
const v1Record = event.v1
|
|
95
|
+
const convertedChangeRecord = converter.convert(changeRecord as BrowserChangeRecord, {
|
|
96
|
+
nodeIdRemapper,
|
|
97
|
+
timestamp: v1Record.timestamp,
|
|
98
|
+
})
|
|
99
|
+
|
|
100
|
+
verifySnapshotsMatch(v1Record, convertedChangeRecord, onError)
|
|
101
|
+
} catch (error) {
|
|
102
|
+
onError('Error verifying change record', error)
|
|
103
|
+
}
|
|
104
|
+
})
|
|
105
|
+
|
|
106
|
+
return {
|
|
107
|
+
stop: unsubscribe,
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
function verifySnapshotsMatch(
|
|
112
|
+
expectedRecord: BrowserFullSnapshotRecord | BrowserIncrementalSnapshotRecord,
|
|
113
|
+
actualRecord: BrowserFullSnapshotRecord | BrowserIncrementalSnapshotRecord,
|
|
114
|
+
onError: OnVerificationError
|
|
115
|
+
): void {
|
|
116
|
+
if (
|
|
117
|
+
expectedRecord.type !== RecordType.IncrementalSnapshot ||
|
|
118
|
+
expectedRecord.data.source !== IncrementalSource.Mutation ||
|
|
119
|
+
actualRecord.type !== RecordType.IncrementalSnapshot ||
|
|
120
|
+
actualRecord.data.source !== IncrementalSource.Mutation
|
|
121
|
+
) {
|
|
122
|
+
// We expect full snapshots to be byte-for-byte equivalent, full stop.
|
|
123
|
+
verifyByteForByteEquivalence('full snapshot', expectedRecord, actualRecord, onError)
|
|
124
|
+
return
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// Verify that everything but the data is byte-for-byte equivalent.
|
|
128
|
+
verifyByteForByteEquivalence(
|
|
129
|
+
'incremental snapshot wrapper',
|
|
130
|
+
{ ...expectedRecord, data: null },
|
|
131
|
+
{ ...actualRecord, data: null },
|
|
132
|
+
onError
|
|
133
|
+
)
|
|
134
|
+
|
|
135
|
+
// Within the data, verify that everything but attribute mutations and node remove
|
|
136
|
+
// mutations are byte-for-byte equivalent.
|
|
137
|
+
verifyByteForByteEquivalence(
|
|
138
|
+
'incremental snapshot data (without attributes and removes)',
|
|
139
|
+
{ ...expectedRecord.data, attributes: null, removes: null },
|
|
140
|
+
{ ...actualRecord.data, attributes: null, removes: null },
|
|
141
|
+
onError
|
|
142
|
+
)
|
|
143
|
+
|
|
144
|
+
// Verify that the attribute mutations are byte-for-byte equivalent except for order.
|
|
145
|
+
const orderAttributeMutations = (a: AttributeMutation, b: AttributeMutation): number => a.id - b.id
|
|
146
|
+
verifyByteForByteEquivalence(
|
|
147
|
+
'incremental snapshot attribute mutations',
|
|
148
|
+
expectedRecord.data.attributes.sort(orderAttributeMutations),
|
|
149
|
+
actualRecord.data.attributes.sort(orderAttributeMutations),
|
|
150
|
+
onError
|
|
151
|
+
)
|
|
152
|
+
|
|
153
|
+
// Gather the set of removes performed by V1 serialization.
|
|
154
|
+
const expectedRemoves = expectedRecord.data.removes
|
|
155
|
+
const expectedRemovedNodes = new Set<NodeId>()
|
|
156
|
+
for (const remove of expectedRemoves) {
|
|
157
|
+
expectedRemovedNodes.add(remove.id as NodeId)
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
// Gather the set of removes performed by Change serialization. Change serialization is
|
|
161
|
+
// more conservative about remove reporting, so it will report some removes that V1
|
|
162
|
+
// serialization deliberately skips. To paper over that difference, we filter out
|
|
163
|
+
// removes that V1 serialization didn't also report.
|
|
164
|
+
const actualRemoves: RemovedNodeMutation[] = actualRecord.data.removes.filter((remove) =>
|
|
165
|
+
expectedRemovedNodes.has(remove.id as NodeId)
|
|
166
|
+
)
|
|
167
|
+
|
|
168
|
+
// Verify that the removes that remain are byte-for-byte equivalent.
|
|
169
|
+
verifyByteForByteEquivalence('incremental snapshot removes', expectedRemoves, actualRemoves, onError)
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
function verifyByteForByteEquivalence(
|
|
173
|
+
context: string,
|
|
174
|
+
expected: unknown,
|
|
175
|
+
actual: unknown,
|
|
176
|
+
onError: OnVerificationError
|
|
177
|
+
): void {
|
|
178
|
+
const expectedString = JSON.stringify(expected)
|
|
179
|
+
const actualString = JSON.stringify(actual)
|
|
180
|
+
if (actualString !== expectedString) {
|
|
181
|
+
onError('Serialization mismatch', {
|
|
182
|
+
context,
|
|
183
|
+
mismatch: createSerializationMismatchContext(expectedString, actualString),
|
|
184
|
+
})
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
function createSerializationMismatchContext(expected: string, actual: string): Record<string, string> {
|
|
189
|
+
const length = Math.min(expected.length, actual.length)
|
|
190
|
+
try {
|
|
191
|
+
let firstDifferenceIndex = 0
|
|
192
|
+
while (firstDifferenceIndex < length && expected[firstDifferenceIndex] === actual[firstDifferenceIndex]) {
|
|
193
|
+
firstDifferenceIndex++
|
|
194
|
+
}
|
|
195
|
+
return {
|
|
196
|
+
expected: getStringNearPosition(expected, firstDifferenceIndex),
|
|
197
|
+
actual: getStringNearPosition(actual, firstDifferenceIndex),
|
|
198
|
+
}
|
|
199
|
+
} catch (e) {
|
|
200
|
+
return { firstDifferenceError: JSON.stringify(e) }
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
function getStringNearPosition(str: string, index: number): string {
|
|
205
|
+
const leftContextStart = Math.max(index - 50, 0)
|
|
206
|
+
const rightContextEnd = Math.min(index + 150, str.length)
|
|
207
|
+
return `${str.substring(leftContextStart, index)}(!)${str.substring(index, rightContextEnd)}`
|
|
208
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import type { RecordingScope } from './recordingScope.ts'
|
|
2
|
+
import type { EmitRecordCallback, EmitStatsCallback } from './record.types'
|
|
3
|
+
import { trackInput, trackMutation, trackScroll } from './trackers'
|
|
4
|
+
|
|
5
|
+
interface ShadowRootController {
|
|
6
|
+
stop: () => void
|
|
7
|
+
flush: () => void
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export type AddShadowRootCallBack = (shadowRoot: ShadowRoot, scope: RecordingScope) => void
|
|
11
|
+
export type RemoveShadowRootCallBack = (shadowRoot: ShadowRoot) => void
|
|
12
|
+
|
|
13
|
+
export interface ShadowRootsController {
|
|
14
|
+
addShadowRoot: AddShadowRootCallBack
|
|
15
|
+
removeShadowRoot: RemoveShadowRootCallBack
|
|
16
|
+
stop: () => void
|
|
17
|
+
flush: () => void
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export const initShadowRootsController = (
|
|
21
|
+
emitRecord: EmitRecordCallback,
|
|
22
|
+
emitStats: EmitStatsCallback
|
|
23
|
+
): ShadowRootsController => {
|
|
24
|
+
const controllerByShadowRoot = new Map<ShadowRoot, ShadowRootController>()
|
|
25
|
+
|
|
26
|
+
const shadowRootsController: ShadowRootsController = {
|
|
27
|
+
addShadowRoot: (shadowRoot: ShadowRoot, scope: RecordingScope) => {
|
|
28
|
+
if (controllerByShadowRoot.has(shadowRoot)) {
|
|
29
|
+
return
|
|
30
|
+
}
|
|
31
|
+
const mutationTracker = trackMutation(shadowRoot, emitRecord, emitStats, scope)
|
|
32
|
+
// The change event does not bubble up across the shadow root, we have to listen on the shadow root
|
|
33
|
+
const inputTracker = trackInput(shadowRoot, emitRecord, scope)
|
|
34
|
+
// The scroll event does not bubble up across the shadow root, we have to listen on the shadow root
|
|
35
|
+
const scrollTracker = trackScroll(shadowRoot, emitRecord, scope)
|
|
36
|
+
controllerByShadowRoot.set(shadowRoot, {
|
|
37
|
+
flush: () => mutationTracker.flush(),
|
|
38
|
+
stop: () => {
|
|
39
|
+
mutationTracker.stop()
|
|
40
|
+
inputTracker.stop()
|
|
41
|
+
scrollTracker.stop()
|
|
42
|
+
},
|
|
43
|
+
})
|
|
44
|
+
},
|
|
45
|
+
removeShadowRoot: (shadowRoot: ShadowRoot) => {
|
|
46
|
+
const entry = controllerByShadowRoot.get(shadowRoot)
|
|
47
|
+
if (!entry) {
|
|
48
|
+
// unidentified root cause: observed in some cases with shadow DOM added by browser extensions
|
|
49
|
+
return
|
|
50
|
+
}
|
|
51
|
+
entry.stop()
|
|
52
|
+
controllerByShadowRoot.delete(shadowRoot)
|
|
53
|
+
},
|
|
54
|
+
stop: () => {
|
|
55
|
+
controllerByShadowRoot.forEach(({ stop }) => stop())
|
|
56
|
+
},
|
|
57
|
+
flush: () => {
|
|
58
|
+
controllerByShadowRoot.forEach(({ flush }) => flush())
|
|
59
|
+
},
|
|
60
|
+
}
|
|
61
|
+
return shadowRootsController
|
|
62
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { LifeCycleEventType, getViewportDimension } from '@datadog/browser-rum-core'
|
|
2
|
+
import type { LifeCycle } from '@datadog/browser-rum-core'
|
|
3
|
+
import { timeStampNow } from '@datadog/browser-core'
|
|
4
|
+
import type { TimeStamp } from '@datadog/browser-core'
|
|
5
|
+
import { RecordType } from '../../types'
|
|
6
|
+
import {
|
|
7
|
+
isFullSnapshotChangeRecordsEnabled,
|
|
8
|
+
SerializationKind,
|
|
9
|
+
serializeFullSnapshotAsChange,
|
|
10
|
+
serializeFullSnapshot,
|
|
11
|
+
} from './serialization'
|
|
12
|
+
import { getVisualViewport } from './viewports'
|
|
13
|
+
import type { RecordingScope } from './recordingScope'
|
|
14
|
+
import type { EmitRecordCallback, EmitStatsCallback } from './record.types'
|
|
15
|
+
|
|
16
|
+
export type SerializeFullSnapshotCallback = (
|
|
17
|
+
timestamp: TimeStamp,
|
|
18
|
+
kind: SerializationKind,
|
|
19
|
+
document: Document,
|
|
20
|
+
emitRecord: EmitRecordCallback,
|
|
21
|
+
emitStats: EmitStatsCallback,
|
|
22
|
+
scope: RecordingScope
|
|
23
|
+
) => void
|
|
24
|
+
|
|
25
|
+
export function startFullSnapshots(
|
|
26
|
+
lifeCycle: LifeCycle,
|
|
27
|
+
emitRecord: EmitRecordCallback,
|
|
28
|
+
emitStats: EmitStatsCallback,
|
|
29
|
+
flushMutations: () => void,
|
|
30
|
+
scope: RecordingScope,
|
|
31
|
+
serialize: SerializeFullSnapshotCallback = defaultSerializeFullSnapshotCallback()
|
|
32
|
+
) {
|
|
33
|
+
takeFullSnapshot(timeStampNow(), SerializationKind.INITIAL_FULL_SNAPSHOT, emitRecord, emitStats, scope, serialize)
|
|
34
|
+
|
|
35
|
+
const { unsubscribe } = lifeCycle.subscribe(LifeCycleEventType.VIEW_CREATED, (view) => {
|
|
36
|
+
flushMutations()
|
|
37
|
+
takeFullSnapshot(
|
|
38
|
+
view.startClocks.timeStamp,
|
|
39
|
+
SerializationKind.SUBSEQUENT_FULL_SNAPSHOT,
|
|
40
|
+
emitRecord,
|
|
41
|
+
emitStats,
|
|
42
|
+
scope,
|
|
43
|
+
serialize
|
|
44
|
+
)
|
|
45
|
+
})
|
|
46
|
+
|
|
47
|
+
return {
|
|
48
|
+
stop: unsubscribe,
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function takeFullSnapshot(
|
|
53
|
+
timestamp: TimeStamp,
|
|
54
|
+
kind: SerializationKind,
|
|
55
|
+
emitRecord: EmitRecordCallback,
|
|
56
|
+
emitStats: EmitStatsCallback,
|
|
57
|
+
scope: RecordingScope,
|
|
58
|
+
serialize: SerializeFullSnapshotCallback = defaultSerializeFullSnapshotCallback()
|
|
59
|
+
): void {
|
|
60
|
+
const { width, height } = getViewportDimension()
|
|
61
|
+
emitRecord({
|
|
62
|
+
data: {
|
|
63
|
+
height,
|
|
64
|
+
href: window.location.href,
|
|
65
|
+
width,
|
|
66
|
+
},
|
|
67
|
+
type: RecordType.Meta,
|
|
68
|
+
timestamp,
|
|
69
|
+
})
|
|
70
|
+
|
|
71
|
+
emitRecord({
|
|
72
|
+
data: {
|
|
73
|
+
has_focus: document.hasFocus(),
|
|
74
|
+
},
|
|
75
|
+
type: RecordType.Focus,
|
|
76
|
+
timestamp,
|
|
77
|
+
})
|
|
78
|
+
|
|
79
|
+
serialize(timestamp, kind, document, emitRecord, emitStats, scope)
|
|
80
|
+
|
|
81
|
+
if (window.visualViewport) {
|
|
82
|
+
emitRecord({
|
|
83
|
+
data: getVisualViewport(window.visualViewport),
|
|
84
|
+
type: RecordType.VisualViewport,
|
|
85
|
+
timestamp,
|
|
86
|
+
})
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
function defaultSerializeFullSnapshotCallback(): SerializeFullSnapshotCallback {
|
|
91
|
+
return isFullSnapshotChangeRecordsEnabled() ? serializeFullSnapshotAsChange : serializeFullSnapshot
|
|
92
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { trackMove } from './trackMove'
|
|
2
|
+
export { trackMouseInteraction } from './trackMouseInteraction'
|
|
3
|
+
export { trackScroll } from './trackScroll'
|
|
4
|
+
export { trackViewportResize, trackVisualViewportResize } from './trackViewportResize'
|
|
5
|
+
export { trackMediaInteraction } from './trackMediaInteraction'
|
|
6
|
+
export { trackStyleSheet } from './trackStyleSheet'
|
|
7
|
+
export { trackFocus } from './trackFocus'
|
|
8
|
+
export { trackFrustration } from './trackFrustration'
|
|
9
|
+
export { trackViewEnd } from './trackViewEnd'
|
|
10
|
+
export { trackInput } from './trackInput'
|
|
11
|
+
export { trackMutation } from './trackMutation'
|
|
12
|
+
export type { Tracker } from './tracker.types'
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { DOM_EVENT, addEventListeners, timeStampNow } from '@datadog/browser-core'
|
|
2
|
+
import type { FocusRecord } from '../../../types'
|
|
3
|
+
import { RecordType } from '../../../types'
|
|
4
|
+
import type { RecordingScope } from '../recordingScope'
|
|
5
|
+
import type { EmitRecordCallback } from '../record.types'
|
|
6
|
+
import type { Tracker } from './tracker.types'
|
|
7
|
+
|
|
8
|
+
export function trackFocus(emitRecord: EmitRecordCallback<FocusRecord>, scope: RecordingScope): Tracker {
|
|
9
|
+
return addEventListeners(scope.configuration, window, [DOM_EVENT.FOCUS, DOM_EVENT.BLUR], () => {
|
|
10
|
+
emitRecord({
|
|
11
|
+
data: { has_focus: document.hasFocus() },
|
|
12
|
+
type: RecordType.Focus,
|
|
13
|
+
timestamp: timeStampNow(),
|
|
14
|
+
})
|
|
15
|
+
})
|
|
16
|
+
}
|