@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,58 @@
|
|
|
1
|
+
import type { RumConfiguration } from '@datadog/browser-rum-core'
|
|
2
|
+
|
|
3
|
+
import { Observable } from '@datadog/browser-core'
|
|
4
|
+
import type { ElementsScrollPositions } from './elementsScrollPositions'
|
|
5
|
+
import { createEventIds, createNodeIds, createStringIds, createStyleSheetIds } from './itemIds'
|
|
6
|
+
import type { EventIds, NodeIds, StringIds, StyleSheetIds } from './itemIds'
|
|
7
|
+
import type { ShadowRootsController } from './shadowRootsController'
|
|
8
|
+
import type { SerializeEvent } from './record.types'
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* State associated with a stream of session replay records. When a new stream of records
|
|
12
|
+
* starts (e.g. because recording has shut down and restarted), a new RecordingScope
|
|
13
|
+
* object must be created; this ensures that we don't generate records that reference ids
|
|
14
|
+
* or data which aren't present in the current stream.
|
|
15
|
+
*/
|
|
16
|
+
export interface RecordingScope {
|
|
17
|
+
resetIds(): void
|
|
18
|
+
|
|
19
|
+
configuration: RumConfiguration
|
|
20
|
+
elementsScrollPositions: ElementsScrollPositions
|
|
21
|
+
eventIds: EventIds
|
|
22
|
+
nodeIds: NodeIds
|
|
23
|
+
serializeObservable: Observable<SerializeEvent>
|
|
24
|
+
shadowRootsController: ShadowRootsController
|
|
25
|
+
stringIds: StringIds
|
|
26
|
+
styleSheetIds: StyleSheetIds
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export function createRecordingScope(
|
|
30
|
+
configuration: RumConfiguration,
|
|
31
|
+
elementsScrollPositions: ElementsScrollPositions,
|
|
32
|
+
shadowRootsController: ShadowRootsController
|
|
33
|
+
): RecordingScope {
|
|
34
|
+
const eventIds = createEventIds()
|
|
35
|
+
const nodeIds = createNodeIds()
|
|
36
|
+
const stringIds = createStringIds()
|
|
37
|
+
const styleSheetIds = createStyleSheetIds()
|
|
38
|
+
|
|
39
|
+
const scope: RecordingScope = {
|
|
40
|
+
resetIds(): void {
|
|
41
|
+
scope.eventIds.clear()
|
|
42
|
+
scope.nodeIds.clear()
|
|
43
|
+
scope.stringIds.clear()
|
|
44
|
+
scope.styleSheetIds.clear()
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
configuration,
|
|
48
|
+
elementsScrollPositions,
|
|
49
|
+
eventIds,
|
|
50
|
+
nodeIds,
|
|
51
|
+
serializeObservable: new Observable<SerializeEvent>(),
|
|
52
|
+
shadowRootsController,
|
|
53
|
+
stringIds,
|
|
54
|
+
styleSheetIds,
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
return scope
|
|
58
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import type { Change } from '../../../types'
|
|
2
|
+
import { ChangeType } from '../../../types'
|
|
3
|
+
import type { StringIds } from '../itemIds'
|
|
4
|
+
|
|
5
|
+
type ChangeData<T extends ChangeType> =
|
|
6
|
+
Extract<Change, [T, ...unknown[]]> extends [T, ...infer Rest] ? Rest[number] : never
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* ChangeEncoder handles the low-level work of building compact, optimized sequences of
|
|
10
|
+
* Changes. In particular, it:
|
|
11
|
+
* - Converts literal strings to string table references, to eliminate the duplication
|
|
12
|
+
* of transferring the same strings repeatedly.
|
|
13
|
+
* - Groups changes by type, instead of transmitting them strictly in order, so that we
|
|
14
|
+
* can avoid transmitting a separate Change data structure with an independent type tag
|
|
15
|
+
* for each small mutation. (It's safe to do this for changes that occur within the same
|
|
16
|
+
* SerializationTransaction since they logically happen at the same time.)
|
|
17
|
+
*/
|
|
18
|
+
export interface ChangeEncoder {
|
|
19
|
+
/** Encode a Change of the given type and add it to the internal buffer. */
|
|
20
|
+
add<T extends ChangeType>(type: T, data: ChangeData<T>): void
|
|
21
|
+
/** Flush the internal buffer, returning all Changes added since the last flush(). */
|
|
22
|
+
flush(): Change[]
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export function createChangeEncoder(stringIds: StringIds): ChangeEncoder {
|
|
26
|
+
let pendingChanges: Partial<Record<ChangeType, unknown[]>> = {}
|
|
27
|
+
|
|
28
|
+
// A helper that searches for strings in arbitrarily-nested arrays, inserts any strings
|
|
29
|
+
// it finds into the string table, and replaces the strings with string table
|
|
30
|
+
// references.
|
|
31
|
+
const convertStringsToStringReferences = (array: any[]): void => {
|
|
32
|
+
for (let index = 0, length = array.length; index < length; index++) {
|
|
33
|
+
const item = array[index]
|
|
34
|
+
if (typeof item === 'string') {
|
|
35
|
+
const previousSize = stringIds.size
|
|
36
|
+
array[index] = stringIds.getOrInsert(item)
|
|
37
|
+
if (stringIds.size > previousSize) {
|
|
38
|
+
add(ChangeType.AddString, item)
|
|
39
|
+
}
|
|
40
|
+
} else if (Array.isArray(item)) {
|
|
41
|
+
convertStringsToStringReferences(item)
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
const add = <T extends ChangeType>(type: T, data: ChangeData<T>): void => {
|
|
47
|
+
if (!(type in pendingChanges)) {
|
|
48
|
+
pendingChanges[type] = [type]
|
|
49
|
+
}
|
|
50
|
+
if (type !== ChangeType.AddString && Array.isArray(data)) {
|
|
51
|
+
convertStringsToStringReferences(data)
|
|
52
|
+
}
|
|
53
|
+
pendingChanges[type]!.push(data)
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
const flush = (): Change[] => {
|
|
57
|
+
const changes: Change[] = []
|
|
58
|
+
|
|
59
|
+
// Place all changes into a single array. Because the player always just plays back
|
|
60
|
+
// the changes in order, the ordering of the changes matters; if a dependency can
|
|
61
|
+
// exist between two kinds of change, then the dependent change must come after the
|
|
62
|
+
// change it depends on. This list defines an ordering that ensures that these
|
|
63
|
+
// dependencies are always satisfied.
|
|
64
|
+
;[
|
|
65
|
+
ChangeType.AddString,
|
|
66
|
+
ChangeType.AddNode,
|
|
67
|
+
ChangeType.RemoveNode,
|
|
68
|
+
ChangeType.Attribute,
|
|
69
|
+
ChangeType.Text,
|
|
70
|
+
ChangeType.Size,
|
|
71
|
+
ChangeType.ScrollPosition,
|
|
72
|
+
ChangeType.AddStyleSheet,
|
|
73
|
+
ChangeType.AttachedStyleSheets,
|
|
74
|
+
ChangeType.MediaPlaybackState,
|
|
75
|
+
ChangeType.VisualViewport,
|
|
76
|
+
].forEach((changeType: ChangeType): void => {
|
|
77
|
+
const change = pendingChanges[changeType]
|
|
78
|
+
if (change) {
|
|
79
|
+
changes.push(change as Change)
|
|
80
|
+
}
|
|
81
|
+
})
|
|
82
|
+
|
|
83
|
+
pendingChanges = {}
|
|
84
|
+
|
|
85
|
+
return changes
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
return { add, flush }
|
|
89
|
+
}
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
AddDocTypeNodeChange,
|
|
3
|
+
AddElementNodeChange,
|
|
4
|
+
AddNodeChange,
|
|
5
|
+
AddStyleSheetChange,
|
|
6
|
+
AddTextNodeChange,
|
|
7
|
+
AttachedStyleSheetsChange,
|
|
8
|
+
AttributeChange,
|
|
9
|
+
BrowserChangeRecord,
|
|
10
|
+
BrowserFullSnapshotRecord,
|
|
11
|
+
BrowserIncrementalSnapshotRecord,
|
|
12
|
+
MediaPlaybackStateChange,
|
|
13
|
+
RemoveNodeChange,
|
|
14
|
+
ScrollPositionChange,
|
|
15
|
+
SizeChange,
|
|
16
|
+
TextChange,
|
|
17
|
+
} from '../../../../types'
|
|
18
|
+
import { ChangeType } from '../../../../types'
|
|
19
|
+
import type { NodeId, StyleSheetId } from '../../itemIds'
|
|
20
|
+
import type { V1RenderOptions } from './renderOptions'
|
|
21
|
+
import type { StringTable } from './stringTable'
|
|
22
|
+
import { createStringTable } from './stringTable'
|
|
23
|
+
import type { VDocument } from './vDocument'
|
|
24
|
+
import { createVDocument } from './vDocument'
|
|
25
|
+
import type { VNode } from './vNode'
|
|
26
|
+
|
|
27
|
+
export interface ChangeConverter {
|
|
28
|
+
convert(
|
|
29
|
+
record: BrowserChangeRecord,
|
|
30
|
+
options?: Partial<V1RenderOptions>
|
|
31
|
+
): BrowserFullSnapshotRecord | BrowserIncrementalSnapshotRecord
|
|
32
|
+
|
|
33
|
+
document: VDocument
|
|
34
|
+
stringTable: StringTable
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export function createChangeConverter(): ChangeConverter {
|
|
38
|
+
const self: ChangeConverter = {
|
|
39
|
+
convert(
|
|
40
|
+
record: BrowserChangeRecord,
|
|
41
|
+
options: Partial<V1RenderOptions> = {}
|
|
42
|
+
): BrowserFullSnapshotRecord | BrowserIncrementalSnapshotRecord {
|
|
43
|
+
applyChangeToVDOM(record, self.document, self.stringTable)
|
|
44
|
+
return self.document.render({ timestamp: record.timestamp, ...options })
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
document: createVDocument(),
|
|
48
|
+
stringTable: createStringTable(),
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
return self
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function applyChangeToVDOM(record: BrowserChangeRecord, document: VDocument, stringTable: StringTable): void {
|
|
55
|
+
document.mutations.clear()
|
|
56
|
+
|
|
57
|
+
for (const change of record.data) {
|
|
58
|
+
switch (change[0]) {
|
|
59
|
+
case ChangeType.AddString: {
|
|
60
|
+
for (let i = 1; i < change.length; i++) {
|
|
61
|
+
stringTable.add(change[i] as string)
|
|
62
|
+
}
|
|
63
|
+
break
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
case ChangeType.AddNode: {
|
|
67
|
+
for (let i = 1; i < change.length; i++) {
|
|
68
|
+
applyAddNodeChange(change[i] as AddNodeChange, document, stringTable)
|
|
69
|
+
}
|
|
70
|
+
break
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
case ChangeType.RemoveNode: {
|
|
74
|
+
for (let i = 1; i < change.length; i++) {
|
|
75
|
+
applyRemoveNodeChange(change[i], document)
|
|
76
|
+
}
|
|
77
|
+
break
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
case ChangeType.Attribute: {
|
|
81
|
+
for (let i = 1; i < change.length; i++) {
|
|
82
|
+
applyAttributeChange(change[i] as AttributeChange, document, stringTable)
|
|
83
|
+
}
|
|
84
|
+
break
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
case ChangeType.Text: {
|
|
88
|
+
for (let i = 1; i < change.length; i++) {
|
|
89
|
+
applyTextChange(change[i] as TextChange, document, stringTable)
|
|
90
|
+
}
|
|
91
|
+
break
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
case ChangeType.ScrollPosition: {
|
|
95
|
+
for (let i = 1; i < change.length; i++) {
|
|
96
|
+
applyScrollPositionChange(change[i] as ScrollPositionChange, document)
|
|
97
|
+
}
|
|
98
|
+
break
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
case ChangeType.Size: {
|
|
102
|
+
for (let i = 1; i < change.length; i++) {
|
|
103
|
+
applySizeChange(change[i] as SizeChange, document)
|
|
104
|
+
}
|
|
105
|
+
break
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
case ChangeType.AddStyleSheet: {
|
|
109
|
+
for (let i = 1; i < change.length; i++) {
|
|
110
|
+
applyAddStyleSheetChange(change[i] as AddStyleSheetChange, document, stringTable)
|
|
111
|
+
}
|
|
112
|
+
break
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
case ChangeType.AttachedStyleSheets: {
|
|
116
|
+
for (let i = 1; i < change.length; i++) {
|
|
117
|
+
applyAttachedStyleSheetsChange(change[i] as AttachedStyleSheetsChange, document)
|
|
118
|
+
}
|
|
119
|
+
break
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
case ChangeType.MediaPlaybackState: {
|
|
123
|
+
for (let i = 1; i < change.length; i++) {
|
|
124
|
+
applyMediaPlaybackStateChange(change[i] as MediaPlaybackStateChange, document)
|
|
125
|
+
}
|
|
126
|
+
break
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
case ChangeType.VisualViewport:
|
|
130
|
+
// Not yet supported.
|
|
131
|
+
break
|
|
132
|
+
|
|
133
|
+
default:
|
|
134
|
+
change satisfies never
|
|
135
|
+
throw new Error(`Unsupported BrowserChangeType: ${change[0] as any}`)
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
function applyAddNodeChange(addedNode: AddNodeChange, document: VDocument, stringTable: StringTable): void {
|
|
141
|
+
const nodeName = stringTable.decode(addedNode[1])
|
|
142
|
+
|
|
143
|
+
let node: VNode
|
|
144
|
+
switch (nodeName) {
|
|
145
|
+
case '#cdata-section':
|
|
146
|
+
node = document.createNode({ kind: '#cdata-section' })
|
|
147
|
+
break
|
|
148
|
+
|
|
149
|
+
case '#doctype': {
|
|
150
|
+
const [, , name, publicId, systemId] = addedNode as AddDocTypeNodeChange
|
|
151
|
+
node = document.createNode({
|
|
152
|
+
kind: '#doctype',
|
|
153
|
+
name: stringTable.decode(name),
|
|
154
|
+
publicId: stringTable.decode(publicId),
|
|
155
|
+
systemId: stringTable.decode(systemId),
|
|
156
|
+
})
|
|
157
|
+
break
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
case '#document':
|
|
161
|
+
node = document.createNode({ kind: '#document' })
|
|
162
|
+
break
|
|
163
|
+
|
|
164
|
+
case '#document-fragment':
|
|
165
|
+
node = document.createNode({ kind: '#document-fragment' })
|
|
166
|
+
break
|
|
167
|
+
|
|
168
|
+
case '#shadow-root':
|
|
169
|
+
node = document.createNode({ kind: '#shadow-root' })
|
|
170
|
+
break
|
|
171
|
+
|
|
172
|
+
case '#text': {
|
|
173
|
+
const [, , textContent] = addedNode as AddTextNodeChange
|
|
174
|
+
node = document.createNode({
|
|
175
|
+
kind: '#text',
|
|
176
|
+
textContent: stringTable.decode(textContent),
|
|
177
|
+
})
|
|
178
|
+
break
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
default: {
|
|
182
|
+
let tagName: string
|
|
183
|
+
let isSVG = false
|
|
184
|
+
if (nodeName.startsWith('svg>')) {
|
|
185
|
+
tagName = nodeName.substring(4).toLowerCase()
|
|
186
|
+
isSVG = true
|
|
187
|
+
} else {
|
|
188
|
+
tagName = nodeName.toLowerCase()
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
const [, , ...attributeAssignments] = addedNode as AddElementNodeChange
|
|
192
|
+
const attributes: Record<string, string> = {}
|
|
193
|
+
for (const [name, value] of attributeAssignments) {
|
|
194
|
+
attributes[stringTable.decode(name)] = stringTable.decode(value)
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
node = document.createNode({ kind: '#element', tag: tagName, attributes, isSVG })
|
|
198
|
+
break
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
const insertionPoint = addedNode[0]
|
|
203
|
+
if (insertionPoint === null) {
|
|
204
|
+
document.root = node
|
|
205
|
+
} else if (insertionPoint === 0) {
|
|
206
|
+
const previousSiblingId = (node.id - 1) as NodeId
|
|
207
|
+
const previousSibling = document.getNodeById(previousSiblingId)
|
|
208
|
+
previousSibling.after(node)
|
|
209
|
+
} else if (insertionPoint > 0) {
|
|
210
|
+
const parentId = (node.id - insertionPoint) as NodeId
|
|
211
|
+
const parent = document.getNodeById(parentId)
|
|
212
|
+
parent.appendChild(node)
|
|
213
|
+
} else {
|
|
214
|
+
const nextSiblingId = (node.id + insertionPoint) as NodeId
|
|
215
|
+
const nextSibling = document.getNodeById(nextSiblingId)
|
|
216
|
+
nextSibling.before(node)
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
function applyAddStyleSheetChange(change: AddStyleSheetChange, document: VDocument, stringTable: StringTable): void {
|
|
221
|
+
const [encodedRules, encodedMediaList = [], disabled = false] = change
|
|
222
|
+
const rules: string | string[] = Array.isArray(encodedRules)
|
|
223
|
+
? encodedRules.map((rule) => stringTable.decode(rule))
|
|
224
|
+
: stringTable.decode(encodedRules)
|
|
225
|
+
const mediaList = encodedMediaList.map((item) => stringTable.decode(item))
|
|
226
|
+
document.createStyleSheet({ rules, mediaList, disabled })
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
function applyAttachedStyleSheetsChange(change: AttachedStyleSheetsChange, document: VDocument): void {
|
|
230
|
+
const [nodeId, ...sheetIds] = change
|
|
231
|
+
const node = document.getNodeById(nodeId as NodeId)
|
|
232
|
+
node.setAttachedStyleSheets(sheetIds.map((sheetId) => document.getStyleSheetById(sheetId as StyleSheetId)))
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
function applyAttributeChange(change: AttributeChange, document: VDocument, stringTable: StringTable): void {
|
|
236
|
+
const [nodeId, ...attributeMutations] = change
|
|
237
|
+
const node = document.getNodeById(nodeId as NodeId)
|
|
238
|
+
for (const [nameOrId, valueOrId = null] of attributeMutations) {
|
|
239
|
+
const name = stringTable.decode(nameOrId)
|
|
240
|
+
if (valueOrId === null) {
|
|
241
|
+
node.setAttribute(name, null)
|
|
242
|
+
} else {
|
|
243
|
+
const value = stringTable.decode(valueOrId)
|
|
244
|
+
node.setAttribute(name, value)
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
function applyMediaPlaybackStateChange(change: MediaPlaybackStateChange, document: VDocument): void {
|
|
250
|
+
const [nodeId, playbackState] = change
|
|
251
|
+
const node = document.getNodeById(nodeId as NodeId)
|
|
252
|
+
node.setPlaybackState(playbackState)
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
function applyRemoveNodeChange(change: RemoveNodeChange, document: VDocument): void {
|
|
256
|
+
const nodeId = change as NodeId
|
|
257
|
+
const node = document.getNodeById(nodeId)
|
|
258
|
+
node.remove()
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
function applyScrollPositionChange(change: ScrollPositionChange, document: VDocument): void {
|
|
262
|
+
const [nodeId, left, top] = change
|
|
263
|
+
const node = document.getNodeById(nodeId as NodeId)
|
|
264
|
+
node.setScrollPosition(left, top)
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
function applySizeChange(change: SizeChange, document: VDocument): void {
|
|
268
|
+
const [nodeId, width, height] = change
|
|
269
|
+
const node = document.getNodeById(nodeId as NodeId)
|
|
270
|
+
node.setSize(width, height)
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
function applyTextChange(change: TextChange, document: VDocument, stringTable: StringTable): void {
|
|
274
|
+
const [nodeId, textContent] = change
|
|
275
|
+
const node = document.getNodeById(nodeId as NodeId)
|
|
276
|
+
node.setTextContent(stringTable.decode(textContent))
|
|
277
|
+
}
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
import { ChangeType } from '../../../../types'
|
|
2
|
+
import type {
|
|
3
|
+
AddDocTypeNodeChange,
|
|
4
|
+
AddElementNodeChange,
|
|
5
|
+
AddNodeChange,
|
|
6
|
+
AddStyleSheetChange,
|
|
7
|
+
AddTextNodeChange,
|
|
8
|
+
AttributeAssignmentOrDeletion,
|
|
9
|
+
AttributeChange,
|
|
10
|
+
BrowserChangeRecord,
|
|
11
|
+
Change,
|
|
12
|
+
StyleSheetRules,
|
|
13
|
+
TextChange,
|
|
14
|
+
} from '../../../../types'
|
|
15
|
+
import type { StringTable } from './stringTable'
|
|
16
|
+
import { createStringTable } from './stringTable'
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* ChangeDecoder converts a BrowserChangeRecord, or a stream of BrowserChangeRecords, into
|
|
20
|
+
* a more human-readable form by:
|
|
21
|
+
* - Removing AddString changes (string table definitions).
|
|
22
|
+
* - Replacing string table references in all other changes with their literal values.
|
|
23
|
+
*
|
|
24
|
+
* This makes it easier to visualize the contents of BrowserChangeRecords or to write test
|
|
25
|
+
* expectations against the record's content.
|
|
26
|
+
*/
|
|
27
|
+
export interface ChangeDecoder {
|
|
28
|
+
decode(record: BrowserChangeRecord): BrowserChangeRecord
|
|
29
|
+
|
|
30
|
+
stringTable: StringTable
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export function createChangeDecoder(): ChangeDecoder {
|
|
34
|
+
const self: ChangeDecoder = {
|
|
35
|
+
decode(record: BrowserChangeRecord): BrowserChangeRecord {
|
|
36
|
+
return decodeChangeRecord(record, self.stringTable)
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
stringTable: createStringTable(),
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
return self
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function decodeChangeRecord(record: BrowserChangeRecord, stringTable: StringTable): BrowserChangeRecord {
|
|
46
|
+
const decodedData: Change[] = []
|
|
47
|
+
|
|
48
|
+
for (const change of record.data) {
|
|
49
|
+
switch (change[0]) {
|
|
50
|
+
case ChangeType.AddString:
|
|
51
|
+
// Update the string table.
|
|
52
|
+
for (let i = 1; i < change.length; i++) {
|
|
53
|
+
stringTable.add(change[i] as string)
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// Deliberately don't include this change in the decoded record.
|
|
57
|
+
break
|
|
58
|
+
|
|
59
|
+
case ChangeType.AddNode: {
|
|
60
|
+
const decoded: [typeof ChangeType.AddNode, ...AddNodeChange[]] = [ChangeType.AddNode]
|
|
61
|
+
for (let i = 1; i < change.length; i++) {
|
|
62
|
+
decoded.push(decodeAddNodeChange(change[i] as AddNodeChange, stringTable))
|
|
63
|
+
}
|
|
64
|
+
decodedData.push(decoded)
|
|
65
|
+
break
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
case ChangeType.RemoveNode:
|
|
69
|
+
decodedData.push(change)
|
|
70
|
+
break
|
|
71
|
+
|
|
72
|
+
case ChangeType.Attribute: {
|
|
73
|
+
const decoded: [typeof ChangeType.Attribute, ...AttributeChange[]] = [ChangeType.Attribute]
|
|
74
|
+
for (let i = 1; i < change.length; i++) {
|
|
75
|
+
decoded.push(decodeAttributeChange(change[i] as AttributeChange, stringTable))
|
|
76
|
+
}
|
|
77
|
+
decodedData.push(decoded)
|
|
78
|
+
break
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
case ChangeType.Text: {
|
|
82
|
+
const decoded: [typeof ChangeType.Text, ...TextChange[]] = [ChangeType.Text]
|
|
83
|
+
for (let i = 1; i < change.length; i++) {
|
|
84
|
+
decoded.push(decodeTextChange(change[i] as TextChange, stringTable))
|
|
85
|
+
}
|
|
86
|
+
decodedData.push(decoded)
|
|
87
|
+
break
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
case ChangeType.Size:
|
|
91
|
+
case ChangeType.ScrollPosition:
|
|
92
|
+
case ChangeType.AttachedStyleSheets:
|
|
93
|
+
case ChangeType.MediaPlaybackState:
|
|
94
|
+
case ChangeType.VisualViewport:
|
|
95
|
+
decodedData.push(change)
|
|
96
|
+
break
|
|
97
|
+
|
|
98
|
+
case ChangeType.AddStyleSheet: {
|
|
99
|
+
const decoded: [typeof ChangeType.AddStyleSheet, ...AddStyleSheetChange[]] = [ChangeType.AddStyleSheet]
|
|
100
|
+
for (let i = 1; i < change.length; i++) {
|
|
101
|
+
decoded.push(decodeAddStyleSheetChange(change[i] as AddStyleSheetChange, stringTable))
|
|
102
|
+
}
|
|
103
|
+
decodedData.push(decoded)
|
|
104
|
+
break
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
default:
|
|
108
|
+
change satisfies never
|
|
109
|
+
throw new Error(`Unsupported ChangeType: ${change[0] as any}`)
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
return { ...record, data: decodedData }
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
function decodeAddNodeChange(change: AddNodeChange, stringTable: StringTable): AddNodeChange {
|
|
117
|
+
const insertionPoint = change[0]
|
|
118
|
+
const nodeName = stringTable.decode(change[1])
|
|
119
|
+
|
|
120
|
+
switch (nodeName) {
|
|
121
|
+
case '#cdata-section':
|
|
122
|
+
case '#document':
|
|
123
|
+
case '#document-fragment':
|
|
124
|
+
case '#shadow-root':
|
|
125
|
+
return [insertionPoint, nodeName]
|
|
126
|
+
|
|
127
|
+
case '#doctype': {
|
|
128
|
+
const [, , name, publicId, systemId] = change as AddDocTypeNodeChange
|
|
129
|
+
return [
|
|
130
|
+
insertionPoint,
|
|
131
|
+
'#doctype',
|
|
132
|
+
stringTable.decode(name),
|
|
133
|
+
stringTable.decode(publicId),
|
|
134
|
+
stringTable.decode(systemId),
|
|
135
|
+
]
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
case '#text': {
|
|
139
|
+
const [, , textContent] = change as AddTextNodeChange
|
|
140
|
+
return [insertionPoint, '#text', stringTable.decode(textContent)]
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
default: {
|
|
144
|
+
const decodedChange: AddElementNodeChange = [insertionPoint, nodeName]
|
|
145
|
+
|
|
146
|
+
const [, , ...attrs] = change as AddElementNodeChange
|
|
147
|
+
for (const [name, value] of attrs) {
|
|
148
|
+
decodedChange.push([stringTable.decode(name), stringTable.decode(value)])
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
return decodedChange
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
function decodeAttributeChange(change: AttributeChange, stringTable: StringTable): AttributeChange {
|
|
157
|
+
const [nodeId, ...mutations] = change
|
|
158
|
+
|
|
159
|
+
const decodedMutations: AttributeAssignmentOrDeletion[] = mutations.map((mutation) => {
|
|
160
|
+
if (mutation.length === 1) {
|
|
161
|
+
return [stringTable.decode(mutation[0])]
|
|
162
|
+
}
|
|
163
|
+
return [stringTable.decode(mutation[0]), stringTable.decode(mutation[1])]
|
|
164
|
+
})
|
|
165
|
+
|
|
166
|
+
const decodedChange: AttributeChange = [nodeId]
|
|
167
|
+
decodedChange.push(...decodedMutations)
|
|
168
|
+
return decodedChange
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
function decodeTextChange(change: TextChange, stringTable: StringTable): TextChange {
|
|
172
|
+
return [change[0], stringTable.decode(change[1])]
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
function decodeAddStyleSheetChange(change: AddStyleSheetChange, stringTable: StringTable): AddStyleSheetChange {
|
|
176
|
+
const rules = change[0]
|
|
177
|
+
const decodedRules: StyleSheetRules = Array.isArray(rules)
|
|
178
|
+
? rules.map((rule) => stringTable.decode(rule))
|
|
179
|
+
: stringTable.decode(rules)
|
|
180
|
+
|
|
181
|
+
if (change.length === 1) {
|
|
182
|
+
return [decodedRules]
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
const decodedMediaList = change[1].map((item) => stringTable.decode(item))
|
|
186
|
+
|
|
187
|
+
if (change.length === 2) {
|
|
188
|
+
return [decodedRules, decodedMediaList]
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
return [decodedRules, decodedMediaList, change[2]]
|
|
192
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type { ChangeConverter } from './changeConverter'
|
|
2
|
+
export { createChangeConverter } from './changeConverter'
|
|
3
|
+
export type { ChangeDecoder } from './changeDecoder'
|
|
4
|
+
export { createChangeDecoder } from './changeDecoder'
|
|
5
|
+
export type { MutationLog } from './mutationLog'
|
|
6
|
+
export type { NodeIdRemapper } from './nodeIdRemapper'
|
|
7
|
+
export { createCopyingNodeIdRemapper, createIdentityNodeIdRemapper } from './nodeIdRemapper'
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import type { NodeId } from '../../itemIds'
|
|
2
|
+
|
|
3
|
+
type ParentNodeId = NodeId
|
|
4
|
+
|
|
5
|
+
export interface MutationLog {
|
|
6
|
+
onAttributeChanged(nodeId: NodeId, name: string): void
|
|
7
|
+
onNodeConnected(nodeId: NodeId): void
|
|
8
|
+
onNodeDisconnected(nodeId: NodeId, parentId: ParentNodeId): void
|
|
9
|
+
onTextChanged(nodeId: NodeId): void
|
|
10
|
+
|
|
11
|
+
clear(): void
|
|
12
|
+
|
|
13
|
+
attributeChanges: Map<NodeId, Set<string>>
|
|
14
|
+
nodeAdds: Set<NodeId>
|
|
15
|
+
nodeRemoves: Map<NodeId, ParentNodeId>
|
|
16
|
+
textChanges: Set<NodeId>
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export function createMutationLog(): MutationLog {
|
|
20
|
+
const self: MutationLog = {
|
|
21
|
+
onAttributeChanged(nodeId: NodeId, name: string): void {
|
|
22
|
+
let changedAttributes = self.attributeChanges.get(nodeId)
|
|
23
|
+
if (!changedAttributes) {
|
|
24
|
+
changedAttributes = new Set<string>()
|
|
25
|
+
self.attributeChanges.set(nodeId, changedAttributes)
|
|
26
|
+
}
|
|
27
|
+
changedAttributes.add(name)
|
|
28
|
+
},
|
|
29
|
+
|
|
30
|
+
onNodeConnected(nodeId: NodeId): void {
|
|
31
|
+
self.nodeAdds.add(nodeId)
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
onNodeDisconnected(nodeId: NodeId, parentId: ParentNodeId): void {
|
|
35
|
+
self.nodeRemoves.set(nodeId, parentId)
|
|
36
|
+
},
|
|
37
|
+
|
|
38
|
+
onTextChanged(nodeId: NodeId): void {
|
|
39
|
+
self.textChanges.add(nodeId)
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
clear(): void {
|
|
43
|
+
self.attributeChanges.clear()
|
|
44
|
+
self.nodeAdds.clear()
|
|
45
|
+
self.nodeRemoves.clear()
|
|
46
|
+
self.textChanges.clear()
|
|
47
|
+
},
|
|
48
|
+
|
|
49
|
+
attributeChanges: new Map<NodeId, Set<string>>(),
|
|
50
|
+
nodeAdds: new Set<NodeId>(),
|
|
51
|
+
nodeRemoves: new Map<NodeId, ParentNodeId>(),
|
|
52
|
+
textChanges: new Set<NodeId>(),
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
return self
|
|
56
|
+
}
|