@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,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createElementsScrollPositions = createElementsScrollPositions;
|
|
4
|
+
function createElementsScrollPositions() {
|
|
5
|
+
const scrollPositionsByElement = new WeakMap();
|
|
6
|
+
return {
|
|
7
|
+
set(element, scrollPositions) {
|
|
8
|
+
if (element === document && !document.scrollingElement) {
|
|
9
|
+
// cf https://drafts.csswg.org/cssom-view/#dom-document-scrollingelement,
|
|
10
|
+
// in some cases scrolling elements can not be defined, we don't support those for now
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
13
|
+
scrollPositionsByElement.set(element === document ? document.scrollingElement : element, scrollPositions);
|
|
14
|
+
},
|
|
15
|
+
get(element) {
|
|
16
|
+
return scrollPositionsByElement.get(element);
|
|
17
|
+
},
|
|
18
|
+
has(element) {
|
|
19
|
+
return scrollPositionsByElement.has(element);
|
|
20
|
+
},
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=elementsScrollPositions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"elementsScrollPositions.js","sourceRoot":"","sources":["../../../src/domain/record/elementsScrollPositions.ts"],"names":[],"mappings":";;AAMA,sEAqBC;AArBD,SAAgB,6BAA6B;IAC3C,MAAM,wBAAwB,GAAG,IAAI,OAAO,EAA4B,CAAA;IACxE,OAAO;QACL,GAAG,CAAC,OAA2B,EAAE,eAAgC;YAC/D,IAAI,OAAO,KAAK,QAAQ,IAAI,CAAC,QAAQ,CAAC,gBAAgB,EAAE,CAAC;gBACvD,yEAAyE;gBACzE,sFAAsF;gBACtF,OAAM;YACR,CAAC;YACD,wBAAwB,CAAC,GAAG,CAC1B,OAAO,KAAK,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,gBAAiB,CAAC,CAAC,CAAE,OAAmB,EACxE,eAAe,CAChB,CAAA;QACH,CAAC;QACD,GAAG,CAAC,OAAgB;YAClB,OAAO,wBAAwB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;QAC9C,CAAC;QACD,GAAG,CAAC,OAAgB;YAClB,OAAO,wBAAwB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAA;QAC9C,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isTouchEvent = isTouchEvent;
|
|
4
|
+
exports.getEventTarget = getEventTarget;
|
|
5
|
+
const browser_rum_core_1 = require("@datadog/browser-rum-core");
|
|
6
|
+
function isTouchEvent(event) {
|
|
7
|
+
return Boolean(event.changedTouches);
|
|
8
|
+
}
|
|
9
|
+
function getEventTarget(event) {
|
|
10
|
+
if (event.composed === true && (0, browser_rum_core_1.isNodeShadowHost)(event.target)) {
|
|
11
|
+
return event.composedPath()[0];
|
|
12
|
+
}
|
|
13
|
+
return event.target;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=eventsUtils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"eventsUtils.js","sourceRoot":"","sources":["../../../src/domain/record/eventsUtils.ts"],"names":[],"mappings":";;AAEA,oCAEC;AAED,wCAKC;AAXD,gEAA4D;AAE5D,SAAgB,YAAY,CAAC,KAA8B;IACzD,OAAO,OAAO,CAAE,KAAoB,CAAC,cAAc,CAAC,CAAA;AACtD,CAAC;AAED,SAAgB,cAAc,CAAC,KAAY;IACzC,IAAI,KAAK,CAAC,QAAQ,KAAK,IAAI,IAAI,IAAA,mCAAgB,EAAC,KAAK,CAAC,MAAc,CAAC,EAAE,CAAC;QACtE,OAAO,KAAK,CAAC,YAAY,EAAE,CAAC,CAAC,CAAS,CAAA;IACxC,CAAC;IACD,OAAO,KAAK,CAAC,MAAc,CAAA;AAC7B,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { takeFullSnapshot, takeNodeSnapshot } from './internalApi';
|
|
2
|
+
export { record } from './record';
|
|
3
|
+
export type { SerializationMetric, SerializationStats } from './serialization';
|
|
4
|
+
export { aggregateSerializationStats, createSerializationStats, isFullSnapshotChangeRecordsEnabled, isIncrementalSnapshotChangeRecordsEnabled, serializeNode, } from './serialization';
|
|
5
|
+
export { createElementsScrollPositions } from './elementsScrollPositions';
|
|
6
|
+
export type { ShadowRootsController } from './shadowRootsController';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createElementsScrollPositions = exports.serializeNode = exports.isIncrementalSnapshotChangeRecordsEnabled = exports.isFullSnapshotChangeRecordsEnabled = exports.createSerializationStats = exports.aggregateSerializationStats = exports.record = exports.takeNodeSnapshot = exports.takeFullSnapshot = void 0;
|
|
4
|
+
var internalApi_1 = require("./internalApi");
|
|
5
|
+
Object.defineProperty(exports, "takeFullSnapshot", { enumerable: true, get: function () { return internalApi_1.takeFullSnapshot; } });
|
|
6
|
+
Object.defineProperty(exports, "takeNodeSnapshot", { enumerable: true, get: function () { return internalApi_1.takeNodeSnapshot; } });
|
|
7
|
+
var record_1 = require("./record");
|
|
8
|
+
Object.defineProperty(exports, "record", { enumerable: true, get: function () { return record_1.record; } });
|
|
9
|
+
var serialization_1 = require("./serialization");
|
|
10
|
+
Object.defineProperty(exports, "aggregateSerializationStats", { enumerable: true, get: function () { return serialization_1.aggregateSerializationStats; } });
|
|
11
|
+
Object.defineProperty(exports, "createSerializationStats", { enumerable: true, get: function () { return serialization_1.createSerializationStats; } });
|
|
12
|
+
Object.defineProperty(exports, "isFullSnapshotChangeRecordsEnabled", { enumerable: true, get: function () { return serialization_1.isFullSnapshotChangeRecordsEnabled; } });
|
|
13
|
+
Object.defineProperty(exports, "isIncrementalSnapshotChangeRecordsEnabled", { enumerable: true, get: function () { return serialization_1.isIncrementalSnapshotChangeRecordsEnabled; } });
|
|
14
|
+
Object.defineProperty(exports, "serializeNode", { enumerable: true, get: function () { return serialization_1.serializeNode; } });
|
|
15
|
+
var elementsScrollPositions_1 = require("./elementsScrollPositions");
|
|
16
|
+
Object.defineProperty(exports, "createElementsScrollPositions", { enumerable: true, get: function () { return elementsScrollPositions_1.createElementsScrollPositions; } });
|
|
17
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/domain/record/index.ts"],"names":[],"mappings":";;;AAAA,6CAAkE;AAAzD,+GAAA,gBAAgB,OAAA;AAAE,+GAAA,gBAAgB,OAAA;AAC3C,mCAAiC;AAAxB,gGAAA,MAAM,OAAA;AAEf,iDAMwB;AALtB,4HAAA,2BAA2B,OAAA;AAC3B,yHAAA,wBAAwB,OAAA;AACxB,mIAAA,kCAAkC,OAAA;AAClC,0IAAA,yCAAyC,OAAA;AACzC,8GAAA,aAAa,OAAA;AAEf,qEAAyE;AAAhE,wIAAA,6BAA6B,OAAA"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { RumConfiguration } from '@datadog/browser-rum-core';
|
|
2
|
+
import type { BrowserRecord, SerializedNodeWithId } from '../../types';
|
|
3
|
+
/**
|
|
4
|
+
* Take a full snapshot of the document, generating the same records that the browser SDK
|
|
5
|
+
* would generate.
|
|
6
|
+
*
|
|
7
|
+
* This is an internal API function. Be sure to update Datadog-internal callers if you
|
|
8
|
+
* change its signature or behavior.
|
|
9
|
+
*/
|
|
10
|
+
export declare function takeFullSnapshot({ configuration, }?: {
|
|
11
|
+
configuration?: Partial<RumConfiguration>;
|
|
12
|
+
}): BrowserRecord[];
|
|
13
|
+
/**
|
|
14
|
+
* Take a snapshot of a DOM node, generating the serialized representation that the
|
|
15
|
+
* browser SDK would generate.
|
|
16
|
+
*
|
|
17
|
+
* This is an internal API function. Be sure to update Datadog-internal callers if you
|
|
18
|
+
* change its signature or behavior.
|
|
19
|
+
*/
|
|
20
|
+
export declare function takeNodeSnapshot(node: Node, { configuration }?: {
|
|
21
|
+
configuration?: Partial<RumConfiguration>;
|
|
22
|
+
}): SerializedNodeWithId | null;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.takeFullSnapshot = takeFullSnapshot;
|
|
4
|
+
exports.takeNodeSnapshot = takeNodeSnapshot;
|
|
5
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
6
|
+
const browser_rum_core_1 = require("@datadog/browser-rum-core");
|
|
7
|
+
const startFullSnapshots_1 = require("./startFullSnapshots");
|
|
8
|
+
const recordingScope_1 = require("./recordingScope");
|
|
9
|
+
const elementsScrollPositions_1 = require("./elementsScrollPositions");
|
|
10
|
+
const serialization_1 = require("./serialization");
|
|
11
|
+
/**
|
|
12
|
+
* Take a full snapshot of the document, generating the same records that the browser SDK
|
|
13
|
+
* would generate.
|
|
14
|
+
*
|
|
15
|
+
* This is an internal API function. Be sure to update Datadog-internal callers if you
|
|
16
|
+
* change its signature or behavior.
|
|
17
|
+
*/
|
|
18
|
+
function takeFullSnapshot({ configuration, } = {}) {
|
|
19
|
+
const records = [];
|
|
20
|
+
const emitRecord = (record) => {
|
|
21
|
+
records.push(record);
|
|
22
|
+
};
|
|
23
|
+
(0, startFullSnapshots_1.takeFullSnapshot)((0, browser_core_1.timeStampNow)(), 0 /* SerializationKind.INITIAL_FULL_SNAPSHOT */, emitRecord, browser_core_1.noop, createTemporaryRecordingScope(configuration));
|
|
24
|
+
return records;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Take a snapshot of a DOM node, generating the serialized representation that the
|
|
28
|
+
* browser SDK would generate.
|
|
29
|
+
*
|
|
30
|
+
* This is an internal API function. Be sure to update Datadog-internal callers if you
|
|
31
|
+
* change its signature or behavior.
|
|
32
|
+
*/
|
|
33
|
+
function takeNodeSnapshot(node, { configuration } = {}) {
|
|
34
|
+
let serializedNode = null;
|
|
35
|
+
(0, serialization_1.serializeInTransaction)(0 /* SerializationKind.INITIAL_FULL_SNAPSHOT */, browser_core_1.noop, browser_core_1.noop, createTemporaryRecordingScope(configuration), (transaction) => {
|
|
36
|
+
const privacyLevel = (0, browser_rum_core_1.getNodePrivacyLevel)(node, transaction.scope.configuration.defaultPrivacyLevel);
|
|
37
|
+
if (privacyLevel === browser_rum_core_1.NodePrivacyLevel.HIDDEN || privacyLevel === browser_rum_core_1.NodePrivacyLevel.IGNORE) {
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
serializedNode = (0, serialization_1.serializeNode)(node, privacyLevel, transaction);
|
|
41
|
+
});
|
|
42
|
+
return serializedNode;
|
|
43
|
+
}
|
|
44
|
+
function createTemporaryRecordingScope(configuration) {
|
|
45
|
+
return (0, recordingScope_1.createRecordingScope)({
|
|
46
|
+
defaultPrivacyLevel: browser_rum_core_1.NodePrivacyLevel.ALLOW,
|
|
47
|
+
...configuration,
|
|
48
|
+
}, (0, elementsScrollPositions_1.createElementsScrollPositions)(), {
|
|
49
|
+
addShadowRoot: browser_core_1.noop,
|
|
50
|
+
removeShadowRoot: browser_core_1.noop,
|
|
51
|
+
flush: browser_core_1.noop,
|
|
52
|
+
stop: browser_core_1.noop,
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
//# sourceMappingURL=internalApi.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"internalApi.js","sourceRoot":"","sources":["../../../src/domain/record/internalApi.ts"],"names":[],"mappings":";;AAoBA,4CAiBC;AASD,4CAqBC;AAnED,wDAA0D;AAE1D,gEAAiF;AAEjF,6DAA6E;AAG7E,qDAAuD;AACvD,uEAAyE;AAGzE,mDAA0F;AAE1F;;;;;;GAMG;AACH,SAAgB,gBAAgB,CAAC,EAC/B,aAAa,MACoC,EAAE;IACnD,MAAM,OAAO,GAAoB,EAAE,CAAA;IACnC,MAAM,UAAU,GAAuB,CAAC,MAAqB,EAAE,EAAE;QAC/D,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IACtB,CAAC,CAAA;IAED,IAAA,qCAAkB,EAChB,IAAA,2BAAY,GAAE,mDAEd,UAAU,EACV,mBAAI,EACJ,6BAA6B,CAAC,aAAa,CAAC,CAC7C,CAAA;IAED,OAAO,OAAO,CAAA;AAChB,CAAC;AAED;;;;;;GAMG;AACH,SAAgB,gBAAgB,CAC9B,IAAU,EACV,EAAE,aAAa,KAAoD,EAAE;IAErE,IAAI,cAAc,GAAgC,IAAI,CAAA;IAEtD,IAAA,sCAAsB,mDAEpB,mBAAI,EACJ,mBAAI,EACJ,6BAA6B,CAAC,aAAa,CAAC,EAC5C,CAAC,WAAqC,EAAQ,EAAE;QAC9C,MAAM,YAAY,GAAG,IAAA,sCAAmB,EAAC,IAAI,EAAE,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,mBAAmB,CAAC,CAAA;QACnG,IAAI,YAAY,KAAK,mCAAgB,CAAC,MAAM,IAAI,YAAY,KAAK,mCAAgB,CAAC,MAAM,EAAE,CAAC;YACzF,OAAM;QACR,CAAC;QACD,cAAc,GAAG,IAAA,6BAAa,EAAC,IAAI,EAAE,YAAY,EAAE,WAAW,CAAC,CAAA;IACjE,CAAC,CACF,CAAA;IAED,OAAO,cAAc,CAAA;AACvB,CAAC;AAED,SAAS,6BAA6B,CAAC,aAAyC;IAC9E,OAAO,IAAA,qCAAoB,EACzB;QACE,mBAAmB,EAAE,mCAAgB,CAAC,KAAK;QAC3C,GAAG,aAAa;KACG,EACrB,IAAA,uDAA6B,GAAE,EAC/B;QACE,aAAa,EAAE,mBAAI;QACnB,gBAAgB,EAAE,mBAAI;QACtB,KAAK,EAAE,mBAAI;QACX,IAAI,EAAE,mBAAI;KACc,CAC3B,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export type EventId = number & {
|
|
2
|
+
__brand: 'EventId';
|
|
3
|
+
};
|
|
4
|
+
export type EventIds = ItemIds<Event, EventId>;
|
|
5
|
+
export declare const enum EventIdConstants {
|
|
6
|
+
FIRST_ID = 1
|
|
7
|
+
}
|
|
8
|
+
export declare function createEventIds(): EventIds;
|
|
9
|
+
export type NodeId = number & {
|
|
10
|
+
__brand: 'NodeId';
|
|
11
|
+
};
|
|
12
|
+
export type NodeIds = ItemIds<Node, NodeId>;
|
|
13
|
+
export declare const enum NodeIdConstants {
|
|
14
|
+
FIRST_ID = 0
|
|
15
|
+
}
|
|
16
|
+
export declare function createNodeIds(): NodeIds;
|
|
17
|
+
export type StringId = number & {
|
|
18
|
+
__brand: 'StringId';
|
|
19
|
+
};
|
|
20
|
+
export type StringIds = ItemIds<string, StringId>;
|
|
21
|
+
export declare const enum StringIdConstants {
|
|
22
|
+
FIRST_ID = 0
|
|
23
|
+
}
|
|
24
|
+
export declare function createStringIds(): StringIds;
|
|
25
|
+
export type StyleSheetId = number & {
|
|
26
|
+
__brand: 'StyleSheetId';
|
|
27
|
+
};
|
|
28
|
+
export type StyleSheetIds = ItemIds<CSSStyleSheet, StyleSheetId>;
|
|
29
|
+
export declare const enum StyleSheetIdConstants {
|
|
30
|
+
FIRST_ID = 0
|
|
31
|
+
}
|
|
32
|
+
export declare function createStyleSheetIds(): StyleSheetIds;
|
|
33
|
+
export interface ItemIds<ItemType, ItemId extends number> {
|
|
34
|
+
clear(this: void): void;
|
|
35
|
+
delete(this: void, item: ItemType): void;
|
|
36
|
+
get(this: void, item: ItemType): ItemId | undefined;
|
|
37
|
+
getOrInsert(this: void, item: ItemType): ItemId;
|
|
38
|
+
get nextId(): ItemId;
|
|
39
|
+
get size(): number;
|
|
40
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createEventIds = createEventIds;
|
|
4
|
+
exports.createNodeIds = createNodeIds;
|
|
5
|
+
exports.createStringIds = createStringIds;
|
|
6
|
+
exports.createStyleSheetIds = createStyleSheetIds;
|
|
7
|
+
function createEventIds() {
|
|
8
|
+
return createWeakIdMap(1 /* EventIdConstants.FIRST_ID */);
|
|
9
|
+
}
|
|
10
|
+
function createNodeIds() {
|
|
11
|
+
return createWeakIdMap(0 /* NodeIdConstants.FIRST_ID */);
|
|
12
|
+
}
|
|
13
|
+
function createStringIds() {
|
|
14
|
+
return createIdMap(0 /* StringIdConstants.FIRST_ID */);
|
|
15
|
+
}
|
|
16
|
+
function createStyleSheetIds() {
|
|
17
|
+
return createWeakIdMap(0 /* StyleSheetIdConstants.FIRST_ID */);
|
|
18
|
+
}
|
|
19
|
+
function createIdMap(firstId) {
|
|
20
|
+
return createItemIds(() => new Map(), firstId);
|
|
21
|
+
}
|
|
22
|
+
function createWeakIdMap(firstId) {
|
|
23
|
+
return createItemIds(() => new WeakMap(), firstId);
|
|
24
|
+
}
|
|
25
|
+
function createItemIds(createMap, firstId) {
|
|
26
|
+
let map = createMap();
|
|
27
|
+
let nextId = firstId;
|
|
28
|
+
const get = (object) => map.get(object);
|
|
29
|
+
return {
|
|
30
|
+
clear() {
|
|
31
|
+
if (nextId === firstId) {
|
|
32
|
+
return;
|
|
33
|
+
}
|
|
34
|
+
map = createMap();
|
|
35
|
+
nextId = firstId;
|
|
36
|
+
},
|
|
37
|
+
delete(object) {
|
|
38
|
+
map.delete(object);
|
|
39
|
+
},
|
|
40
|
+
get,
|
|
41
|
+
getOrInsert(object) {
|
|
42
|
+
// Try to reuse any existing id.
|
|
43
|
+
let id = get(object);
|
|
44
|
+
if (id === undefined) {
|
|
45
|
+
id = nextId++;
|
|
46
|
+
map.set(object, id);
|
|
47
|
+
}
|
|
48
|
+
return id;
|
|
49
|
+
},
|
|
50
|
+
get nextId() {
|
|
51
|
+
return nextId;
|
|
52
|
+
},
|
|
53
|
+
get size() {
|
|
54
|
+
return nextId - firstId;
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
//# sourceMappingURL=itemIds.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"itemIds.js","sourceRoot":"","sources":["../../../src/domain/record/itemIds.ts"],"names":[],"mappings":";;AAKA,wCAEC;AAOD,sCAEC;AAOD,0CAEC;AAOD,kDAEC;AA7BD,SAAgB,cAAc;IAC5B,OAAO,eAAe,CAAC,iCAAoC,CAAC,CAAA;AAC9D,CAAC;AAOD,SAAgB,aAAa;IAC3B,OAAO,eAAe,CAAC,gCAAkC,CAAC,CAAA;AAC5D,CAAC;AAOD,SAAgB,eAAe;IAC7B,OAAO,WAAW,CAAC,kCAAsC,CAAC,CAAA;AAC5D,CAAC;AAOD,SAAgB,mBAAmB;IACjC,OAAO,eAAe,CAAC,sCAA8C,CAAC,CAAA;AACxE,CAAC;AAWD,SAAS,WAAW,CAAkC,OAAe;IACnE,OAAO,aAAa,CAAC,GAAG,EAAE,CAAC,IAAI,GAAG,EAAoB,EAAE,OAAO,CAAC,CAAA;AAClE,CAAC;AAED,SAAS,eAAe,CAAiD,OAAe;IACtF,OAAO,aAAa,CAAC,GAAG,EAAE,CAAC,IAAI,OAAO,EAAoB,EAAE,OAAO,CAAC,CAAA;AACtE,CAAC;AAQD,SAAS,aAAa,CACpB,SAA0C,EAC1C,OAAe;IAEf,IAAI,GAAG,GAAG,SAAS,EAAE,CAAA;IACrB,IAAI,MAAM,GAAG,OAAO,CAAA;IAEpB,MAAM,GAAG,GAAG,CAAC,MAAgB,EAAsB,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;IAErE,OAAO;QACL,KAAK;YACH,IAAI,MAAM,KAAK,OAAO,EAAE,CAAC;gBACvB,OAAM;YACR,CAAC;YACD,GAAG,GAAG,SAAS,EAAE,CAAA;YACjB,MAAM,GAAG,OAAO,CAAA;QAClB,CAAC;QACD,MAAM,CAAC,MAAgB;YACrB,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,CAAA;QACpB,CAAC;QACD,GAAG;QACH,WAAW,CAAC,MAAgB;YAC1B,gCAAgC;YAChC,IAAI,EAAE,GAAG,GAAG,CAAC,MAAM,CAAC,CAAA;YACpB,IAAI,EAAE,KAAK,SAAS,EAAE,CAAC;gBACrB,EAAE,GAAG,MAAM,EAAY,CAAA;gBACvB,GAAG,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,CAAC,CAAA;YACrB,CAAC;YACD,OAAO,EAAE,CAAA;QACX,CAAC;QACD,IAAI,MAAM;YACR,OAAO,MAAM,CAAA;QACf,CAAC;QACD,IAAI,IAAI;YACN,OAAO,MAAM,GAAG,OAAO,CAAA;QACzB,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { RumMutationRecord } from '@datadog/browser-rum-core';
|
|
2
|
+
/**
|
|
3
|
+
* Minimum duration to wait before processing mutations. This is used to batch mutations together
|
|
4
|
+
* and be able to deduplicate them to save processing time and bandwidth.
|
|
5
|
+
* 16ms is the duration of a frame at 60fps that ensure fluid UI.
|
|
6
|
+
*/
|
|
7
|
+
export declare const MUTATION_PROCESS_MIN_DELAY = 16;
|
|
8
|
+
export declare function createMutationBatch(processMutationBatch: (mutations: RumMutationRecord[]) => void): {
|
|
9
|
+
addMutations: (mutations: RumMutationRecord[]) => void;
|
|
10
|
+
flush: () => void;
|
|
11
|
+
stop: () => void;
|
|
12
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MUTATION_PROCESS_MIN_DELAY = void 0;
|
|
4
|
+
exports.createMutationBatch = createMutationBatch;
|
|
5
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
6
|
+
/**
|
|
7
|
+
* Maximum duration to wait before processing mutations. If the browser is idle, mutations will be
|
|
8
|
+
* processed more quickly. If the browser is busy executing small tasks (ex: rendering frames), the
|
|
9
|
+
* mutations will wait MUTATION_PROCESS_MAX_DELAY milliseconds before being processed. If the
|
|
10
|
+
* browser is busy executing a longer task, mutations will be processed after this task.
|
|
11
|
+
*/
|
|
12
|
+
const MUTATION_PROCESS_MAX_DELAY = 100;
|
|
13
|
+
/**
|
|
14
|
+
* Minimum duration to wait before processing mutations. This is used to batch mutations together
|
|
15
|
+
* and be able to deduplicate them to save processing time and bandwidth.
|
|
16
|
+
* 16ms is the duration of a frame at 60fps that ensure fluid UI.
|
|
17
|
+
*/
|
|
18
|
+
exports.MUTATION_PROCESS_MIN_DELAY = 16;
|
|
19
|
+
function createMutationBatch(processMutationBatch) {
|
|
20
|
+
let cancelScheduledFlush = browser_core_1.noop;
|
|
21
|
+
let pendingMutations = [];
|
|
22
|
+
function flush() {
|
|
23
|
+
cancelScheduledFlush();
|
|
24
|
+
processMutationBatch(pendingMutations);
|
|
25
|
+
pendingMutations = [];
|
|
26
|
+
}
|
|
27
|
+
const { throttled: throttledFlush, cancel: cancelThrottle } = (0, browser_core_1.throttle)(flush, exports.MUTATION_PROCESS_MIN_DELAY, {
|
|
28
|
+
leading: false,
|
|
29
|
+
});
|
|
30
|
+
return {
|
|
31
|
+
addMutations: (mutations) => {
|
|
32
|
+
if (pendingMutations.length === 0) {
|
|
33
|
+
cancelScheduledFlush = (0, browser_core_1.requestIdleCallback)(throttledFlush, { timeout: MUTATION_PROCESS_MAX_DELAY });
|
|
34
|
+
}
|
|
35
|
+
pendingMutations.push(...mutations);
|
|
36
|
+
},
|
|
37
|
+
flush,
|
|
38
|
+
stop: () => {
|
|
39
|
+
cancelScheduledFlush();
|
|
40
|
+
cancelThrottle();
|
|
41
|
+
},
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=mutationBatch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mutationBatch.js","sourceRoot":"","sources":["../../../src/domain/record/mutationBatch.ts"],"names":[],"mappings":";;;AAiBA,kDA6BC;AA9CD,wDAA2E;AAG3E;;;;;GAKG;AACH,MAAM,0BAA0B,GAAG,GAAG,CAAA;AACtC;;;;GAIG;AACU,QAAA,0BAA0B,GAAG,EAAE,CAAA;AAE5C,SAAgB,mBAAmB,CAAC,oBAA8D;IAChG,IAAI,oBAAoB,GAAG,mBAAI,CAAA;IAC/B,IAAI,gBAAgB,GAAwB,EAAE,CAAA;IAE9C,SAAS,KAAK;QACZ,oBAAoB,EAAE,CAAA;QACtB,oBAAoB,CAAC,gBAAgB,CAAC,CAAA;QACtC,gBAAgB,GAAG,EAAE,CAAA;IACvB,CAAC;IAED,MAAM,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,EAAE,cAAc,EAAE,GAAG,IAAA,uBAAQ,EAAC,KAAK,EAAE,kCAA0B,EAAE;QACxG,OAAO,EAAE,KAAK;KACf,CAAC,CAAA;IAEF,OAAO;QACL,YAAY,EAAE,CAAC,SAA8B,EAAE,EAAE;YAC/C,IAAI,gBAAgB,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBAClC,oBAAoB,GAAG,IAAA,kCAAmB,EAAC,cAAc,EAAE,EAAE,OAAO,EAAE,0BAA0B,EAAE,CAAC,CAAA;YACrG,CAAC;YACD,gBAAgB,CAAC,IAAI,CAAC,GAAG,SAAS,CAAC,CAAA;QACrC,CAAC;QAED,KAAK;QAEL,IAAI,EAAE,GAAG,EAAE;YACT,oBAAoB,EAAE,CAAA;YACtB,cAAc,EAAE,CAAA;QAClB,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { LifeCycle, RumConfiguration, ViewHistory } from '@datadog/browser-rum-core';
|
|
2
|
+
import type { ShadowRootsController } from './shadowRootsController';
|
|
3
|
+
import type { EmitRecordCallback, EmitStatsCallback } from './record.types';
|
|
4
|
+
export interface RecordOptions {
|
|
5
|
+
emitRecord: EmitRecordCallback;
|
|
6
|
+
emitStats: EmitStatsCallback;
|
|
7
|
+
configuration: RumConfiguration;
|
|
8
|
+
lifeCycle: LifeCycle;
|
|
9
|
+
viewHistory: ViewHistory;
|
|
10
|
+
}
|
|
11
|
+
export interface RecordAPI {
|
|
12
|
+
stop: () => void;
|
|
13
|
+
flushMutations: () => void;
|
|
14
|
+
shadowRootsController: ShadowRootsController;
|
|
15
|
+
}
|
|
16
|
+
export declare function record(options: RecordOptions): RecordAPI;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.record = record;
|
|
37
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
38
|
+
const replayStats = __importStar(require("../replayStats"));
|
|
39
|
+
const trackers_1 = require("./trackers");
|
|
40
|
+
const elementsScrollPositions_1 = require("./elementsScrollPositions");
|
|
41
|
+
const shadowRootsController_1 = require("./shadowRootsController");
|
|
42
|
+
const startFullSnapshots_1 = require("./startFullSnapshots");
|
|
43
|
+
const recordingScope_1 = require("./recordingScope");
|
|
44
|
+
function record(options) {
|
|
45
|
+
const { emitRecord, emitStats, configuration, lifeCycle } = options;
|
|
46
|
+
// runtime checks for user options
|
|
47
|
+
if (!emitRecord || !emitStats) {
|
|
48
|
+
throw new Error('emit functions are required');
|
|
49
|
+
}
|
|
50
|
+
const processRecord = (record) => {
|
|
51
|
+
emitRecord(record);
|
|
52
|
+
(0, browser_core_1.sendToExtension)('record', { record });
|
|
53
|
+
const view = options.viewHistory.findView();
|
|
54
|
+
replayStats.addRecord(view.id);
|
|
55
|
+
};
|
|
56
|
+
const shadowRootsController = (0, shadowRootsController_1.initShadowRootsController)(processRecord, emitStats);
|
|
57
|
+
const scope = (0, recordingScope_1.createRecordingScope)(configuration, (0, elementsScrollPositions_1.createElementsScrollPositions)(), shadowRootsController);
|
|
58
|
+
const { stop: stopFullSnapshots } = (0, startFullSnapshots_1.startFullSnapshots)(lifeCycle, processRecord, emitStats, flushMutations, scope);
|
|
59
|
+
function flushMutations() {
|
|
60
|
+
shadowRootsController.flush();
|
|
61
|
+
mutationTracker.flush();
|
|
62
|
+
}
|
|
63
|
+
const mutationTracker = (0, trackers_1.trackMutation)(document, processRecord, emitStats, scope);
|
|
64
|
+
const trackers = [
|
|
65
|
+
mutationTracker,
|
|
66
|
+
(0, trackers_1.trackMove)(processRecord, scope),
|
|
67
|
+
(0, trackers_1.trackMouseInteraction)(processRecord, scope),
|
|
68
|
+
(0, trackers_1.trackScroll)(document, processRecord, scope),
|
|
69
|
+
(0, trackers_1.trackViewportResize)(processRecord, scope),
|
|
70
|
+
(0, trackers_1.trackInput)(document, processRecord, scope),
|
|
71
|
+
(0, trackers_1.trackMediaInteraction)(processRecord, scope),
|
|
72
|
+
(0, trackers_1.trackStyleSheet)(processRecord, scope),
|
|
73
|
+
(0, trackers_1.trackFocus)(processRecord, scope),
|
|
74
|
+
(0, trackers_1.trackVisualViewportResize)(processRecord, scope),
|
|
75
|
+
(0, trackers_1.trackFrustration)(lifeCycle, processRecord, scope),
|
|
76
|
+
(0, trackers_1.trackViewEnd)(lifeCycle, processRecord, flushMutations),
|
|
77
|
+
];
|
|
78
|
+
return {
|
|
79
|
+
stop: () => {
|
|
80
|
+
shadowRootsController.stop();
|
|
81
|
+
trackers.forEach((tracker) => tracker.stop());
|
|
82
|
+
stopFullSnapshots();
|
|
83
|
+
},
|
|
84
|
+
flushMutations,
|
|
85
|
+
shadowRootsController,
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
//# sourceMappingURL=record.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"record.js","sourceRoot":"","sources":["../../../src/domain/record/record.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwCA,wBAiDC;AAzFD,wDAAuD;AAEvD,4DAA6C;AAG7C,yCAamB;AACnB,uEAAyE;AAEzE,mEAAmE;AACnE,6DAAyD;AAEzD,qDAAuD;AAgBvD,SAAgB,MAAM,CAAC,OAAsB;IAC3C,MAAM,EAAE,UAAU,EAAE,SAAS,EAAE,aAAa,EAAE,SAAS,EAAE,GAAG,OAAO,CAAA;IACnE,kCAAkC;IAClC,IAAI,CAAC,UAAU,IAAI,CAAC,SAAS,EAAE,CAAC;QAC9B,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC,CAAA;IAChD,CAAC;IAED,MAAM,aAAa,GAAuB,CAAC,MAAqB,EAAE,EAAE;QAClE,UAAU,CAAC,MAAM,CAAC,CAAA;QAClB,IAAA,8BAAe,EAAC,QAAQ,EAAE,EAAE,MAAM,EAAE,CAAC,CAAA;QACrC,MAAM,IAAI,GAAG,OAAO,CAAC,WAAW,CAAC,QAAQ,EAAG,CAAA;QAC5C,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;IAChC,CAAC,CAAA;IAED,MAAM,qBAAqB,GAAG,IAAA,iDAAyB,EAAC,aAAa,EAAE,SAAS,CAAC,CAAA;IACjF,MAAM,KAAK,GAAG,IAAA,qCAAoB,EAAC,aAAa,EAAE,IAAA,uDAA6B,GAAE,EAAE,qBAAqB,CAAC,CAAA;IAEzG,MAAM,EAAE,IAAI,EAAE,iBAAiB,EAAE,GAAG,IAAA,uCAAkB,EAAC,SAAS,EAAE,aAAa,EAAE,SAAS,EAAE,cAAc,EAAE,KAAK,CAAC,CAAA;IAElH,SAAS,cAAc;QACrB,qBAAqB,CAAC,KAAK,EAAE,CAAA;QAC7B,eAAe,CAAC,KAAK,EAAE,CAAA;IACzB,CAAC;IAED,MAAM,eAAe,GAAG,IAAA,wBAAa,EAAC,QAAQ,EAAE,aAAa,EAAE,SAAS,EAAE,KAAK,CAAC,CAAA;IAChF,MAAM,QAAQ,GAAc;QAC1B,eAAe;QACf,IAAA,oBAAS,EAAC,aAAa,EAAE,KAAK,CAAC;QAC/B,IAAA,gCAAqB,EAAC,aAAa,EAAE,KAAK,CAAC;QAC3C,IAAA,sBAAW,EAAC,QAAQ,EAAE,aAAa,EAAE,KAAK,CAAC;QAC3C,IAAA,8BAAmB,EAAC,aAAa,EAAE,KAAK,CAAC;QACzC,IAAA,qBAAU,EAAC,QAAQ,EAAE,aAAa,EAAE,KAAK,CAAC;QAC1C,IAAA,gCAAqB,EAAC,aAAa,EAAE,KAAK,CAAC;QAC3C,IAAA,0BAAe,EAAC,aAAa,EAAE,KAAK,CAAC;QACrC,IAAA,qBAAU,EAAC,aAAa,EAAE,KAAK,CAAC;QAChC,IAAA,oCAAyB,EAAC,aAAa,EAAE,KAAK,CAAC;QAC/C,IAAA,2BAAgB,EAAC,SAAS,EAAE,aAAa,EAAE,KAAK,CAAC;QACjD,IAAA,uBAAY,EAAC,SAAS,EAAE,aAAa,EAAE,cAAc,CAAC;KACvD,CAAA;IAED,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,qBAAqB,CAAC,IAAI,EAAE,CAAA;YAC5B,QAAQ,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAA;YAC7C,iBAAiB,EAAE,CAAA;QACrB,CAAC;QACD,cAAc;QACd,qBAAqB;KACtB,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { RumMutationRecord } from '@datadog/browser-rum-core';
|
|
2
|
+
import type { TimeStamp } from '@datadog/browser-core';
|
|
3
|
+
import type { BrowserFullSnapshotRecord, BrowserIncrementalSnapshotRecord, BrowserRecord } from '../../types';
|
|
4
|
+
import type { SerializationKind, SerializationStats } from './serialization';
|
|
5
|
+
export type EmitRecordCallback<Record extends BrowserRecord = BrowserRecord> = (record: Record) => void;
|
|
6
|
+
export type EmitStatsCallback = (stats: SerializationStats) => void;
|
|
7
|
+
export type SerializeEvent = {
|
|
8
|
+
type: 'full';
|
|
9
|
+
kind: SerializationKind;
|
|
10
|
+
target: Document;
|
|
11
|
+
timestamp: TimeStamp;
|
|
12
|
+
v1: BrowserFullSnapshotRecord;
|
|
13
|
+
} | {
|
|
14
|
+
type: 'incremental';
|
|
15
|
+
target: RumMutationRecord[];
|
|
16
|
+
timestamp: TimeStamp;
|
|
17
|
+
v1: BrowserIncrementalSnapshotRecord;
|
|
18
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"record.types.js","sourceRoot":"","sources":["../../../src/domain/record/record.types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { RumConfiguration } from '@datadog/browser-rum-core';
|
|
2
|
+
import { Observable } from '@datadog/browser-core';
|
|
3
|
+
import type { ElementsScrollPositions } from './elementsScrollPositions';
|
|
4
|
+
import type { EventIds, NodeIds, StringIds, StyleSheetIds } from './itemIds';
|
|
5
|
+
import type { ShadowRootsController } from './shadowRootsController';
|
|
6
|
+
import type { SerializeEvent } from './record.types';
|
|
7
|
+
/**
|
|
8
|
+
* State associated with a stream of session replay records. When a new stream of records
|
|
9
|
+
* starts (e.g. because recording has shut down and restarted), a new RecordingScope
|
|
10
|
+
* object must be created; this ensures that we don't generate records that reference ids
|
|
11
|
+
* or data which aren't present in the current stream.
|
|
12
|
+
*/
|
|
13
|
+
export interface RecordingScope {
|
|
14
|
+
resetIds(): void;
|
|
15
|
+
configuration: RumConfiguration;
|
|
16
|
+
elementsScrollPositions: ElementsScrollPositions;
|
|
17
|
+
eventIds: EventIds;
|
|
18
|
+
nodeIds: NodeIds;
|
|
19
|
+
serializeObservable: Observable<SerializeEvent>;
|
|
20
|
+
shadowRootsController: ShadowRootsController;
|
|
21
|
+
stringIds: StringIds;
|
|
22
|
+
styleSheetIds: StyleSheetIds;
|
|
23
|
+
}
|
|
24
|
+
export declare function createRecordingScope(configuration: RumConfiguration, elementsScrollPositions: ElementsScrollPositions, shadowRootsController: ShadowRootsController): RecordingScope;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createRecordingScope = createRecordingScope;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
const itemIds_1 = require("./itemIds");
|
|
6
|
+
function createRecordingScope(configuration, elementsScrollPositions, shadowRootsController) {
|
|
7
|
+
const eventIds = (0, itemIds_1.createEventIds)();
|
|
8
|
+
const nodeIds = (0, itemIds_1.createNodeIds)();
|
|
9
|
+
const stringIds = (0, itemIds_1.createStringIds)();
|
|
10
|
+
const styleSheetIds = (0, itemIds_1.createStyleSheetIds)();
|
|
11
|
+
const scope = {
|
|
12
|
+
resetIds() {
|
|
13
|
+
scope.eventIds.clear();
|
|
14
|
+
scope.nodeIds.clear();
|
|
15
|
+
scope.stringIds.clear();
|
|
16
|
+
scope.styleSheetIds.clear();
|
|
17
|
+
},
|
|
18
|
+
configuration,
|
|
19
|
+
elementsScrollPositions,
|
|
20
|
+
eventIds,
|
|
21
|
+
nodeIds,
|
|
22
|
+
serializeObservable: new browser_core_1.Observable(),
|
|
23
|
+
shadowRootsController,
|
|
24
|
+
stringIds,
|
|
25
|
+
styleSheetIds,
|
|
26
|
+
};
|
|
27
|
+
return scope;
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=recordingScope.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"recordingScope.js","sourceRoot":"","sources":["../../../src/domain/record/recordingScope.ts"],"names":[],"mappings":";;AA4BA,oDA6BC;AAvDD,wDAAkD;AAElD,uCAA+F;AAwB/F,SAAgB,oBAAoB,CAClC,aAA+B,EAC/B,uBAAgD,EAChD,qBAA4C;IAE5C,MAAM,QAAQ,GAAG,IAAA,wBAAc,GAAE,CAAA;IACjC,MAAM,OAAO,GAAG,IAAA,uBAAa,GAAE,CAAA;IAC/B,MAAM,SAAS,GAAG,IAAA,yBAAe,GAAE,CAAA;IACnC,MAAM,aAAa,GAAG,IAAA,6BAAmB,GAAE,CAAA;IAE3C,MAAM,KAAK,GAAmB;QAC5B,QAAQ;YACN,KAAK,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAA;YACtB,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE,CAAA;YACrB,KAAK,CAAC,SAAS,CAAC,KAAK,EAAE,CAAA;YACvB,KAAK,CAAC,aAAa,CAAC,KAAK,EAAE,CAAA;QAC7B,CAAC;QAED,aAAa;QACb,uBAAuB;QACvB,QAAQ;QACR,OAAO;QACP,mBAAmB,EAAE,IAAI,yBAAU,EAAkB;QACrD,qBAAqB;QACrB,SAAS;QACT,aAAa;KACd,CAAA;IAED,OAAO,KAAK,CAAA;AACd,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { Change } from '../../../types';
|
|
2
|
+
import { ChangeType } from '../../../types';
|
|
3
|
+
import type { StringIds } from '../itemIds';
|
|
4
|
+
type ChangeData<T extends ChangeType> = Extract<Change, [T, ...unknown[]]> extends [T, ...infer Rest] ? Rest[number] : never;
|
|
5
|
+
/**
|
|
6
|
+
* ChangeEncoder handles the low-level work of building compact, optimized sequences of
|
|
7
|
+
* Changes. In particular, it:
|
|
8
|
+
* - Converts literal strings to string table references, to eliminate the duplication
|
|
9
|
+
* of transferring the same strings repeatedly.
|
|
10
|
+
* - Groups changes by type, instead of transmitting them strictly in order, so that we
|
|
11
|
+
* can avoid transmitting a separate Change data structure with an independent type tag
|
|
12
|
+
* for each small mutation. (It's safe to do this for changes that occur within the same
|
|
13
|
+
* SerializationTransaction since they logically happen at the same time.)
|
|
14
|
+
*/
|
|
15
|
+
export interface ChangeEncoder {
|
|
16
|
+
/** Encode a Change of the given type and add it to the internal buffer. */
|
|
17
|
+
add<T extends ChangeType>(type: T, data: ChangeData<T>): void;
|
|
18
|
+
/** Flush the internal buffer, returning all Changes added since the last flush(). */
|
|
19
|
+
flush(): Change[];
|
|
20
|
+
}
|
|
21
|
+
export declare function createChangeEncoder(stringIds: StringIds): ChangeEncoder;
|
|
22
|
+
export {};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createChangeEncoder = createChangeEncoder;
|
|
4
|
+
const types_1 = require("../../../types");
|
|
5
|
+
function createChangeEncoder(stringIds) {
|
|
6
|
+
let pendingChanges = {};
|
|
7
|
+
// A helper that searches for strings in arbitrarily-nested arrays, inserts any strings
|
|
8
|
+
// it finds into the string table, and replaces the strings with string table
|
|
9
|
+
// references.
|
|
10
|
+
const convertStringsToStringReferences = (array) => {
|
|
11
|
+
for (let index = 0, length = array.length; index < length; index++) {
|
|
12
|
+
const item = array[index];
|
|
13
|
+
if (typeof item === 'string') {
|
|
14
|
+
const previousSize = stringIds.size;
|
|
15
|
+
array[index] = stringIds.getOrInsert(item);
|
|
16
|
+
if (stringIds.size > previousSize) {
|
|
17
|
+
add(types_1.ChangeType.AddString, item);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
else if (Array.isArray(item)) {
|
|
21
|
+
convertStringsToStringReferences(item);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
const add = (type, data) => {
|
|
26
|
+
if (!(type in pendingChanges)) {
|
|
27
|
+
pendingChanges[type] = [type];
|
|
28
|
+
}
|
|
29
|
+
if (type !== types_1.ChangeType.AddString && Array.isArray(data)) {
|
|
30
|
+
convertStringsToStringReferences(data);
|
|
31
|
+
}
|
|
32
|
+
pendingChanges[type].push(data);
|
|
33
|
+
};
|
|
34
|
+
const flush = () => {
|
|
35
|
+
const changes = [];
|
|
36
|
+
[
|
|
37
|
+
types_1.ChangeType.AddString,
|
|
38
|
+
types_1.ChangeType.AddNode,
|
|
39
|
+
types_1.ChangeType.RemoveNode,
|
|
40
|
+
types_1.ChangeType.Attribute,
|
|
41
|
+
types_1.ChangeType.Text,
|
|
42
|
+
types_1.ChangeType.Size,
|
|
43
|
+
types_1.ChangeType.ScrollPosition,
|
|
44
|
+
types_1.ChangeType.AddStyleSheet,
|
|
45
|
+
types_1.ChangeType.AttachedStyleSheets,
|
|
46
|
+
types_1.ChangeType.MediaPlaybackState,
|
|
47
|
+
types_1.ChangeType.VisualViewport,
|
|
48
|
+
].forEach((changeType) => {
|
|
49
|
+
const change = pendingChanges[changeType];
|
|
50
|
+
if (change) {
|
|
51
|
+
changes.push(change);
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
pendingChanges = {};
|
|
55
|
+
return changes;
|
|
56
|
+
};
|
|
57
|
+
return { add, flush };
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=changeEncoder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"changeEncoder.js","sourceRoot":"","sources":["../../../../src/domain/record/serialization/changeEncoder.ts"],"names":[],"mappings":";;AAwBA,kDAgEC;AAvFD,0CAA2C;AAuB3C,SAAgB,mBAAmB,CAAC,SAAoB;IACtD,IAAI,cAAc,GAA2C,EAAE,CAAA;IAE/D,uFAAuF;IACvF,6EAA6E;IAC7E,cAAc;IACd,MAAM,gCAAgC,GAAG,CAAC,KAAY,EAAQ,EAAE;QAC9D,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC,MAAM,EAAE,KAAK,GAAG,MAAM,EAAE,KAAK,EAAE,EAAE,CAAC;YACnE,MAAM,IAAI,GAAG,KAAK,CAAC,KAAK,CAAC,CAAA;YACzB,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE,CAAC;gBAC7B,MAAM,YAAY,GAAG,SAAS,CAAC,IAAI,CAAA;gBACnC,KAAK,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,WAAW,CAAC,IAAI,CAAC,CAAA;gBAC1C,IAAI,SAAS,CAAC,IAAI,GAAG,YAAY,EAAE,CAAC;oBAClC,GAAG,CAAC,kBAAU,CAAC,SAAS,EAAE,IAAI,CAAC,CAAA;gBACjC,CAAC;YACH,CAAC;iBAAM,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;gBAC/B,gCAAgC,CAAC,IAAI,CAAC,CAAA;YACxC,CAAC;QACH,CAAC;IACH,CAAC,CAAA;IAED,MAAM,GAAG,GAAG,CAAuB,IAAO,EAAE,IAAmB,EAAQ,EAAE;QACvE,IAAI,CAAC,CAAC,IAAI,IAAI,cAAc,CAAC,EAAE,CAAC;YAC9B,cAAc,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,CAAA;QAC/B,CAAC;QACD,IAAI,IAAI,KAAK,kBAAU,CAAC,SAAS,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;YACzD,gCAAgC,CAAC,IAAI,CAAC,CAAA;QACxC,CAAC;QACD,cAAc,CAAC,IAAI,CAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;IAClC,CAAC,CAAA;IAED,MAAM,KAAK,GAAG,GAAa,EAAE;QAC3B,MAAM,OAAO,GAAa,EAAE,CAO3B;QAAA;YACC,kBAAU,CAAC,SAAS;YACpB,kBAAU,CAAC,OAAO;YAClB,kBAAU,CAAC,UAAU;YACrB,kBAAU,CAAC,SAAS;YACpB,kBAAU,CAAC,IAAI;YACf,kBAAU,CAAC,IAAI;YACf,kBAAU,CAAC,cAAc;YACzB,kBAAU,CAAC,aAAa;YACxB,kBAAU,CAAC,mBAAmB;YAC9B,kBAAU,CAAC,kBAAkB;YAC7B,kBAAU,CAAC,cAAc;SAC1B,CAAC,OAAO,CAAC,CAAC,UAAsB,EAAQ,EAAE;YACzC,MAAM,MAAM,GAAG,cAAc,CAAC,UAAU,CAAC,CAAA;YACzC,IAAI,MAAM,EAAE,CAAC;gBACX,OAAO,CAAC,IAAI,CAAC,MAAgB,CAAC,CAAA;YAChC,CAAC;QACH,CAAC,CAAC,CAAA;QAEF,cAAc,GAAG,EAAE,CAAA;QAEnB,OAAO,OAAO,CAAA;IAChB,CAAC,CAAA;IAED,OAAO,EAAE,GAAG,EAAE,KAAK,EAAE,CAAA;AACvB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { BrowserChangeRecord, BrowserFullSnapshotRecord, BrowserIncrementalSnapshotRecord } from '../../../../types';
|
|
2
|
+
import type { V1RenderOptions } from './renderOptions';
|
|
3
|
+
import type { StringTable } from './stringTable';
|
|
4
|
+
import type { VDocument } from './vDocument';
|
|
5
|
+
export interface ChangeConverter {
|
|
6
|
+
convert(record: BrowserChangeRecord, options?: Partial<V1RenderOptions>): BrowserFullSnapshotRecord | BrowserIncrementalSnapshotRecord;
|
|
7
|
+
document: VDocument;
|
|
8
|
+
stringTable: StringTable;
|
|
9
|
+
}
|
|
10
|
+
export declare function createChangeConverter(): ChangeConverter;
|