@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,9 @@
|
|
|
1
|
+
import type { BrowserIncrementalSnapshotRecord } from '../../../types';
|
|
2
|
+
import type { RecordingScope } from '../recordingScope';
|
|
3
|
+
import type { EmitRecordCallback } from '../record.types';
|
|
4
|
+
import type { Tracker } from './tracker.types';
|
|
5
|
+
export declare function trackMove(emitRecord: EmitRecordCallback<BrowserIncrementalSnapshotRecord>, scope: RecordingScope): Tracker;
|
|
6
|
+
export declare function tryToComputeCoordinates(event: MouseEvent | TouchEvent): {
|
|
7
|
+
x: number;
|
|
8
|
+
y: number;
|
|
9
|
+
} | undefined;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.trackMove = trackMove;
|
|
4
|
+
exports.tryToComputeCoordinates = tryToComputeCoordinates;
|
|
5
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
6
|
+
const types_1 = require("../../../types");
|
|
7
|
+
const eventsUtils_1 = require("../eventsUtils");
|
|
8
|
+
const viewports_1 = require("../viewports");
|
|
9
|
+
const assembly_1 = require("../assembly");
|
|
10
|
+
const MOUSE_MOVE_OBSERVER_THRESHOLD = 50;
|
|
11
|
+
function trackMove(emitRecord, scope) {
|
|
12
|
+
const { throttled: updatePosition, cancel: cancelThrottle } = (0, browser_core_1.throttle)((event) => {
|
|
13
|
+
const target = (0, eventsUtils_1.getEventTarget)(event);
|
|
14
|
+
const id = scope.nodeIds.get(target);
|
|
15
|
+
if (id === undefined) {
|
|
16
|
+
return;
|
|
17
|
+
}
|
|
18
|
+
const coordinates = tryToComputeCoordinates(event);
|
|
19
|
+
if (!coordinates) {
|
|
20
|
+
return;
|
|
21
|
+
}
|
|
22
|
+
const position = {
|
|
23
|
+
id,
|
|
24
|
+
timeOffset: 0,
|
|
25
|
+
x: coordinates.x,
|
|
26
|
+
y: coordinates.y,
|
|
27
|
+
};
|
|
28
|
+
emitRecord((0, assembly_1.assembleIncrementalSnapshot)((0, eventsUtils_1.isTouchEvent)(event) ? types_1.IncrementalSource.TouchMove : types_1.IncrementalSource.MouseMove, { positions: [position] }));
|
|
29
|
+
}, MOUSE_MOVE_OBSERVER_THRESHOLD, {
|
|
30
|
+
trailing: false,
|
|
31
|
+
});
|
|
32
|
+
const { stop: removeListener } = (0, browser_core_1.addEventListeners)(scope.configuration, document, ["mousemove" /* DOM_EVENT.MOUSE_MOVE */, "touchmove" /* DOM_EVENT.TOUCH_MOVE */], updatePosition, {
|
|
33
|
+
capture: true,
|
|
34
|
+
passive: true,
|
|
35
|
+
});
|
|
36
|
+
return {
|
|
37
|
+
stop: () => {
|
|
38
|
+
removeListener();
|
|
39
|
+
cancelThrottle();
|
|
40
|
+
},
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function tryToComputeCoordinates(event) {
|
|
44
|
+
let { clientX: x, clientY: y } = (0, eventsUtils_1.isTouchEvent)(event) ? event.changedTouches[0] : event;
|
|
45
|
+
if (window.visualViewport) {
|
|
46
|
+
const { visualViewportX, visualViewportY } = (0, viewports_1.convertMouseEventToLayoutCoordinates)(x, y);
|
|
47
|
+
x = visualViewportX;
|
|
48
|
+
y = visualViewportY;
|
|
49
|
+
}
|
|
50
|
+
if (!Number.isFinite(x) || !Number.isFinite(y)) {
|
|
51
|
+
return undefined;
|
|
52
|
+
}
|
|
53
|
+
return { x, y };
|
|
54
|
+
}
|
|
55
|
+
//# sourceMappingURL=trackMove.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trackMove.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackMove.ts"],"names":[],"mappings":";;AAYA,8BAoDC;AAED,0DAWC;AA7ED,wDAA8E;AAE9E,0CAAkD;AAClD,gDAA6D;AAC7D,4CAAmE;AACnE,0CAAyD;AAKzD,MAAM,6BAA6B,GAAG,EAAE,CAAA;AAExC,SAAgB,SAAS,CACvB,UAAgE,EAChE,KAAqB;IAErB,MAAM,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,EAAE,cAAc,EAAE,GAAG,IAAA,uBAAQ,EACpE,CAAC,KAA8B,EAAE,EAAE;QACjC,MAAM,MAAM,GAAG,IAAA,4BAAc,EAAC,KAAK,CAAC,CAAA;QACpC,MAAM,EAAE,GAAG,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACpC,IAAI,EAAE,KAAK,SAAS,EAAE,CAAC;YACrB,OAAM;QACR,CAAC;QACD,MAAM,WAAW,GAAG,uBAAuB,CAAC,KAAK,CAAC,CAAA;QAClD,IAAI,CAAC,WAAW,EAAE,CAAC;YACjB,OAAM;QACR,CAAC;QACD,MAAM,QAAQ,GAAkB;YAC9B,EAAE;YACF,UAAU,EAAE,CAAC;YACb,CAAC,EAAE,WAAW,CAAC,CAAC;YAChB,CAAC,EAAE,WAAW,CAAC,CAAC;SACjB,CAAA;QAED,UAAU,CACR,IAAA,sCAA2B,EACzB,IAAA,0BAAY,EAAC,KAAK,CAAC,CAAC,CAAC,CAAC,yBAAiB,CAAC,SAAS,CAAC,CAAC,CAAC,yBAAiB,CAAC,SAAS,EAC/E,EAAE,SAAS,EAAE,CAAC,QAAQ,CAAC,EAAE,CAC1B,CACF,CAAA;IACH,CAAC,EACD,6BAA6B,EAC7B;QACE,QAAQ,EAAE,KAAK;KAChB,CACF,CAAA;IAED,MAAM,EAAE,IAAI,EAAE,cAAc,EAAE,GAAG,IAAA,gCAAiB,EAChD,KAAK,CAAC,aAAa,EACnB,QAAQ,EACR,gFAA4C,EAC5C,cAAc,EACd;QACE,OAAO,EAAE,IAAI;QACb,OAAO,EAAE,IAAI;KACd,CACF,CAAA;IAED,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,cAAc,EAAE,CAAA;YAChB,cAAc,EAAE,CAAA;QAClB,CAAC;KACF,CAAA;AACH,CAAC;AAED,SAAgB,uBAAuB,CAAC,KAA8B;IACpE,IAAI,EAAE,OAAO,EAAE,CAAC,EAAE,OAAO,EAAE,CAAC,EAAE,GAAG,IAAA,0BAAY,EAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAA;IACtF,IAAI,MAAM,CAAC,cAAc,EAAE,CAAC;QAC1B,MAAM,EAAE,eAAe,EAAE,eAAe,EAAE,GAAG,IAAA,gDAAoC,EAAC,CAAC,EAAE,CAAC,CAAC,CAAA;QACvF,CAAC,GAAG,eAAe,CAAA;QACnB,CAAC,GAAG,eAAe,CAAA;IACrB,CAAC;IACD,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC;QAC/C,OAAO,SAAS,CAAA;IAClB,CAAC;IACD,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAA;AACjB,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { TimeStamp } from '@datadog/browser-core';
|
|
2
|
+
import type { RumMutationRecord } from '@datadog/browser-rum-core';
|
|
3
|
+
import type { RecordingScope } from '../recordingScope';
|
|
4
|
+
import type { EmitRecordCallback, EmitStatsCallback } from '../record.types';
|
|
5
|
+
import type { Tracker } from './tracker.types';
|
|
6
|
+
export type MutationTracker = Tracker & {
|
|
7
|
+
flush: () => void;
|
|
8
|
+
};
|
|
9
|
+
export type SerializeMutationsCallback = (timestamp: TimeStamp, mutations: RumMutationRecord[], emitRecord: EmitRecordCallback, emitStats: EmitStatsCallback, scope: RecordingScope) => void;
|
|
10
|
+
/**
|
|
11
|
+
* Buffers and aggregate mutations generated by a MutationObserver into MutationPayload
|
|
12
|
+
*/
|
|
13
|
+
export declare function trackMutation(target: Node, emitRecord: EmitRecordCallback, emitStats: EmitStatsCallback, scope: RecordingScope, serialize?: SerializeMutationsCallback): MutationTracker;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.trackMutation = trackMutation;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
const browser_rum_core_1 = require("@datadog/browser-rum-core");
|
|
6
|
+
const mutationBatch_1 = require("../mutationBatch");
|
|
7
|
+
const serialization_1 = require("../serialization");
|
|
8
|
+
/**
|
|
9
|
+
* Buffers and aggregate mutations generated by a MutationObserver into MutationPayload
|
|
10
|
+
*/
|
|
11
|
+
function trackMutation(target, emitRecord, emitStats, scope, serialize = defaultSerializeMutationsCallback()) {
|
|
12
|
+
const MutationObserver = (0, browser_rum_core_1.getMutationObserverConstructor)();
|
|
13
|
+
if (!MutationObserver) {
|
|
14
|
+
return { stop: browser_core_1.noop, flush: browser_core_1.noop };
|
|
15
|
+
}
|
|
16
|
+
const mutationBatch = (0, mutationBatch_1.createMutationBatch)((mutations) => {
|
|
17
|
+
serialize((0, browser_core_1.timeStampNow)(), mutations.concat(observer.takeRecords()), emitRecord, emitStats, scope);
|
|
18
|
+
});
|
|
19
|
+
const observer = new MutationObserver((0, browser_core_1.monitor)(mutationBatch.addMutations));
|
|
20
|
+
observer.observe(target, {
|
|
21
|
+
attributeOldValue: true,
|
|
22
|
+
attributes: true,
|
|
23
|
+
characterData: true,
|
|
24
|
+
characterDataOldValue: true,
|
|
25
|
+
childList: true,
|
|
26
|
+
subtree: true,
|
|
27
|
+
});
|
|
28
|
+
return {
|
|
29
|
+
stop: () => {
|
|
30
|
+
observer.disconnect();
|
|
31
|
+
mutationBatch.stop();
|
|
32
|
+
},
|
|
33
|
+
flush: () => {
|
|
34
|
+
mutationBatch.flush();
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
function defaultSerializeMutationsCallback() {
|
|
39
|
+
return (0, serialization_1.isIncrementalSnapshotChangeRecordsEnabled)() ? serialization_1.serializeMutationsAsChange : serialization_1.serializeMutations;
|
|
40
|
+
}
|
|
41
|
+
//# sourceMappingURL=trackMutation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trackMutation.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackMutation.ts"],"names":[],"mappings":";;AA2BA,sCA0CC;AApED,wDAAmE;AAEnE,gEAA0E;AAE1E,oDAAsD;AAEtD,oDAIyB;AAazB;;GAEG;AACH,SAAgB,aAAa,CAC3B,MAAY,EACZ,UAA8B,EAC9B,SAA4B,EAC5B,KAAqB,EACrB,YAAwC,iCAAiC,EAAE;IAE3E,MAAM,gBAAgB,GAAG,IAAA,iDAA8B,GAAE,CAAA;IACzD,IAAI,CAAC,gBAAgB,EAAE,CAAC;QACtB,OAAO,EAAE,IAAI,EAAE,mBAAI,EAAE,KAAK,EAAE,mBAAI,EAAE,CAAA;IACpC,CAAC;IAED,MAAM,aAAa,GAAG,IAAA,mCAAmB,EAAC,CAAC,SAAS,EAAE,EAAE;QACtD,SAAS,CACP,IAAA,2BAAY,GAAE,EACd,SAAS,CAAC,MAAM,CAAC,QAAQ,CAAC,WAAW,EAAyB,CAAC,EAC/D,UAAU,EACV,SAAS,EACT,KAAK,CACN,CAAA;IACH,CAAC,CAAC,CAAA;IAEF,MAAM,QAAQ,GAAG,IAAI,gBAAgB,CAAC,IAAA,sBAAO,EAAC,aAAa,CAAC,YAAY,CAA4C,CAAC,CAAA;IAErH,QAAQ,CAAC,OAAO,CAAC,MAAM,EAAE;QACvB,iBAAiB,EAAE,IAAI;QACvB,UAAU,EAAE,IAAI;QAChB,aAAa,EAAE,IAAI;QACnB,qBAAqB,EAAE,IAAI;QAC3B,SAAS,EAAE,IAAI;QACf,OAAO,EAAE,IAAI;KACd,CAAC,CAAA;IAEF,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,QAAQ,CAAC,UAAU,EAAE,CAAA;YACrB,aAAa,CAAC,IAAI,EAAE,CAAA;QACtB,CAAC;QACD,KAAK,EAAE,GAAG,EAAE;YACV,aAAa,CAAC,KAAK,EAAE,CAAA;QACvB,CAAC;KACF,CAAA;AACH,CAAC;AAED,SAAS,iCAAiC;IACxC,OAAO,IAAA,yDAAyC,GAAE,CAAC,CAAC,CAAC,0CAA0B,CAAC,CAAC,CAAC,kCAAkB,CAAA;AACtG,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { BrowserIncrementalSnapshotRecord } from '../../../types';
|
|
2
|
+
import type { RecordingScope } from '../recordingScope';
|
|
3
|
+
import type { EmitRecordCallback } from '../record.types';
|
|
4
|
+
import type { Tracker } from './tracker.types';
|
|
5
|
+
export declare function trackScroll(target: Document | ShadowRoot, emitRecord: EmitRecordCallback<BrowserIncrementalSnapshotRecord>, scope: RecordingScope): Tracker;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.trackScroll = trackScroll;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
const browser_rum_core_1 = require("@datadog/browser-rum-core");
|
|
6
|
+
const eventsUtils_1 = require("../eventsUtils");
|
|
7
|
+
const types_1 = require("../../../types");
|
|
8
|
+
const assembly_1 = require("../assembly");
|
|
9
|
+
const SCROLL_OBSERVER_THRESHOLD = 100;
|
|
10
|
+
function trackScroll(target, emitRecord, scope) {
|
|
11
|
+
const { throttled: updatePosition, cancel: cancelThrottle } = (0, browser_core_1.throttle)((event) => {
|
|
12
|
+
const target = (0, eventsUtils_1.getEventTarget)(event);
|
|
13
|
+
if (!target) {
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
const id = scope.nodeIds.get(target);
|
|
17
|
+
if (id === undefined ||
|
|
18
|
+
(0, browser_rum_core_1.getNodePrivacyLevel)(target, scope.configuration.defaultPrivacyLevel) === browser_rum_core_1.NodePrivacyLevel.HIDDEN) {
|
|
19
|
+
return;
|
|
20
|
+
}
|
|
21
|
+
const scrollPositions = target === document
|
|
22
|
+
? {
|
|
23
|
+
scrollTop: (0, browser_rum_core_1.getScrollY)(),
|
|
24
|
+
scrollLeft: (0, browser_rum_core_1.getScrollX)(),
|
|
25
|
+
}
|
|
26
|
+
: {
|
|
27
|
+
scrollTop: Math.round(target.scrollTop),
|
|
28
|
+
scrollLeft: Math.round(target.scrollLeft),
|
|
29
|
+
};
|
|
30
|
+
scope.elementsScrollPositions.set(target, scrollPositions);
|
|
31
|
+
emitRecord((0, assembly_1.assembleIncrementalSnapshot)(types_1.IncrementalSource.Scroll, {
|
|
32
|
+
id,
|
|
33
|
+
x: scrollPositions.scrollLeft,
|
|
34
|
+
y: scrollPositions.scrollTop,
|
|
35
|
+
}));
|
|
36
|
+
}, SCROLL_OBSERVER_THRESHOLD);
|
|
37
|
+
const { stop: removeListener } = (0, browser_core_1.addEventListener)(scope.configuration, target, "scroll" /* DOM_EVENT.SCROLL */, updatePosition, {
|
|
38
|
+
capture: true,
|
|
39
|
+
passive: true,
|
|
40
|
+
});
|
|
41
|
+
return {
|
|
42
|
+
stop: () => {
|
|
43
|
+
removeListener();
|
|
44
|
+
cancelThrottle();
|
|
45
|
+
},
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
//# sourceMappingURL=trackScroll.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trackScroll.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackScroll.ts"],"names":[],"mappings":";;AAYA,kCAgDC;AA5DD,wDAA6E;AAC7E,gEAAyG;AACzG,gDAA+C;AAC/C,0CAAkD;AAElD,0CAAyD;AAKzD,MAAM,yBAAyB,GAAG,GAAG,CAAA;AAErC,SAAgB,WAAW,CACzB,MAA6B,EAC7B,UAAgE,EAChE,KAAqB;IAErB,MAAM,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,EAAE,cAAc,EAAE,GAAG,IAAA,uBAAQ,EAAC,CAAC,KAAY,EAAE,EAAE;QACtF,MAAM,MAAM,GAAG,IAAA,4BAAc,EAAC,KAAK,CAA2B,CAAA;QAC9D,IAAI,CAAC,MAAM,EAAE,CAAC;YACZ,OAAM;QACR,CAAC;QACD,MAAM,EAAE,GAAG,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACpC,IACE,EAAE,KAAK,SAAS;YAChB,IAAA,sCAAmB,EAAC,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,mBAAmB,CAAC,KAAK,mCAAgB,CAAC,MAAM,EAChG,CAAC;YACD,OAAM;QACR,CAAC;QACD,MAAM,eAAe,GACnB,MAAM,KAAK,QAAQ;YACjB,CAAC,CAAC;gBACE,SAAS,EAAE,IAAA,6BAAU,GAAE;gBACvB,UAAU,EAAE,IAAA,6BAAU,GAAE;aACzB;YACH,CAAC,CAAC;gBACE,SAAS,EAAE,IAAI,CAAC,KAAK,CAAE,MAAsB,CAAC,SAAS,CAAC;gBACxD,UAAU,EAAE,IAAI,CAAC,KAAK,CAAE,MAAsB,CAAC,UAAU,CAAC;aAC3D,CAAA;QACP,KAAK,CAAC,uBAAuB,CAAC,GAAG,CAAC,MAAM,EAAE,eAAe,CAAC,CAAA;QAC1D,UAAU,CACR,IAAA,sCAA2B,EAAa,yBAAiB,CAAC,MAAM,EAAE;YAChE,EAAE;YACF,CAAC,EAAE,eAAe,CAAC,UAAU;YAC7B,CAAC,EAAE,eAAe,CAAC,SAAS;SAC7B,CAAC,CACH,CAAA;IACH,CAAC,EAAE,yBAAyB,CAAC,CAAA;IAE7B,MAAM,EAAE,IAAI,EAAE,cAAc,EAAE,GAAG,IAAA,+BAAgB,EAAC,KAAK,CAAC,aAAa,EAAE,MAAM,mCAAoB,cAAc,EAAE;QAC/G,OAAO,EAAE,IAAI;QACb,OAAO,EAAE,IAAI;KACd,CAAC,CAAA;IAEF,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,cAAc,EAAE,CAAA;YAChB,cAAc,EAAE,CAAA;QAClB,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { BrowserIncrementalSnapshotRecord } from '../../../types';
|
|
2
|
+
import type { RecordingScope } from '../recordingScope';
|
|
3
|
+
import type { EmitRecordCallback } from '../record.types';
|
|
4
|
+
import type { Tracker } from './tracker.types';
|
|
5
|
+
export declare function trackStyleSheet(emitRecord: EmitRecordCallback<BrowserIncrementalSnapshotRecord>, scope: RecordingScope): Tracker;
|
|
6
|
+
export declare function getPathToNestedCSSRule(rule: CSSRule): number[] | undefined;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.trackStyleSheet = trackStyleSheet;
|
|
4
|
+
exports.getPathToNestedCSSRule = getPathToNestedCSSRule;
|
|
5
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
6
|
+
const types_1 = require("../../../types");
|
|
7
|
+
const assembly_1 = require("../assembly");
|
|
8
|
+
function trackStyleSheet(emitRecord, scope) {
|
|
9
|
+
function checkStyleSheetAndCallback(styleSheet, callback) {
|
|
10
|
+
if (!styleSheet || !styleSheet.ownerNode) {
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
13
|
+
const id = scope.nodeIds.get(styleSheet.ownerNode);
|
|
14
|
+
if (id === undefined) {
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
callback(id);
|
|
18
|
+
}
|
|
19
|
+
const instrumentationStoppers = [
|
|
20
|
+
(0, browser_core_1.instrumentMethod)(CSSStyleSheet.prototype, 'insertRule', ({ target: styleSheet, parameters: [rule, index] }) => {
|
|
21
|
+
checkStyleSheetAndCallback(styleSheet, (id) => emitRecord((0, assembly_1.assembleIncrementalSnapshot)(types_1.IncrementalSource.StyleSheetRule, {
|
|
22
|
+
id,
|
|
23
|
+
adds: [{ rule, index }],
|
|
24
|
+
})));
|
|
25
|
+
}),
|
|
26
|
+
(0, browser_core_1.instrumentMethod)(CSSStyleSheet.prototype, 'deleteRule', ({ target: styleSheet, parameters: [index] }) => {
|
|
27
|
+
checkStyleSheetAndCallback(styleSheet, (id) => emitRecord((0, assembly_1.assembleIncrementalSnapshot)(types_1.IncrementalSource.StyleSheetRule, {
|
|
28
|
+
id,
|
|
29
|
+
removes: [{ index }],
|
|
30
|
+
})));
|
|
31
|
+
}),
|
|
32
|
+
];
|
|
33
|
+
if (typeof CSSGroupingRule !== 'undefined') {
|
|
34
|
+
instrumentGroupingCSSRuleClass(CSSGroupingRule);
|
|
35
|
+
}
|
|
36
|
+
else {
|
|
37
|
+
instrumentGroupingCSSRuleClass(CSSMediaRule);
|
|
38
|
+
instrumentGroupingCSSRuleClass(CSSSupportsRule);
|
|
39
|
+
}
|
|
40
|
+
function instrumentGroupingCSSRuleClass(cls) {
|
|
41
|
+
instrumentationStoppers.push((0, browser_core_1.instrumentMethod)(cls.prototype, 'insertRule', ({ target: styleSheet, parameters: [rule, index] }) => {
|
|
42
|
+
checkStyleSheetAndCallback(styleSheet.parentStyleSheet, (id) => {
|
|
43
|
+
const path = getPathToNestedCSSRule(styleSheet);
|
|
44
|
+
if (path) {
|
|
45
|
+
path.push(index || 0);
|
|
46
|
+
emitRecord((0, assembly_1.assembleIncrementalSnapshot)(types_1.IncrementalSource.StyleSheetRule, {
|
|
47
|
+
id,
|
|
48
|
+
adds: [{ rule, index: path }],
|
|
49
|
+
}));
|
|
50
|
+
}
|
|
51
|
+
});
|
|
52
|
+
}), (0, browser_core_1.instrumentMethod)(cls.prototype, 'deleteRule', ({ target: styleSheet, parameters: [index] }) => {
|
|
53
|
+
checkStyleSheetAndCallback(styleSheet.parentStyleSheet, (id) => {
|
|
54
|
+
const path = getPathToNestedCSSRule(styleSheet);
|
|
55
|
+
if (path) {
|
|
56
|
+
path.push(index);
|
|
57
|
+
emitRecord((0, assembly_1.assembleIncrementalSnapshot)(types_1.IncrementalSource.StyleSheetRule, {
|
|
58
|
+
id,
|
|
59
|
+
removes: [{ index: path }],
|
|
60
|
+
}));
|
|
61
|
+
}
|
|
62
|
+
});
|
|
63
|
+
}));
|
|
64
|
+
}
|
|
65
|
+
return {
|
|
66
|
+
stop: () => {
|
|
67
|
+
instrumentationStoppers.forEach((stopper) => stopper.stop());
|
|
68
|
+
},
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
function getPathToNestedCSSRule(rule) {
|
|
72
|
+
const path = [];
|
|
73
|
+
let currentRule = rule;
|
|
74
|
+
while (currentRule.parentRule) {
|
|
75
|
+
const rules = Array.from(currentRule.parentRule.cssRules);
|
|
76
|
+
const index = rules.indexOf(currentRule);
|
|
77
|
+
path.unshift(index);
|
|
78
|
+
currentRule = currentRule.parentRule;
|
|
79
|
+
}
|
|
80
|
+
// A rule may not be attached to a stylesheet
|
|
81
|
+
if (!currentRule.parentStyleSheet) {
|
|
82
|
+
return;
|
|
83
|
+
}
|
|
84
|
+
const rules = Array.from(currentRule.parentStyleSheet.cssRules);
|
|
85
|
+
const index = rules.indexOf(currentRule);
|
|
86
|
+
path.unshift(index);
|
|
87
|
+
return path;
|
|
88
|
+
}
|
|
89
|
+
//# sourceMappingURL=trackStyleSheet.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trackStyleSheet.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackStyleSheet.ts"],"names":[],"mappings":";;AAUA,0CAqFC;AAED,wDAmBC;AApHD,wDAAwD;AACxD,0CAAkD;AAElD,0CAAyD;AAOzD,SAAgB,eAAe,CAC7B,UAAgE,EAChE,KAAqB;IAErB,SAAS,0BAA0B,CAAC,UAAgC,EAAE,QAA8B;QAClG,IAAI,CAAC,UAAU,IAAI,CAAC,UAAU,CAAC,SAAS,EAAE,CAAC;YACzC,OAAM;QACR,CAAC;QACD,MAAM,EAAE,GAAG,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,SAAS,CAAC,CAAA;QAClD,IAAI,EAAE,KAAK,SAAS,EAAE,CAAC;YACrB,OAAM;QACR,CAAC;QACD,QAAQ,CAAC,EAAE,CAAC,CAAA;IACd,CAAC;IAED,MAAM,uBAAuB,GAAG;QAC9B,IAAA,+BAAgB,EAAC,aAAa,CAAC,SAAS,EAAE,YAAY,EAAE,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE;YAC5G,0BAA0B,CAAC,UAAU,EAAE,CAAC,EAAE,EAAE,EAAE,CAC5C,UAAU,CACR,IAAA,sCAA2B,EAAqB,yBAAiB,CAAC,cAAc,EAAE;gBAChF,EAAE;gBACF,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;aACxB,CAAC,CACH,CACF,CAAA;QACH,CAAC,CAAC;QAEF,IAAA,+BAAgB,EAAC,aAAa,CAAC,SAAS,EAAE,YAAY,EAAE,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC,KAAK,CAAC,EAAE,EAAE,EAAE;YACtG,0BAA0B,CAAC,UAAU,EAAE,CAAC,EAAE,EAAE,EAAE,CAC5C,UAAU,CACR,IAAA,sCAA2B,EAAqB,yBAAiB,CAAC,cAAc,EAAE;gBAChF,EAAE;gBACF,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC;aACrB,CAAC,CACH,CACF,CAAA;QACH,CAAC,CAAC;KACH,CAAA;IAED,IAAI,OAAO,eAAe,KAAK,WAAW,EAAE,CAAC;QAC3C,8BAA8B,CAAC,eAAe,CAAC,CAAA;IACjD,CAAC;SAAM,CAAC;QACN,8BAA8B,CAAC,YAAY,CAAC,CAAA;QAC5C,8BAA8B,CAAC,eAAe,CAAC,CAAA;IACjD,CAAC;IAED,SAAS,8BAA8B,CAAC,GAAyB;QAC/D,uBAAuB,CAAC,IAAI,CAC1B,IAAA,+BAAgB,EAAC,GAAG,CAAC,SAAS,EAAE,YAAY,EAAE,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC,IAAI,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE;YAClG,0BAA0B,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAC,EAAE,EAAE,EAAE;gBAC7D,MAAM,IAAI,GAAG,sBAAsB,CAAC,UAAU,CAAC,CAAA;gBAC/C,IAAI,IAAI,EAAE,CAAC;oBACT,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,CAAC,CAAA;oBACrB,UAAU,CACR,IAAA,sCAA2B,EAAqB,yBAAiB,CAAC,cAAc,EAAE;wBAChF,EAAE;wBACF,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;qBAC9B,CAAC,CACH,CAAA;gBACH,CAAC;YACH,CAAC,CAAC,CAAA;QACJ,CAAC,CAAC,EAEF,IAAA,+BAAgB,EAAC,GAAG,CAAC,SAAS,EAAE,YAAY,EAAE,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC,KAAK,CAAC,EAAE,EAAE,EAAE;YAC5F,0BAA0B,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAC,EAAE,EAAE,EAAE;gBAC7D,MAAM,IAAI,GAAG,sBAAsB,CAAC,UAAU,CAAC,CAAA;gBAC/C,IAAI,IAAI,EAAE,CAAC;oBACT,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;oBAChB,UAAU,CACR,IAAA,sCAA2B,EAAqB,yBAAiB,CAAC,cAAc,EAAE;wBAChF,EAAE;wBACF,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;qBAC3B,CAAC,CACH,CAAA;gBACH,CAAC;YACH,CAAC,CAAC,CAAA;QACJ,CAAC,CAAC,CACH,CAAA;IACH,CAAC;IAED,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,uBAAuB,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,CAAC,CAAA;QAC9D,CAAC;KACF,CAAA;AACH,CAAC;AAED,SAAgB,sBAAsB,CAAC,IAAa;IAClD,MAAM,IAAI,GAAa,EAAE,CAAA;IACzB,IAAI,WAAW,GAAG,IAAI,CAAA;IACtB,OAAO,WAAW,CAAC,UAAU,EAAE,CAAC;QAC9B,MAAM,KAAK,GAAG,KAAK,CAAC,IAAI,CAAE,WAAW,CAAC,UAA8B,CAAC,QAAQ,CAAC,CAAA;QAC9E,MAAM,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,CAAA;QACxC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QACnB,WAAW,GAAG,WAAW,CAAC,UAAU,CAAA;IACtC,CAAC;IACD,6CAA6C;IAC7C,IAAI,CAAC,WAAW,CAAC,gBAAgB,EAAE,CAAC;QAClC,OAAM;IACR,CAAC;IAED,MAAM,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAA;IAC/D,MAAM,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,CAAA;IACxC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;IAEnB,OAAO,IAAI,CAAA;AACb,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { LifeCycle } from '@datadog/browser-rum-core';
|
|
2
|
+
import type { ViewEndRecord } from '../../../types';
|
|
3
|
+
import type { EmitRecordCallback } from '../record.types';
|
|
4
|
+
import type { Tracker } from './tracker.types';
|
|
5
|
+
export declare function trackViewEnd(lifeCycle: LifeCycle, emitRecord: EmitRecordCallback<ViewEndRecord>, flushMutations: () => void): Tracker;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.trackViewEnd = trackViewEnd;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
const types_1 = require("../../../types");
|
|
6
|
+
function trackViewEnd(lifeCycle, emitRecord, flushMutations) {
|
|
7
|
+
const viewEndSubscription = lifeCycle.subscribe(5 /* LifeCycleEventType.VIEW_ENDED */, () => {
|
|
8
|
+
flushMutations();
|
|
9
|
+
emitRecord({
|
|
10
|
+
timestamp: (0, browser_core_1.timeStampNow)(),
|
|
11
|
+
type: types_1.RecordType.ViewEnd,
|
|
12
|
+
});
|
|
13
|
+
});
|
|
14
|
+
return {
|
|
15
|
+
stop: () => {
|
|
16
|
+
viewEndSubscription.unsubscribe();
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=trackViewEnd.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trackViewEnd.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackViewEnd.ts"],"names":[],"mappings":";;AAQA,oCAkBC;AA1BD,wDAAoD;AAIpD,0CAA2C;AAI3C,SAAgB,YAAY,CAC1B,SAAoB,EACpB,UAA6C,EAC7C,cAA0B;IAE1B,MAAM,mBAAmB,GAAG,SAAS,CAAC,SAAS,wCAAgC,GAAG,EAAE;QAClF,cAAc,EAAE,CAAA;QAChB,UAAU,CAAC;YACT,SAAS,EAAE,IAAA,2BAAY,GAAE;YACzB,IAAI,EAAE,kBAAU,CAAC,OAAO;SACzB,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;IAEF,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,mBAAmB,CAAC,WAAW,EAAE,CAAA;QACnC,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { BrowserIncrementalSnapshotRecord, VisualViewportRecord } from '../../../types';
|
|
2
|
+
import type { EmitRecordCallback } from '../record.types';
|
|
3
|
+
import type { RecordingScope } from '../recordingScope';
|
|
4
|
+
import type { Tracker } from './tracker.types';
|
|
5
|
+
export declare function trackViewportResize(emitRecord: EmitRecordCallback<BrowserIncrementalSnapshotRecord>, scope: RecordingScope): Tracker;
|
|
6
|
+
export declare function trackVisualViewportResize(emitRecord: EmitRecordCallback<VisualViewportRecord>, scope: RecordingScope): Tracker;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.trackViewportResize = trackViewportResize;
|
|
4
|
+
exports.trackVisualViewportResize = trackVisualViewportResize;
|
|
5
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
6
|
+
const browser_rum_core_1 = require("@datadog/browser-rum-core");
|
|
7
|
+
const types_1 = require("../../../types");
|
|
8
|
+
const viewports_1 = require("../viewports");
|
|
9
|
+
const assembly_1 = require("../assembly");
|
|
10
|
+
const VISUAL_VIEWPORT_OBSERVER_THRESHOLD = 200;
|
|
11
|
+
function trackViewportResize(emitRecord, scope) {
|
|
12
|
+
const viewportResizeSubscription = (0, browser_rum_core_1.initViewportObservable)(scope.configuration).subscribe((data) => {
|
|
13
|
+
emitRecord((0, assembly_1.assembleIncrementalSnapshot)(types_1.IncrementalSource.ViewportResize, data));
|
|
14
|
+
});
|
|
15
|
+
return {
|
|
16
|
+
stop: () => {
|
|
17
|
+
viewportResizeSubscription.unsubscribe();
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
function trackVisualViewportResize(emitRecord, scope) {
|
|
22
|
+
const visualViewport = window.visualViewport;
|
|
23
|
+
if (!visualViewport) {
|
|
24
|
+
return { stop: browser_core_1.noop };
|
|
25
|
+
}
|
|
26
|
+
const { throttled: updateDimension, cancel: cancelThrottle } = (0, browser_core_1.throttle)(() => {
|
|
27
|
+
emitRecord({
|
|
28
|
+
data: (0, viewports_1.getVisualViewport)(visualViewport),
|
|
29
|
+
type: types_1.RecordType.VisualViewport,
|
|
30
|
+
timestamp: (0, browser_core_1.timeStampNow)(),
|
|
31
|
+
});
|
|
32
|
+
}, VISUAL_VIEWPORT_OBSERVER_THRESHOLD, {
|
|
33
|
+
trailing: false,
|
|
34
|
+
});
|
|
35
|
+
const { stop: removeListener } = (0, browser_core_1.addEventListeners)(scope.configuration, visualViewport, ["resize" /* DOM_EVENT.RESIZE */, "scroll" /* DOM_EVENT.SCROLL */], updateDimension, {
|
|
36
|
+
capture: true,
|
|
37
|
+
passive: true,
|
|
38
|
+
});
|
|
39
|
+
return {
|
|
40
|
+
stop: () => {
|
|
41
|
+
removeListener();
|
|
42
|
+
cancelThrottle();
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
//# sourceMappingURL=trackViewportResize.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trackViewportResize.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/trackViewportResize.ts"],"names":[],"mappings":";;AAaA,kDAeC;AAED,8DAsCC;AApED,wDAAkG;AAElG,gEAAkE;AAClE,0CAA8D;AAE9D,4CAAgD;AAChD,0CAAyD;AAKzD,MAAM,kCAAkC,GAAG,GAAG,CAAA;AAE9C,SAAgB,mBAAmB,CACjC,UAAgE,EAChE,KAAqB;IAErB,MAAM,0BAA0B,GAAG,IAAA,yCAAsB,EAAC,KAAK,CAAC,aAAa,CAAC,CAAC,SAAS,CACtF,CAAC,IAAuB,EAAE,EAAE;QAC1B,UAAU,CAAC,IAAA,sCAA2B,EAAqB,yBAAiB,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC,CAAA;IACrG,CAAC,CACF,CAAA;IAED,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,0BAA0B,CAAC,WAAW,EAAE,CAAA;QAC1C,CAAC;KACF,CAAA;AACH,CAAC;AAED,SAAgB,yBAAyB,CACvC,UAAoD,EACpD,KAAqB;IAErB,MAAM,cAAc,GAAG,MAAM,CAAC,cAAc,CAAA;IAC5C,IAAI,CAAC,cAAc,EAAE,CAAC;QACpB,OAAO,EAAE,IAAI,EAAE,mBAAI,EAAE,CAAA;IACvB,CAAC;IACD,MAAM,EAAE,SAAS,EAAE,eAAe,EAAE,MAAM,EAAE,cAAc,EAAE,GAAG,IAAA,uBAAQ,EACrE,GAAG,EAAE;QACH,UAAU,CAAC;YACT,IAAI,EAAE,IAAA,6BAAiB,EAAC,cAAc,CAAC;YACvC,IAAI,EAAE,kBAAU,CAAC,cAAc;YAC/B,SAAS,EAAE,IAAA,2BAAY,GAAE;SAC1B,CAAC,CAAA;IACJ,CAAC,EACD,kCAAkC,EAClC;QACE,QAAQ,EAAE,KAAK;KAChB,CACF,CAAA;IACD,MAAM,EAAE,IAAI,EAAE,cAAc,EAAE,GAAG,IAAA,gCAAiB,EAChD,KAAK,CAAC,aAAa,EACnB,cAAc,EACd,kEAAoC,EACpC,eAAe,EACf;QACE,OAAO,EAAE,IAAI;QACb,OAAO,EAAE,IAAI;KACd,CACF,CAAA;IAED,OAAO;QACL,IAAI,EAAE,GAAG,EAAE;YACT,cAAc,EAAE,CAAA;YAChB,cAAc,EAAE,CAAA;QAClB,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tracker.types.js","sourceRoot":"","sources":["../../../../src/domain/record/trackers/tracker.types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Browsers have not standardized various dimension properties. Mobile devices typically report
|
|
3
|
+
* dimensions in reference to the visual viewport, while desktop uses the layout viewport. For example,
|
|
4
|
+
* Mobile Chrome will change innerWidth when a pinch zoom takes place, while Chrome Desktop (mac) will not.
|
|
5
|
+
*
|
|
6
|
+
* With the new Viewport API, we now calculate and normalize dimension properties to the layout viewport.
|
|
7
|
+
* If the VisualViewport API is not supported by a browser, it isn't reasonably possible to detect or normalize
|
|
8
|
+
* which viewport is being measured. Therefore these exported functions will fallback to assuming that the layout
|
|
9
|
+
* viewport is being measured by the browser
|
|
10
|
+
*/
|
|
11
|
+
import type { VisualViewportRecord } from '../../types';
|
|
12
|
+
interface LayoutCoordinates {
|
|
13
|
+
layoutViewportX: number;
|
|
14
|
+
layoutViewportY: number;
|
|
15
|
+
visualViewportX: number;
|
|
16
|
+
visualViewportY: number;
|
|
17
|
+
}
|
|
18
|
+
export declare const convertMouseEventToLayoutCoordinates: (clientX: number, clientY: number) => LayoutCoordinates;
|
|
19
|
+
export declare const getVisualViewport: (visualViewport: VisualViewport) => VisualViewportRecord["data"];
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Browsers have not standardized various dimension properties. Mobile devices typically report
|
|
4
|
+
* dimensions in reference to the visual viewport, while desktop uses the layout viewport. For example,
|
|
5
|
+
* Mobile Chrome will change innerWidth when a pinch zoom takes place, while Chrome Desktop (mac) will not.
|
|
6
|
+
*
|
|
7
|
+
* With the new Viewport API, we now calculate and normalize dimension properties to the layout viewport.
|
|
8
|
+
* If the VisualViewport API is not supported by a browser, it isn't reasonably possible to detect or normalize
|
|
9
|
+
* which viewport is being measured. Therefore these exported functions will fallback to assuming that the layout
|
|
10
|
+
* viewport is being measured by the browser
|
|
11
|
+
*/
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
exports.getVisualViewport = exports.convertMouseEventToLayoutCoordinates = void 0;
|
|
14
|
+
// Scrollbar widths vary across properties on different devices and browsers
|
|
15
|
+
const TOLERANCE = 25;
|
|
16
|
+
/**
|
|
17
|
+
* Use the Visual Viewport API's properties to measure scrollX/Y in reference to the layout viewport
|
|
18
|
+
* in order to determine if window.scrollX/Y is measuring the layout or visual viewport.
|
|
19
|
+
* This finding corresponds to which viewport mouseEvent.clientX/Y and window.innerWidth/Height measures.
|
|
20
|
+
*/
|
|
21
|
+
function isVisualViewportFactoredIn(visualViewport) {
|
|
22
|
+
return (Math.abs(visualViewport.pageTop - visualViewport.offsetTop - window.scrollY) > TOLERANCE ||
|
|
23
|
+
Math.abs(visualViewport.pageLeft - visualViewport.offsetLeft - window.scrollX) > TOLERANCE);
|
|
24
|
+
}
|
|
25
|
+
const convertMouseEventToLayoutCoordinates = (clientX, clientY) => {
|
|
26
|
+
const visualViewport = window.visualViewport;
|
|
27
|
+
const normalized = {
|
|
28
|
+
layoutViewportX: clientX,
|
|
29
|
+
layoutViewportY: clientY,
|
|
30
|
+
visualViewportX: clientX,
|
|
31
|
+
visualViewportY: clientY,
|
|
32
|
+
};
|
|
33
|
+
if (!visualViewport) {
|
|
34
|
+
// On old browsers, we cannot normalize, so fallback to clientX/Y
|
|
35
|
+
return normalized;
|
|
36
|
+
}
|
|
37
|
+
else if (isVisualViewportFactoredIn(visualViewport)) {
|
|
38
|
+
// Typically Mobile Devices
|
|
39
|
+
normalized.layoutViewportX = Math.round(clientX + visualViewport.offsetLeft);
|
|
40
|
+
normalized.layoutViewportY = Math.round(clientY + visualViewport.offsetTop);
|
|
41
|
+
}
|
|
42
|
+
else {
|
|
43
|
+
// Typically Desktop Devices
|
|
44
|
+
normalized.visualViewportX = Math.round(clientX - visualViewport.offsetLeft);
|
|
45
|
+
normalized.visualViewportY = Math.round(clientY - visualViewport.offsetTop);
|
|
46
|
+
}
|
|
47
|
+
return normalized;
|
|
48
|
+
};
|
|
49
|
+
exports.convertMouseEventToLayoutCoordinates = convertMouseEventToLayoutCoordinates;
|
|
50
|
+
const getVisualViewport = (visualViewport) => ({
|
|
51
|
+
scale: visualViewport.scale,
|
|
52
|
+
offsetLeft: visualViewport.offsetLeft,
|
|
53
|
+
offsetTop: visualViewport.offsetTop,
|
|
54
|
+
pageLeft: visualViewport.pageLeft,
|
|
55
|
+
pageTop: visualViewport.pageTop,
|
|
56
|
+
height: visualViewport.height,
|
|
57
|
+
width: visualViewport.width,
|
|
58
|
+
});
|
|
59
|
+
exports.getVisualViewport = getVisualViewport;
|
|
60
|
+
//# sourceMappingURL=viewports.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"viewports.js","sourceRoot":"","sources":["../../../src/domain/record/viewports.ts"],"names":[],"mappings":";AAAA;;;;;;;;;GASG;;;AAIH,4EAA4E;AAC5E,MAAM,SAAS,GAAG,EAAE,CAAA;AAEpB;;;;GAIG;AACH,SAAS,0BAA0B,CAAC,cAA8B;IAChE,OAAO,CACL,IAAI,CAAC,GAAG,CAAC,cAAc,CAAC,OAAO,GAAG,cAAc,CAAC,SAAS,GAAG,MAAM,CAAC,OAAO,CAAC,GAAG,SAAS;QACxF,IAAI,CAAC,GAAG,CAAC,cAAc,CAAC,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAG,MAAM,CAAC,OAAO,CAAC,GAAG,SAAS,CAC3F,CAAA;AACH,CAAC;AASM,MAAM,oCAAoC,GAAG,CAAC,OAAe,EAAE,OAAe,EAAqB,EAAE;IAC1G,MAAM,cAAc,GAAG,MAAM,CAAC,cAAc,CAAA;IAC5C,MAAM,UAAU,GAAsB;QACpC,eAAe,EAAE,OAAO;QACxB,eAAe,EAAE,OAAO;QACxB,eAAe,EAAE,OAAO;QACxB,eAAe,EAAE,OAAO;KACzB,CAAA;IAED,IAAI,CAAC,cAAc,EAAE,CAAC;QACpB,iEAAiE;QACjE,OAAO,UAAU,CAAA;IACnB,CAAC;SAAM,IAAI,0BAA0B,CAAC,cAAc,CAAC,EAAE,CAAC;QACtD,2BAA2B;QAC3B,UAAU,CAAC,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,GAAG,cAAc,CAAC,UAAU,CAAC,CAAA;QAC5E,UAAU,CAAC,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,GAAG,cAAc,CAAC,SAAS,CAAC,CAAA;IAC7E,CAAC;SAAM,CAAC;QACN,4BAA4B;QAC5B,UAAU,CAAC,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,GAAG,cAAc,CAAC,UAAU,CAAC,CAAA;QAC5E,UAAU,CAAC,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,GAAG,cAAc,CAAC,SAAS,CAAC,CAAA;IAC7E,CAAC;IACD,OAAO,UAAU,CAAA;AACnB,CAAC,CAAA;AAtBY,QAAA,oCAAoC,wCAsBhD;AAEM,MAAM,iBAAiB,GAAG,CAAC,cAA8B,EAAgC,EAAE,CAAC,CAAC;IAClG,KAAK,EAAE,cAAc,CAAC,KAAK;IAC3B,UAAU,EAAE,cAAc,CAAC,UAAU;IACrC,SAAS,EAAE,cAAc,CAAC,SAAS;IACnC,QAAQ,EAAE,cAAc,CAAC,QAAQ;IACjC,OAAO,EAAE,cAAc,CAAC,OAAO;IAC/B,MAAM,EAAE,cAAc,CAAC,MAAM;IAC7B,KAAK,EAAE,cAAc,CAAC,KAAK;CAC5B,CAAC,CAAA;AARW,QAAA,iBAAiB,qBAQ5B"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ReplayStats } from '@datadog/browser-rum-core';
|
|
2
|
+
export declare const MAX_STATS_HISTORY = 1000;
|
|
3
|
+
export declare function getSegmentsCount(viewId: string): number;
|
|
4
|
+
export declare function addSegment(viewId: string): void;
|
|
5
|
+
export declare function addRecord(viewId: string): void;
|
|
6
|
+
export declare function addWroteData(viewId: string, additionalBytesCount: number): void;
|
|
7
|
+
export declare function getReplayStats(viewId: string): ReplayStats | undefined;
|
|
8
|
+
export declare function resetReplayStats(): void;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MAX_STATS_HISTORY = void 0;
|
|
4
|
+
exports.getSegmentsCount = getSegmentsCount;
|
|
5
|
+
exports.addSegment = addSegment;
|
|
6
|
+
exports.addRecord = addRecord;
|
|
7
|
+
exports.addWroteData = addWroteData;
|
|
8
|
+
exports.getReplayStats = getReplayStats;
|
|
9
|
+
exports.resetReplayStats = resetReplayStats;
|
|
10
|
+
exports.MAX_STATS_HISTORY = 1000;
|
|
11
|
+
let statsPerView;
|
|
12
|
+
function getSegmentsCount(viewId) {
|
|
13
|
+
return getOrCreateReplayStats(viewId).segments_count;
|
|
14
|
+
}
|
|
15
|
+
function addSegment(viewId) {
|
|
16
|
+
getOrCreateReplayStats(viewId).segments_count += 1;
|
|
17
|
+
}
|
|
18
|
+
function addRecord(viewId) {
|
|
19
|
+
getOrCreateReplayStats(viewId).records_count += 1;
|
|
20
|
+
}
|
|
21
|
+
function addWroteData(viewId, additionalBytesCount) {
|
|
22
|
+
getOrCreateReplayStats(viewId).segments_total_raw_size += additionalBytesCount;
|
|
23
|
+
}
|
|
24
|
+
function getReplayStats(viewId) {
|
|
25
|
+
return statsPerView === null || statsPerView === void 0 ? void 0 : statsPerView.get(viewId);
|
|
26
|
+
}
|
|
27
|
+
function resetReplayStats() {
|
|
28
|
+
statsPerView = undefined;
|
|
29
|
+
}
|
|
30
|
+
function getOrCreateReplayStats(viewId) {
|
|
31
|
+
if (!statsPerView) {
|
|
32
|
+
statsPerView = new Map();
|
|
33
|
+
}
|
|
34
|
+
let replayStats;
|
|
35
|
+
if (statsPerView.has(viewId)) {
|
|
36
|
+
replayStats = statsPerView.get(viewId);
|
|
37
|
+
}
|
|
38
|
+
else {
|
|
39
|
+
replayStats = {
|
|
40
|
+
records_count: 0,
|
|
41
|
+
segments_count: 0,
|
|
42
|
+
segments_total_raw_size: 0,
|
|
43
|
+
};
|
|
44
|
+
statsPerView.set(viewId, replayStats);
|
|
45
|
+
if (statsPerView.size > exports.MAX_STATS_HISTORY) {
|
|
46
|
+
deleteOldestStats();
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
return replayStats;
|
|
50
|
+
}
|
|
51
|
+
function deleteOldestStats() {
|
|
52
|
+
if (!statsPerView) {
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
const toDelete = statsPerView.keys().next().value;
|
|
56
|
+
if (toDelete) {
|
|
57
|
+
statsPerView.delete(toDelete);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=replayStats.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"replayStats.js","sourceRoot":"","sources":["../../src/domain/replayStats.ts"],"names":[],"mappings":";;;AAKA,4CAEC;AAED,gCAEC;AAED,8BAEC;AAED,oCAEC;AAED,wCAEC;AAED,4CAEC;AAzBY,QAAA,iBAAiB,GAAG,IAAI,CAAA;AACrC,IAAI,YAAkD,CAAA;AAEtD,SAAgB,gBAAgB,CAAC,MAAc;IAC7C,OAAO,sBAAsB,CAAC,MAAM,CAAC,CAAC,cAAc,CAAA;AACtD,CAAC;AAED,SAAgB,UAAU,CAAC,MAAc;IACvC,sBAAsB,CAAC,MAAM,CAAC,CAAC,cAAc,IAAI,CAAC,CAAA;AACpD,CAAC;AAED,SAAgB,SAAS,CAAC,MAAc;IACtC,sBAAsB,CAAC,MAAM,CAAC,CAAC,aAAa,IAAI,CAAC,CAAA;AACnD,CAAC;AAED,SAAgB,YAAY,CAAC,MAAc,EAAE,oBAA4B;IACvE,sBAAsB,CAAC,MAAM,CAAC,CAAC,uBAAuB,IAAI,oBAAoB,CAAA;AAChF,CAAC;AAED,SAAgB,cAAc,CAAC,MAAc;IAC3C,OAAO,YAAY,aAAZ,YAAY,uBAAZ,YAAY,CAAE,GAAG,CAAC,MAAM,CAAC,CAAA;AAClC,CAAC;AAED,SAAgB,gBAAgB;IAC9B,YAAY,GAAG,SAAS,CAAA;AAC1B,CAAC;AAED,SAAS,sBAAsB,CAAC,MAAc;IAC5C,IAAI,CAAC,YAAY,EAAE,CAAC;QAClB,YAAY,GAAG,IAAI,GAAG,EAAE,CAAA;IAC1B,CAAC;IAED,IAAI,WAAwB,CAAA;IAC5B,IAAI,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC;QAC7B,WAAW,GAAG,YAAY,CAAC,GAAG,CAAC,MAAM,CAAE,CAAA;IACzC,CAAC;SAAM,CAAC;QACN,WAAW,GAAG;YACZ,aAAa,EAAE,CAAC;YAChB,cAAc,EAAE,CAAC;YACjB,uBAAuB,EAAE,CAAC;SAC3B,CAAA;QACD,YAAY,CAAC,GAAG,CAAC,MAAM,EAAE,WAAW,CAAC,CAAA;QACrC,IAAI,YAAY,CAAC,IAAI,GAAG,yBAAiB,EAAE,CAAC;YAC1C,iBAAiB,EAAE,CAAA;QACrB,CAAC;IACH,CAAC;IAED,OAAO,WAAW,CAAA;AACpB,CAAC;AAED,SAAS,iBAAiB;IACxB,IAAI,CAAC,YAAY,EAAE,CAAC;QAClB,OAAM;IACR,CAAC;IACD,MAAM,QAAQ,GAAG,YAAY,CAAC,IAAI,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,CAAA;IACjD,IAAI,QAAQ,EAAE,CAAC;QACb,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAA;IAC/B,CAAC;AACH,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.reportScriptLoadingError = reportScriptLoadingError;
|
|
4
|
+
const browser_core_1 = require("@datadog/browser-core");
|
|
5
|
+
function reportScriptLoadingError({ configuredUrl, error, source, scriptType, }) {
|
|
6
|
+
browser_core_1.display.error(`${source} failed to start: an error occurred while initializing the ${scriptType}:`, error);
|
|
7
|
+
if (error instanceof Event || (error instanceof Error && isMessageCspRelated(error.message))) {
|
|
8
|
+
let baseMessage;
|
|
9
|
+
if (configuredUrl) {
|
|
10
|
+
baseMessage = `Please make sure the ${scriptType} URL ${configuredUrl} is correct and CSP is correctly configured.`;
|
|
11
|
+
}
|
|
12
|
+
else {
|
|
13
|
+
baseMessage = 'Please make sure CSP is correctly configured.';
|
|
14
|
+
}
|
|
15
|
+
browser_core_1.display.error(`${baseMessage} See documentation at ${browser_core_1.DOCS_ORIGIN}/integrations/content_security_policy_logs/#use-csp-with-real-user-monitoring-and-session-replay`);
|
|
16
|
+
}
|
|
17
|
+
else if (scriptType === 'worker') {
|
|
18
|
+
(0, browser_core_1.addTelemetryError)(error);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
function isMessageCspRelated(message) {
|
|
22
|
+
return (message.includes('Content Security Policy') ||
|
|
23
|
+
// Related to `require-trusted-types-for` CSP: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/require-trusted-types-for
|
|
24
|
+
message.includes("requires 'TrustedScriptURL'"));
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=scriptLoadingError.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scriptLoadingError.js","sourceRoot":"","sources":["../../src/domain/scriptLoadingError.ts"],"names":[],"mappings":";;AAEA,4DAyBC;AA3BD,wDAA+E;AAE/E,SAAgB,wBAAwB,CAAC,EACvC,aAAa,EACb,KAAK,EACL,MAAM,EACN,UAAU,GAMX;IACC,sBAAO,CAAC,KAAK,CAAC,GAAG,MAAM,8DAA8D,UAAU,GAAG,EAAE,KAAK,CAAC,CAAA;IAC1G,IAAI,KAAK,YAAY,KAAK,IAAI,CAAC,KAAK,YAAY,KAAK,IAAI,mBAAmB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC;QAC7F,IAAI,WAAW,CAAA;QACf,IAAI,aAAa,EAAE,CAAC;YAClB,WAAW,GAAG,wBAAwB,UAAU,QAAQ,aAAa,8CAA8C,CAAA;QACrH,CAAC;aAAM,CAAC;YACN,WAAW,GAAG,+CAA+C,CAAA;QAC/D,CAAC;QACD,sBAAO,CAAC,KAAK,CACX,GAAG,WAAW,yBAAyB,0BAAW,kGAAkG,CACrJ,CAAA;IACH,CAAC;SAAM,IAAI,UAAU,KAAK,QAAQ,EAAE,CAAC;QACnC,IAAA,gCAAiB,EAAC,KAAK,CAAC,CAAA;IAC1B,CAAC;AACH,CAAC;AAED,SAAS,mBAAmB,CAAC,OAAe;IAC1C,OAAO,CACL,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAAC;QAC3C,0JAA0J;QAC1J,OAAO,CAAC,QAAQ,CAAC,6BAA6B,CAAC,CAChD,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { Payload, Uint8ArrayBuffer } from '@datadog/browser-core';
|
|
2
|
+
import type { BrowserSegmentMetadata } from '../../types';
|
|
3
|
+
import type { SerializationMetric, SerializationStats } from '../record';
|
|
4
|
+
export type BrowserSegmentMetadataAndSegmentSizes = BrowserSegmentMetadata & {
|
|
5
|
+
raw_segment_size: number;
|
|
6
|
+
compressed_segment_size: number;
|
|
7
|
+
};
|
|
8
|
+
export type ReplayPayload = Payload & {
|
|
9
|
+
cssText: SerializationMetric;
|
|
10
|
+
isFullSnapshot: boolean;
|
|
11
|
+
rawSize: number;
|
|
12
|
+
recordCount: number;
|
|
13
|
+
serializationDuration: SerializationMetric;
|
|
14
|
+
};
|
|
15
|
+
export declare function buildReplayPayload(data: Uint8ArrayBuffer, metadata: BrowserSegmentMetadata, stats: SerializationStats, rawSegmentBytesCount: number): ReplayPayload;
|