@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,417 @@
|
|
|
1
|
+
import type { SerializedNodeWithId } from '../../../../types'
|
|
2
|
+
import { PlaybackState, NodeType } from '../../../../types'
|
|
3
|
+
import type { NodeId } from '../../itemIds'
|
|
4
|
+
import type { V1RenderOptions } from './renderOptions'
|
|
5
|
+
import type { VDocument } from './vDocument'
|
|
6
|
+
import type { VStyleSheet } from './vStyleSheet'
|
|
7
|
+
|
|
8
|
+
export interface VNode {
|
|
9
|
+
after(node: VNode): void
|
|
10
|
+
appendChild(node: VNode): void
|
|
11
|
+
before(node: VNode): void
|
|
12
|
+
remove(): void
|
|
13
|
+
|
|
14
|
+
setAttachedStyleSheets(sheets: VStyleSheet[]): void
|
|
15
|
+
setAttribute(name: string, value: string | null): void
|
|
16
|
+
setPlaybackState(state: PlaybackState): void
|
|
17
|
+
setScrollPosition(left: number, top: number): void
|
|
18
|
+
setSize(width: number, height: number): void
|
|
19
|
+
setTextContent(value: string): void
|
|
20
|
+
|
|
21
|
+
forEachAddedNodeRoot(nodeAdds: Set<NodeId>, action: (node: VNode) => void): void
|
|
22
|
+
forSelfAndEachDescendant(action: (node: VNode) => void): void
|
|
23
|
+
mapChildren<Result>(action: (node: VNode) => Result): Result[]
|
|
24
|
+
|
|
25
|
+
render(options: V1RenderOptions): SerializedNodeWithId
|
|
26
|
+
|
|
27
|
+
get data(): VNodeData
|
|
28
|
+
get id(): NodeId
|
|
29
|
+
get ownerDocument(): VDocument
|
|
30
|
+
|
|
31
|
+
state: VNodeState
|
|
32
|
+
firstChild: VNode | undefined
|
|
33
|
+
lastChild: VNode | undefined
|
|
34
|
+
previousSibling: VNode | undefined
|
|
35
|
+
nextSibling: VNode | undefined
|
|
36
|
+
parent: VNode | undefined
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export type VNodeState = 'new' | 'connected' | 'disconnected'
|
|
40
|
+
|
|
41
|
+
export type VNodeData =
|
|
42
|
+
| {
|
|
43
|
+
kind: '#cdata-section'
|
|
44
|
+
}
|
|
45
|
+
| {
|
|
46
|
+
kind: '#document'
|
|
47
|
+
attachedStyleSheets?: VStyleSheet[] | undefined
|
|
48
|
+
scrollLeft?: number
|
|
49
|
+
scrollTop?: number
|
|
50
|
+
}
|
|
51
|
+
| {
|
|
52
|
+
kind: '#doctype'
|
|
53
|
+
name: string
|
|
54
|
+
publicId: string
|
|
55
|
+
systemId: string
|
|
56
|
+
}
|
|
57
|
+
| {
|
|
58
|
+
kind: '#document-fragment'
|
|
59
|
+
attachedStyleSheets?: VStyleSheet[] | undefined
|
|
60
|
+
}
|
|
61
|
+
| {
|
|
62
|
+
kind: '#element'
|
|
63
|
+
tag: string
|
|
64
|
+
attachedStyleSheets?: VStyleSheet[] | undefined
|
|
65
|
+
attributes: Record<string, string>
|
|
66
|
+
isSVG?: boolean
|
|
67
|
+
playbackState?: PlaybackState
|
|
68
|
+
scrollLeft?: number
|
|
69
|
+
scrollTop?: number
|
|
70
|
+
width?: number
|
|
71
|
+
height?: number
|
|
72
|
+
}
|
|
73
|
+
| {
|
|
74
|
+
kind: '#shadow-root'
|
|
75
|
+
attachedStyleSheets?: VStyleSheet[] | undefined
|
|
76
|
+
}
|
|
77
|
+
| {
|
|
78
|
+
kind: '#text'
|
|
79
|
+
textContent: string
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export function createVNode(document: VDocument, id: NodeId, data: VNodeData): VNode {
|
|
83
|
+
let state: VNodeState = 'new'
|
|
84
|
+
|
|
85
|
+
const assertConnectedCorrectly = (): void => {
|
|
86
|
+
if (self.state !== 'connected') {
|
|
87
|
+
throw new Error(`Expected node ${self.id} to be connected, not ${self.state}`)
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
for (const connection of ['firstChild', 'lastChild', 'previousSibling', 'nextSibling', 'parent'] as const) {
|
|
91
|
+
const connectedNode = self[connection]
|
|
92
|
+
if (connectedNode && connectedNode.state !== 'connected') {
|
|
93
|
+
throw new Error(`Expected node ${self.id}'s ${connection} to be connected, not ${connectedNode.state}`)
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
const self: VNode = {
|
|
99
|
+
after(node: VNode): void {
|
|
100
|
+
node.parent = self.parent
|
|
101
|
+
node.previousSibling = self
|
|
102
|
+
|
|
103
|
+
if (self.nextSibling) {
|
|
104
|
+
self.nextSibling.previousSibling = node
|
|
105
|
+
}
|
|
106
|
+
node.nextSibling = self.nextSibling
|
|
107
|
+
self.nextSibling = node
|
|
108
|
+
|
|
109
|
+
if (self.parent?.lastChild === self) {
|
|
110
|
+
self.parent.lastChild = node
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
document.onNodeConnected(node, self.parent)
|
|
114
|
+
assertConnectedCorrectly()
|
|
115
|
+
},
|
|
116
|
+
|
|
117
|
+
appendChild(node: VNode): void {
|
|
118
|
+
if (self.lastChild) {
|
|
119
|
+
self.lastChild.after(node)
|
|
120
|
+
return
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
node.parent = self
|
|
124
|
+
self.firstChild = node
|
|
125
|
+
self.lastChild = node
|
|
126
|
+
|
|
127
|
+
document.onNodeConnected(node, self)
|
|
128
|
+
assertConnectedCorrectly()
|
|
129
|
+
},
|
|
130
|
+
|
|
131
|
+
before(node: VNode): void {
|
|
132
|
+
node.parent = self.parent
|
|
133
|
+
node.nextSibling = self
|
|
134
|
+
|
|
135
|
+
if (self.previousSibling) {
|
|
136
|
+
self.previousSibling.nextSibling = node
|
|
137
|
+
}
|
|
138
|
+
node.previousSibling = self.previousSibling
|
|
139
|
+
self.previousSibling = node
|
|
140
|
+
|
|
141
|
+
if (self.parent?.firstChild === self) {
|
|
142
|
+
self.parent.firstChild = node
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
document.onNodeConnected(node, self.parent)
|
|
146
|
+
assertConnectedCorrectly()
|
|
147
|
+
},
|
|
148
|
+
|
|
149
|
+
remove(): void {
|
|
150
|
+
if (self.state === 'disconnected') {
|
|
151
|
+
return // This is a redundant remove.
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
if (self.parent?.firstChild === self) {
|
|
155
|
+
self.parent.firstChild = self.nextSibling
|
|
156
|
+
}
|
|
157
|
+
if (self.parent?.lastChild === self) {
|
|
158
|
+
self.parent.lastChild = self.previousSibling
|
|
159
|
+
}
|
|
160
|
+
if (self.previousSibling) {
|
|
161
|
+
self.previousSibling.nextSibling = self.nextSibling
|
|
162
|
+
}
|
|
163
|
+
if (self.nextSibling) {
|
|
164
|
+
self.nextSibling.previousSibling = self.previousSibling
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
const parent = self.parent
|
|
168
|
+
self.parent = undefined
|
|
169
|
+
self.previousSibling = undefined
|
|
170
|
+
self.nextSibling = undefined
|
|
171
|
+
|
|
172
|
+
document.onNodeDisconnected(self, parent)
|
|
173
|
+
},
|
|
174
|
+
|
|
175
|
+
setAttachedStyleSheets(sheets: VStyleSheet[]): void {
|
|
176
|
+
assertConnectedCorrectly()
|
|
177
|
+
|
|
178
|
+
switch (data.kind) {
|
|
179
|
+
case '#document':
|
|
180
|
+
case '#document-fragment':
|
|
181
|
+
case '#element':
|
|
182
|
+
case '#shadow-root':
|
|
183
|
+
data.attachedStyleSheets = sheets
|
|
184
|
+
break
|
|
185
|
+
|
|
186
|
+
default:
|
|
187
|
+
throw new Error(`Cannot attach stylesheets to ${data.kind} node ${id}`)
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
|
|
191
|
+
setAttribute(name: string, value: string | null): void {
|
|
192
|
+
assertConnectedCorrectly()
|
|
193
|
+
|
|
194
|
+
if (data.kind !== '#element') {
|
|
195
|
+
throw new Error(`Cannot set attribute ${name} on ${data.kind} node ${id}`)
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
if (value === null) {
|
|
199
|
+
delete data.attributes[name]
|
|
200
|
+
} else {
|
|
201
|
+
data.attributes[name] = value
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
document.onAttributeChanged(self, name)
|
|
205
|
+
},
|
|
206
|
+
|
|
207
|
+
setPlaybackState(state: PlaybackState): void {
|
|
208
|
+
assertConnectedCorrectly()
|
|
209
|
+
|
|
210
|
+
if (data.kind !== '#element') {
|
|
211
|
+
throw new Error(`Cannot set media playback state of ${data.kind} node ${id}`)
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
data.playbackState = state
|
|
215
|
+
},
|
|
216
|
+
|
|
217
|
+
setScrollPosition(left: number, top: number): void {
|
|
218
|
+
assertConnectedCorrectly()
|
|
219
|
+
|
|
220
|
+
if (data.kind !== '#document' && data.kind !== '#element') {
|
|
221
|
+
throw new Error(`Cannot set scroll position on ${data.kind} node ${id}`)
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
// Treat zero coordinates as 'not scrolled' unless this element has scrolled in the past.
|
|
225
|
+
if (left !== 0 || data.scrollLeft !== undefined) {
|
|
226
|
+
data.scrollLeft = left
|
|
227
|
+
}
|
|
228
|
+
if (top !== 0 || data.scrollTop !== undefined) {
|
|
229
|
+
data.scrollTop = top
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
|
|
233
|
+
setSize(width: number, height: number): void {
|
|
234
|
+
assertConnectedCorrectly()
|
|
235
|
+
|
|
236
|
+
if (data.kind !== '#element') {
|
|
237
|
+
throw new Error(`Cannot set size of ${data.kind} node ${id}`)
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
data.width = width
|
|
241
|
+
data.height = height
|
|
242
|
+
},
|
|
243
|
+
|
|
244
|
+
setTextContent(value: string): void {
|
|
245
|
+
assertConnectedCorrectly()
|
|
246
|
+
|
|
247
|
+
if (data.kind !== '#text') {
|
|
248
|
+
throw new Error(`Cannot set text on ${data.kind} node ${id}`)
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
data.textContent = value
|
|
252
|
+
|
|
253
|
+
document.onTextChanged(self)
|
|
254
|
+
},
|
|
255
|
+
|
|
256
|
+
forEachAddedNodeRoot(nodeAdds: Set<NodeId>, action: (node: VNode) => void): void {
|
|
257
|
+
if (nodeAdds.has(id)) {
|
|
258
|
+
// This is the root of a newly-added subtree.
|
|
259
|
+
action(self)
|
|
260
|
+
return
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
// This is an existing node, but there may be new nodes among our descendants. Visit
|
|
264
|
+
// children in reverse order to match the ordering that the V1 serialization
|
|
265
|
+
// algorithm would use.
|
|
266
|
+
for (let child = self.lastChild; child; child = child.previousSibling) {
|
|
267
|
+
child.forEachAddedNodeRoot(nodeAdds, action)
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
|
|
271
|
+
forSelfAndEachDescendant(action: (node: VNode) => void): void {
|
|
272
|
+
action(self)
|
|
273
|
+
for (let child = self.firstChild; child; child = child.nextSibling) {
|
|
274
|
+
child.forSelfAndEachDescendant(action)
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
|
|
278
|
+
mapChildren<Result>(action: (node: VNode) => Result): Result[] {
|
|
279
|
+
const results: Result[] = []
|
|
280
|
+
for (let child = self.firstChild; child; child = child.nextSibling) {
|
|
281
|
+
results.push(action(child))
|
|
282
|
+
}
|
|
283
|
+
return results
|
|
284
|
+
},
|
|
285
|
+
|
|
286
|
+
render(options: V1RenderOptions): SerializedNodeWithId {
|
|
287
|
+
assertConnectedCorrectly()
|
|
288
|
+
|
|
289
|
+
const id = options.nodeIdRemapper?.remap(self.id) ?? self.id
|
|
290
|
+
|
|
291
|
+
switch (data.kind) {
|
|
292
|
+
case '#cdata-section':
|
|
293
|
+
return {
|
|
294
|
+
type: NodeType.CDATA,
|
|
295
|
+
id,
|
|
296
|
+
textContent: '',
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
case '#doctype':
|
|
300
|
+
return {
|
|
301
|
+
type: NodeType.DocumentType,
|
|
302
|
+
id,
|
|
303
|
+
name: data.name,
|
|
304
|
+
publicId: data.publicId,
|
|
305
|
+
systemId: data.systemId,
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
case '#document':
|
|
309
|
+
return {
|
|
310
|
+
type: NodeType.Document,
|
|
311
|
+
id,
|
|
312
|
+
childNodes: self.mapChildren((node) => node.render(options)),
|
|
313
|
+
adoptedStyleSheets: data.attachedStyleSheets?.map((sheet) => sheet.renderAsAdoptedStyleSheet()),
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
case '#document-fragment':
|
|
317
|
+
return {
|
|
318
|
+
type: NodeType.DocumentFragment,
|
|
319
|
+
id,
|
|
320
|
+
childNodes: self.mapChildren((node) => node.render(options)),
|
|
321
|
+
adoptedStyleSheets: data.attachedStyleSheets?.map((sheet) => sheet.renderAsAdoptedStyleSheet()),
|
|
322
|
+
isShadowRoot: false,
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
case '#element': {
|
|
326
|
+
const attributes: Record<string, string | number> = {}
|
|
327
|
+
|
|
328
|
+
// Add size-related virtual attributes before the real DOM attributes, to match
|
|
329
|
+
// the ordering used in the V1 format.
|
|
330
|
+
if (data.width !== undefined && data.height !== undefined) {
|
|
331
|
+
attributes.rr_width = `${data.width}px`
|
|
332
|
+
attributes.rr_height = `${data.height}px`
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
// Add DOM attributes.
|
|
336
|
+
Object.assign(attributes, data.attributes)
|
|
337
|
+
|
|
338
|
+
// Add other virtual attributes after the real DOM attributes, to match the
|
|
339
|
+
// ordering used in the V1 format.
|
|
340
|
+
if (data.attachedStyleSheets !== undefined) {
|
|
341
|
+
attributes._cssText = data.attachedStyleSheets.map((sheet) => sheet.renderAsCssText()).join('')
|
|
342
|
+
}
|
|
343
|
+
if (data.playbackState !== undefined) {
|
|
344
|
+
attributes.rr_mediaState = data.playbackState === PlaybackState.Paused ? 'paused' : 'played'
|
|
345
|
+
}
|
|
346
|
+
if (data.scrollLeft) {
|
|
347
|
+
attributes.rr_scrollLeft = data.scrollLeft
|
|
348
|
+
}
|
|
349
|
+
if (data.scrollTop) {
|
|
350
|
+
attributes.rr_scrollTop = data.scrollTop
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
return {
|
|
354
|
+
type: NodeType.Element,
|
|
355
|
+
id,
|
|
356
|
+
tagName: data.tag,
|
|
357
|
+
attributes,
|
|
358
|
+
childNodes: self.mapChildren((node) => node.render(options)),
|
|
359
|
+
isSVG: data.isSVG === true ? true : undefined,
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
case '#shadow-root':
|
|
364
|
+
return {
|
|
365
|
+
type: NodeType.DocumentFragment,
|
|
366
|
+
id,
|
|
367
|
+
childNodes: self.mapChildren((node) => node.render(options)),
|
|
368
|
+
adoptedStyleSheets: data.attachedStyleSheets?.map((sheet) => sheet.renderAsAdoptedStyleSheet()),
|
|
369
|
+
isShadowRoot: true,
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
case '#text':
|
|
373
|
+
return {
|
|
374
|
+
type: NodeType.Text,
|
|
375
|
+
id,
|
|
376
|
+
textContent: data.textContent,
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
default:
|
|
380
|
+
data satisfies never
|
|
381
|
+
throw new Error(`Rendering not implemented for ${self.data.kind} node ${id}`)
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
|
|
385
|
+
get data(): VNodeData {
|
|
386
|
+
return data
|
|
387
|
+
},
|
|
388
|
+
get ownerDocument(): VDocument {
|
|
389
|
+
return document
|
|
390
|
+
},
|
|
391
|
+
get id(): NodeId {
|
|
392
|
+
return id
|
|
393
|
+
},
|
|
394
|
+
|
|
395
|
+
get state(): VNodeState {
|
|
396
|
+
return state
|
|
397
|
+
},
|
|
398
|
+
set state(value: VNodeState) {
|
|
399
|
+
if (
|
|
400
|
+
(state === 'new' && value !== 'connected') ||
|
|
401
|
+
(state === 'connected' && value !== 'disconnected') ||
|
|
402
|
+
state === 'disconnected'
|
|
403
|
+
) {
|
|
404
|
+
throw new Error(`Invalid state transition from ${state} to ${value}`)
|
|
405
|
+
}
|
|
406
|
+
state = value
|
|
407
|
+
},
|
|
408
|
+
|
|
409
|
+
firstChild: undefined,
|
|
410
|
+
lastChild: undefined,
|
|
411
|
+
previousSibling: undefined,
|
|
412
|
+
nextSibling: undefined,
|
|
413
|
+
parent: undefined,
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
return self
|
|
417
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { StyleSheet } from '../../../../types'
|
|
2
|
+
import type { StyleSheetId } from '../../itemIds'
|
|
3
|
+
import type { VDocument } from './vDocument'
|
|
4
|
+
|
|
5
|
+
export interface VStyleSheet {
|
|
6
|
+
renderAsAdoptedStyleSheet(): StyleSheet
|
|
7
|
+
renderAsCssText(): string
|
|
8
|
+
|
|
9
|
+
get data(): VStyleSheetData
|
|
10
|
+
get id(): StyleSheetId
|
|
11
|
+
get ownerDocument(): VDocument
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export interface VStyleSheetData {
|
|
15
|
+
disabled: boolean
|
|
16
|
+
mediaList: string[]
|
|
17
|
+
rules: string | string[]
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export function createVStyleSheet(document: VDocument, id: StyleSheetId, data: VStyleSheetData): VStyleSheet {
|
|
21
|
+
const self: VStyleSheet = {
|
|
22
|
+
renderAsAdoptedStyleSheet(): StyleSheet {
|
|
23
|
+
const cssRules = typeof data.rules === 'string' ? [data.rules] : data.rules
|
|
24
|
+
return {
|
|
25
|
+
cssRules,
|
|
26
|
+
disabled: data.disabled ? true : undefined,
|
|
27
|
+
media: data.mediaList.length > 0 ? data.mediaList : undefined,
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
renderAsCssText(): string {
|
|
32
|
+
return typeof data.rules === 'string' ? data.rules : data.rules.join('')
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
get data(): VStyleSheetData {
|
|
36
|
+
return data
|
|
37
|
+
},
|
|
38
|
+
get id(): StyleSheetId {
|
|
39
|
+
return id
|
|
40
|
+
},
|
|
41
|
+
get ownerDocument(): VDocument {
|
|
42
|
+
return document
|
|
43
|
+
},
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
return self
|
|
47
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ExperimentalFeature, isExperimentalFeatureEnabled } from '@datadog/browser-core'
|
|
2
|
+
|
|
3
|
+
export function isFullSnapshotChangeRecordsEnabled(): boolean {
|
|
4
|
+
// We don't want to have to support the case where full snapshots use the old format and
|
|
5
|
+
// incremental snapshots use the new one, so we should generate full snapshot Change
|
|
6
|
+
// records if either feature flag is enabled.
|
|
7
|
+
return (
|
|
8
|
+
isExperimentalFeatureEnabled(ExperimentalFeature.USE_CHANGE_RECORDS) ||
|
|
9
|
+
isExperimentalFeatureEnabled(ExperimentalFeature.USE_INCREMENTAL_CHANGE_RECORDS)
|
|
10
|
+
)
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export function isIncrementalSnapshotChangeRecordsEnabled(): boolean {
|
|
14
|
+
return isExperimentalFeatureEnabled(ExperimentalFeature.USE_INCREMENTAL_CHANGE_RECORDS)
|
|
15
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export type { ChangeConverter, MutationLog, NodeIdRemapper } from './conversions'
|
|
2
|
+
export { createChangeConverter, createCopyingNodeIdRemapper, createIdentityNodeIdRemapper } from './conversions'
|
|
3
|
+
export { isFullSnapshotChangeRecordsEnabled, isIncrementalSnapshotChangeRecordsEnabled } from './experimentalFeatures'
|
|
4
|
+
export { createChildInsertionCursor, createRootInsertionCursor } from './insertionCursor'
|
|
5
|
+
export { getElementInputValue } from './serializationUtils'
|
|
6
|
+
export { serializeFullSnapshot } from './serializeFullSnapshot'
|
|
7
|
+
export { serializeFullSnapshotAsChange } from './serializeFullSnapshotAsChange'
|
|
8
|
+
export { serializeMutations } from './serializeMutations'
|
|
9
|
+
export { serializeMutationsAsChange } from './serializeMutationsAsChange'
|
|
10
|
+
export { serializeNode } from './serializeNode'
|
|
11
|
+
export { serializeNodeAsChange } from './serializeNodeAsChange'
|
|
12
|
+
export { serializeAttribute } from './serializeAttribute'
|
|
13
|
+
export { createSerializationStats, updateSerializationStats, aggregateSerializationStats } from './serializationStats'
|
|
14
|
+
export type { SerializationMetric, SerializationStats } from './serializationStats'
|
|
15
|
+
export { serializeChangesInTransaction, serializeInTransaction, SerializationKind } from './serializationTransaction'
|
|
16
|
+
export type {
|
|
17
|
+
ChangeSerializationTransaction,
|
|
18
|
+
SerializationTransaction,
|
|
19
|
+
SerializationTransactionCallback,
|
|
20
|
+
} from './serializationTransaction'
|
|
21
|
+
export type { ParentNodePrivacyLevel } from './serialization.types'
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import type { InsertionPoint } from '../../../types'
|
|
2
|
+
import type { NodeId, NodeIds } from '../itemIds'
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* InsertionCursor tracks the point at which the next node will be inserted during
|
|
6
|
+
* Change-style DOM serialization.
|
|
7
|
+
*
|
|
8
|
+
* When a new node is added to the document, we use an InsertionPoint to encode its
|
|
9
|
+
* position. There are often multiple equally-valid ways to express the same insertion
|
|
10
|
+
* point; we generally want to favor encodings that use as few characters as possible (to
|
|
11
|
+
* reduce uncompressed size) and that are as repetitive as possible (to reduce compressed
|
|
12
|
+
* size). InsertionCursor's purpose is to heuristically pick an efficient encoding based
|
|
13
|
+
* on the nodes we've recently serialized, while doing as little work as possible. The
|
|
14
|
+
* results are not optimal, but should be close to it in most situations.
|
|
15
|
+
*
|
|
16
|
+
* At the beginning of the serialization process, use a factory function like
|
|
17
|
+
* createRootInsertionCursor() to create a new cursor with an appropriate initial
|
|
18
|
+
* position.
|
|
19
|
+
*
|
|
20
|
+
* When visiting a node, the expected usage pattern is as follows:
|
|
21
|
+
* 1. Call advance() to get a node id and insertion point for the node.
|
|
22
|
+
* 2. Serialize the node.
|
|
23
|
+
* 3. If the node has no children, we're done; continue to the node's next
|
|
24
|
+
* sibling and apply this algorithm again.
|
|
25
|
+
* 4. Otherwise, call descend() to move the cursor into the node's child list.
|
|
26
|
+
* 5. Recursively apply this algorithm.
|
|
27
|
+
* 6. Call ascend() to move the cursor out of the node's child list. We're done;
|
|
28
|
+
* continue to the node's next sibling and apply this algorithm again.
|
|
29
|
+
*/
|
|
30
|
+
export interface InsertionCursor {
|
|
31
|
+
/**
|
|
32
|
+
* Given the node id for a new node, returns the InsertionPoint for that node.
|
|
33
|
+
* Updates the cursor to point to the new node's next sibling.
|
|
34
|
+
*/
|
|
35
|
+
advance(node: Node): { nodeId: NodeId; insertionPoint: InsertionPoint }
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Ascends out of the current child list and updates the cursor to point to the parent
|
|
39
|
+
* node's next sibling.
|
|
40
|
+
*/
|
|
41
|
+
ascend(): void
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Descends into the child list of the last node we inserted and updates the cursor to
|
|
45
|
+
* point to the node's first child.
|
|
46
|
+
*/
|
|
47
|
+
descend(): void
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/** Returns an InsertionCursor which starts positioned at the root of the document. */
|
|
51
|
+
export function createRootInsertionCursor(nodeIds: NodeIds): InsertionCursor {
|
|
52
|
+
return createInsertionCursor(undefined, undefined, nodeIds)
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Returns an InsertionCursor which starts positioned in the child list of the given
|
|
57
|
+
* parent node. If a next sibling is provided, the cursor points to the position
|
|
58
|
+
* immediately before the next sibling; otherwise, the cursor points to the end of the
|
|
59
|
+
* child list.
|
|
60
|
+
*/
|
|
61
|
+
export function createChildInsertionCursor(
|
|
62
|
+
parentId: NodeId,
|
|
63
|
+
nextSiblingId: NodeId | undefined,
|
|
64
|
+
nodeIds: NodeIds
|
|
65
|
+
): InsertionCursor {
|
|
66
|
+
return createInsertionCursor(parentId, nextSiblingId, nodeIds)
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
function createInsertionCursor(
|
|
70
|
+
parentId: NodeId | undefined,
|
|
71
|
+
nextSiblingId: NodeId | undefined,
|
|
72
|
+
nodeIds: NodeIds
|
|
73
|
+
): InsertionCursor {
|
|
74
|
+
interface ChildListCursor {
|
|
75
|
+
container: ChildListCursor | undefined
|
|
76
|
+
parentId: NodeId | undefined
|
|
77
|
+
previousSiblingId: NodeId | undefined
|
|
78
|
+
nextSiblingId: NodeId | undefined
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
let cursor: ChildListCursor = {
|
|
82
|
+
container: undefined,
|
|
83
|
+
parentId,
|
|
84
|
+
previousSiblingId: undefined,
|
|
85
|
+
nextSiblingId,
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
const computeInsertionPoint = (nodeId: NodeId): InsertionPoint => {
|
|
89
|
+
if (cursor.previousSiblingId === nodeId - 1) {
|
|
90
|
+
// Use an AppendAfterPreviousInsertionPoint. (i.e., 0)
|
|
91
|
+
return 0
|
|
92
|
+
}
|
|
93
|
+
if (cursor.nextSiblingId !== undefined) {
|
|
94
|
+
// Use an InsertBeforeInsertionPoint. We identify the next sibling using a
|
|
95
|
+
// negative integer indicating the difference between the new node's id and its next
|
|
96
|
+
// sibling's id.
|
|
97
|
+
return cursor.nextSiblingId - nodeId
|
|
98
|
+
}
|
|
99
|
+
if (cursor.parentId !== undefined) {
|
|
100
|
+
// Use an AppendChildInsertionPoint. We identify the parent node using a positive
|
|
101
|
+
// integer indicating the difference between the new node's id and its parent's id.
|
|
102
|
+
return nodeId - cursor.parentId
|
|
103
|
+
}
|
|
104
|
+
// There's no parent. Use a RootInsertionPoint. (i.e., null)
|
|
105
|
+
return null
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
return {
|
|
109
|
+
advance(node: Node): { nodeId: NodeId; insertionPoint: InsertionPoint } {
|
|
110
|
+
const nodeId = nodeIds.getOrInsert(node)
|
|
111
|
+
const insertionPoint = computeInsertionPoint(nodeId)
|
|
112
|
+
cursor.previousSiblingId = nodeId
|
|
113
|
+
return { nodeId, insertionPoint }
|
|
114
|
+
},
|
|
115
|
+
ascend(): void {
|
|
116
|
+
if (cursor.container) {
|
|
117
|
+
cursor = cursor.container
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
descend(): void {
|
|
121
|
+
if (cursor.previousSiblingId !== undefined) {
|
|
122
|
+
cursor = {
|
|
123
|
+
container: cursor,
|
|
124
|
+
parentId: cursor.previousSiblingId,
|
|
125
|
+
previousSiblingId: undefined,
|
|
126
|
+
nextSiblingId: undefined,
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
}
|
|
131
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import type { NodePrivacyLevel } from '@datadog/browser-rum-core'
|
|
2
|
+
|
|
3
|
+
// Those values are the only one that can be used when inheriting privacy levels from parent to
|
|
4
|
+
// children during serialization, since HIDDEN and IGNORE shouldn't serialize their children. This
|
|
5
|
+
// ensures that no children are serialized when they shouldn't.
|
|
6
|
+
export type ParentNodePrivacyLevel =
|
|
7
|
+
| typeof NodePrivacyLevel.ALLOW
|
|
8
|
+
| typeof NodePrivacyLevel.MASK
|
|
9
|
+
| typeof NodePrivacyLevel.MASK_USER_INPUT
|
|
10
|
+
| typeof NodePrivacyLevel.MASK_UNLESS_ALLOWLISTED
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Virtual attributes. These attributes appear in the serialized attribute map of
|
|
14
|
+
* elements, but they're not actually derived from the DOM; they're used to represent
|
|
15
|
+
* metadata about the element they're attached to.
|
|
16
|
+
*/
|
|
17
|
+
export interface VirtualAttributes {
|
|
18
|
+
/**
|
|
19
|
+
* For <style> and <link> elements, the rules in the element's stylesheet, extracted
|
|
20
|
+
* from the CSSOM.
|
|
21
|
+
*/
|
|
22
|
+
_cssText?: string
|
|
23
|
+
|
|
24
|
+
/** For <audio> and <video> elements, the playback state of the element's media. */
|
|
25
|
+
rr_mediaState?: 'paused' | 'played'
|
|
26
|
+
|
|
27
|
+
/** For elements which are scroll containers, the element's X scroll position, if non-zero. */
|
|
28
|
+
rr_scrollLeft?: number
|
|
29
|
+
|
|
30
|
+
/** For elements which are scroll containers, the element's Y scroll position, if non-zero. */
|
|
31
|
+
rr_scrollTop?: number
|
|
32
|
+
|
|
33
|
+
/** For HIDDEN elements, the width of the element's bounding client rect. */
|
|
34
|
+
rr_width?: string
|
|
35
|
+
|
|
36
|
+
/** For HIDDEN elements, the height of the element's bounding client rect. */
|
|
37
|
+
rr_height?: string
|
|
38
|
+
}
|