@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,49 @@
|
|
|
1
|
+
import { createNodeIds } from '../../itemIds';
|
|
2
|
+
export function createIdentityNodeIdRemapper() {
|
|
3
|
+
return {
|
|
4
|
+
remap(inputNodeId) {
|
|
5
|
+
return inputNodeId;
|
|
6
|
+
},
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export function createCopyingNodeIdRemapper() {
|
|
10
|
+
const { nodeIds: inputNodeIds, nodesByNodeId: inputNodesByNodeId } = createTrackedNodeIds();
|
|
11
|
+
const { nodeIds: outputNodeIds, nodeIdsByNode: outputNodeIdsByNode } = createTrackedNodeIds();
|
|
12
|
+
const self = {
|
|
13
|
+
remap(inputNodeId) {
|
|
14
|
+
var _a;
|
|
15
|
+
const node = inputNodesByNodeId.get(inputNodeId);
|
|
16
|
+
if (!node) {
|
|
17
|
+
throw new Error(`Input node id ${inputNodeId} not found`);
|
|
18
|
+
}
|
|
19
|
+
return (_a = outputNodeIdsByNode.get(node)) !== null && _a !== void 0 ? _a : outputNodeIds.getOrInsert(node);
|
|
20
|
+
},
|
|
21
|
+
inputNodeIds,
|
|
22
|
+
outputNodeIds,
|
|
23
|
+
};
|
|
24
|
+
return self;
|
|
25
|
+
}
|
|
26
|
+
function createTrackedNodeIds() {
|
|
27
|
+
const wrappedNodeIds = createNodeIds();
|
|
28
|
+
const nodeIdsByNode = new Map();
|
|
29
|
+
const nodesByNodeId = new Map();
|
|
30
|
+
const nodeIds = {
|
|
31
|
+
clear: wrappedNodeIds.clear,
|
|
32
|
+
delete: wrappedNodeIds.delete,
|
|
33
|
+
get: wrappedNodeIds.get,
|
|
34
|
+
getOrInsert(node) {
|
|
35
|
+
const nodeId = wrappedNodeIds.getOrInsert(node);
|
|
36
|
+
nodeIdsByNode.set(node, nodeId);
|
|
37
|
+
nodesByNodeId.set(nodeId, node);
|
|
38
|
+
return nodeId;
|
|
39
|
+
},
|
|
40
|
+
get nextId() {
|
|
41
|
+
return wrappedNodeIds.nextId;
|
|
42
|
+
},
|
|
43
|
+
get size() {
|
|
44
|
+
return wrappedNodeIds.size;
|
|
45
|
+
},
|
|
46
|
+
};
|
|
47
|
+
return { nodeIds, nodeIdsByNode, nodesByNodeId };
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=nodeIdRemapper.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nodeIdRemapper.js","sourceRoot":"","sources":["../../../../../src/domain/record/serialization/conversions/nodeIdRemapper.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,eAAe,CAAA;AAM7C,MAAM,UAAU,4BAA4B;IAC1C,OAAO;QACL,KAAK,CAAC,WAAmB;YACvB,OAAO,WAAW,CAAA;QACpB,CAAC;KACF,CAAA;AACH,CAAC;AAOD,MAAM,UAAU,2BAA2B;IACzC,MAAM,EAAE,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,GAAG,oBAAoB,EAAE,CAAA;IAC3F,MAAM,EAAE,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,mBAAmB,EAAE,GAAG,oBAAoB,EAAE,CAAA;IAE7F,MAAM,IAAI,GAA0B;QAClC,KAAK,CAAC,WAAmB;;YACvB,MAAM,IAAI,GAAG,kBAAkB,CAAC,GAAG,CAAC,WAAW,CAAC,CAAA;YAChD,IAAI,CAAC,IAAI,EAAE,CAAC;gBACV,MAAM,IAAI,KAAK,CAAC,iBAAiB,WAAW,YAAY,CAAC,CAAA;YAC3D,CAAC;YACD,OAAO,MAAA,mBAAmB,CAAC,GAAG,CAAC,IAAI,CAAC,mCAAI,aAAa,CAAC,WAAW,CAAC,IAAI,CAAC,CAAA;QACzE,CAAC;QAED,YAAY;QACZ,aAAa;KACd,CAAA;IAED,OAAO,IAAI,CAAA;AACb,CAAC;AAED,SAAS,oBAAoB;IAK3B,MAAM,cAAc,GAAG,aAAa,EAAE,CAAA;IACtC,MAAM,aAAa,GAAG,IAAI,GAAG,EAAgB,CAAA;IAC7C,MAAM,aAAa,GAAG,IAAI,GAAG,EAAgB,CAAA;IAE7C,MAAM,OAAO,GAAY;QACvB,KAAK,EAAE,cAAc,CAAC,KAAK;QAC3B,MAAM,EAAE,cAAc,CAAC,MAAM;QAC7B,GAAG,EAAE,cAAc,CAAC,GAAG;QACvB,WAAW,CAAC,IAAU;YACpB,MAAM,MAAM,GAAG,cAAc,CAAC,WAAW,CAAC,IAAI,CAAC,CAAA;YAC/C,aAAa,CAAC,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,CAAA;YAC/B,aAAa,CAAC,GAAG,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA;YAC/B,OAAO,MAAM,CAAA;QACf,CAAC;QACD,IAAI,MAAM;YACR,OAAO,cAAc,CAAC,MAAM,CAAA;QAC9B,CAAC;QACD,IAAI,IAAI;YACN,OAAO,cAAc,CAAC,IAAI,CAAA;QAC5B,CAAC;KACF,CAAA;IAED,OAAO,EAAE,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,CAAA;AAClD,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { createIdentityNodeIdRemapper } from './nodeIdRemapper';
|
|
2
|
+
export function createV1RenderOptions(options = {}) {
|
|
3
|
+
var _a, _b;
|
|
4
|
+
return {
|
|
5
|
+
nodeIdRemapper: (_a = options.nodeIdRemapper) !== null && _a !== void 0 ? _a : createIdentityNodeIdRemapper(),
|
|
6
|
+
timestamp: (_b = options.timestamp) !== null && _b !== void 0 ? _b : 0,
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=renderOptions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"renderOptions.js","sourceRoot":"","sources":["../../../../../src/domain/record/serialization/conversions/renderOptions.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,4BAA4B,EAAE,MAAM,kBAAkB,CAAA;AAO/D,MAAM,UAAU,qBAAqB,CAAC,UAAoC,EAAE;;IAC1E,OAAO;QACL,cAAc,EAAE,MAAA,OAAO,CAAC,cAAc,mCAAI,4BAA4B,EAAE;QACxE,SAAS,EAAE,MAAA,OAAO,CAAC,SAAS,mCAAI,CAAC;KAClC,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export function createStringTable() {
|
|
2
|
+
const strings = new Map();
|
|
3
|
+
return {
|
|
4
|
+
add(newString) {
|
|
5
|
+
strings.set(strings.size, newString);
|
|
6
|
+
},
|
|
7
|
+
decode(stringOrStringId) {
|
|
8
|
+
if (typeof stringOrStringId === 'string') {
|
|
9
|
+
return stringOrStringId;
|
|
10
|
+
}
|
|
11
|
+
const referencedString = strings.get(stringOrStringId);
|
|
12
|
+
if (referencedString === undefined) {
|
|
13
|
+
throw new Error(`Reference to unknown string: ${stringOrStringId}`);
|
|
14
|
+
}
|
|
15
|
+
return referencedString;
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=stringTable.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stringTable.js","sourceRoot":"","sources":["../../../../../src/domain/record/serialization/conversions/stringTable.ts"],"names":[],"mappings":"AAOA,MAAM,UAAU,iBAAiB;IAC/B,MAAM,OAAO,GAAG,IAAI,GAAG,EAAoB,CAAA;IAC3C,OAAO;QACL,GAAG,CAAC,SAAiB;YACnB,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,IAAgB,EAAE,SAAS,CAAC,CAAA;QAClD,CAAC;QACD,MAAM,CAAC,gBAAiC;YACtC,IAAI,OAAO,gBAAgB,KAAK,QAAQ,EAAE,CAAC;gBACzC,OAAO,gBAAgB,CAAA;YACzB,CAAC;YACD,MAAM,gBAAgB,GAAG,OAAO,CAAC,GAAG,CAAC,gBAA4B,CAAC,CAAA;YAClE,IAAI,gBAAgB,KAAK,SAAS,EAAE,CAAC;gBACnC,MAAM,IAAI,KAAK,CAAC,gCAAgC,gBAAgB,EAAE,CAAC,CAAA;YACrE,CAAC;YACD,OAAO,gBAAgB,CAAA;QACzB,CAAC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { BrowserFullSnapshotRecord, BrowserIncrementalSnapshotRecord } from '../../../../types';
|
|
2
|
+
import type { NodeId, StyleSheetId } from '../../itemIds';
|
|
3
|
+
import type { MutationLog } from './mutationLog';
|
|
4
|
+
import type { V1RenderOptions } from './renderOptions';
|
|
5
|
+
import type { VNode, VNodeData } from './vNode';
|
|
6
|
+
import type { VStyleSheet, VStyleSheetData } from './vStyleSheet';
|
|
7
|
+
export interface VDocument {
|
|
8
|
+
createNode(data: VNodeData): VNode;
|
|
9
|
+
getNodeById(id: NodeId): VNode;
|
|
10
|
+
createStyleSheet(data: VStyleSheetData): VStyleSheet;
|
|
11
|
+
getStyleSheetById(id: StyleSheetId): VStyleSheet;
|
|
12
|
+
onAttributeChanged(node: VNode, name: string): void;
|
|
13
|
+
onNodeConnected(node: VNode, parent: VNode | undefined): void;
|
|
14
|
+
onNodeDisconnected(node: VNode, parent: VNode | undefined): void;
|
|
15
|
+
onTextChanged(node: VNode): void;
|
|
16
|
+
get mutations(): MutationLog;
|
|
17
|
+
naturalRendering(): BrowserFullSnapshotRecord['type'] | BrowserIncrementalSnapshotRecord['type'];
|
|
18
|
+
render(options?: Partial<V1RenderOptions>): BrowserFullSnapshotRecord | BrowserIncrementalSnapshotRecord;
|
|
19
|
+
renderAsFullSnapshot(options?: Partial<V1RenderOptions>): BrowserFullSnapshotRecord;
|
|
20
|
+
renderAsIncrementalSnapshot(options?: Partial<V1RenderOptions>): BrowserIncrementalSnapshotRecord;
|
|
21
|
+
root: VNode | undefined;
|
|
22
|
+
}
|
|
23
|
+
export declare function createVDocument(): VDocument;
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
import { IncrementalSource, RecordType } from '../../../../types';
|
|
2
|
+
import { createMutationLog } from './mutationLog';
|
|
3
|
+
import { createV1RenderOptions } from './renderOptions';
|
|
4
|
+
import { createVNode } from './vNode';
|
|
5
|
+
import { createVStyleSheet } from './vStyleSheet';
|
|
6
|
+
export function createVDocument() {
|
|
7
|
+
const mutations = createMutationLog();
|
|
8
|
+
let nextNodeId = 0;
|
|
9
|
+
const nodesById = new Map();
|
|
10
|
+
let rootId;
|
|
11
|
+
let nextStyleSheetId = 0;
|
|
12
|
+
const styleSheetsById = new Map();
|
|
13
|
+
const self = {
|
|
14
|
+
createNode(data) {
|
|
15
|
+
const id = nextNodeId++;
|
|
16
|
+
const node = createVNode(self, id, data);
|
|
17
|
+
nodesById.set(id, node);
|
|
18
|
+
return node;
|
|
19
|
+
},
|
|
20
|
+
getNodeById(id) {
|
|
21
|
+
const node = nodesById.get(id);
|
|
22
|
+
if (!node) {
|
|
23
|
+
throw new Error(`Reference to unknown node: ${id}`);
|
|
24
|
+
}
|
|
25
|
+
return node;
|
|
26
|
+
},
|
|
27
|
+
createStyleSheet(data) {
|
|
28
|
+
const id = nextStyleSheetId++;
|
|
29
|
+
const sheet = createVStyleSheet(self, id, data);
|
|
30
|
+
styleSheetsById.set(id, sheet);
|
|
31
|
+
return sheet;
|
|
32
|
+
},
|
|
33
|
+
getStyleSheetById(id) {
|
|
34
|
+
const sheet = styleSheetsById.get(id);
|
|
35
|
+
if (!sheet) {
|
|
36
|
+
throw new Error(`Reference to unknown stylesheet: ${id}`);
|
|
37
|
+
}
|
|
38
|
+
return sheet;
|
|
39
|
+
},
|
|
40
|
+
onAttributeChanged(node, name) {
|
|
41
|
+
mutations.onAttributeChanged(node.id, name);
|
|
42
|
+
},
|
|
43
|
+
onNodeConnected(node, parent) {
|
|
44
|
+
if (node.state !== 'new') {
|
|
45
|
+
throw new Error(`Moving connected node: ${node.id}`);
|
|
46
|
+
}
|
|
47
|
+
if (parent === undefined) {
|
|
48
|
+
if (rootId !== undefined) {
|
|
49
|
+
throw new Error('Replacing existing root node');
|
|
50
|
+
}
|
|
51
|
+
rootId = node.id;
|
|
52
|
+
}
|
|
53
|
+
node.state = 'connected';
|
|
54
|
+
mutations.onNodeConnected(node.id);
|
|
55
|
+
},
|
|
56
|
+
onNodeDisconnected(node, parent) {
|
|
57
|
+
node.forSelfAndEachDescendant((descendant) => {
|
|
58
|
+
if (descendant.state === 'disconnected') {
|
|
59
|
+
throw new Error(`Disconnecting node which isn't connected: ${descendant.id}`);
|
|
60
|
+
}
|
|
61
|
+
descendant.state = 'disconnected';
|
|
62
|
+
});
|
|
63
|
+
if (!parent) {
|
|
64
|
+
throw new Error('Disconnecting the root node');
|
|
65
|
+
}
|
|
66
|
+
mutations.onNodeDisconnected(node.id, parent.id);
|
|
67
|
+
},
|
|
68
|
+
onTextChanged(node) {
|
|
69
|
+
mutations.onTextChanged(node.id);
|
|
70
|
+
},
|
|
71
|
+
get mutations() {
|
|
72
|
+
return mutations;
|
|
73
|
+
},
|
|
74
|
+
naturalRendering() {
|
|
75
|
+
if (rootId !== undefined && mutations.nodeAdds.has(rootId)) {
|
|
76
|
+
return RecordType.FullSnapshot;
|
|
77
|
+
}
|
|
78
|
+
return RecordType.IncrementalSnapshot;
|
|
79
|
+
},
|
|
80
|
+
render(options) {
|
|
81
|
+
if (self.naturalRendering() === RecordType.FullSnapshot) {
|
|
82
|
+
return self.renderAsFullSnapshot(options);
|
|
83
|
+
}
|
|
84
|
+
return self.renderAsIncrementalSnapshot(options);
|
|
85
|
+
},
|
|
86
|
+
renderAsFullSnapshot(renderOptions = {}) {
|
|
87
|
+
var _a, _b;
|
|
88
|
+
const options = createV1RenderOptions(renderOptions);
|
|
89
|
+
const root = self.root;
|
|
90
|
+
if (!root) {
|
|
91
|
+
throw new Error('No root node found');
|
|
92
|
+
}
|
|
93
|
+
let scrollLeft = 0;
|
|
94
|
+
let scrollTop = 0;
|
|
95
|
+
if (root.data.kind === '#document' || root.data.kind === '#element') {
|
|
96
|
+
scrollLeft = (_a = root.data.scrollLeft) !== null && _a !== void 0 ? _a : 0;
|
|
97
|
+
scrollTop = (_b = root.data.scrollTop) !== null && _b !== void 0 ? _b : 0;
|
|
98
|
+
}
|
|
99
|
+
return {
|
|
100
|
+
data: {
|
|
101
|
+
node: root.render(options),
|
|
102
|
+
initialOffset: { left: scrollLeft, top: scrollTop },
|
|
103
|
+
},
|
|
104
|
+
type: RecordType.FullSnapshot,
|
|
105
|
+
timestamp: options.timestamp,
|
|
106
|
+
};
|
|
107
|
+
},
|
|
108
|
+
renderAsIncrementalSnapshot(renderOptions = {}) {
|
|
109
|
+
var _a;
|
|
110
|
+
const options = createV1RenderOptions(renderOptions);
|
|
111
|
+
const root = self.root;
|
|
112
|
+
if (!root) {
|
|
113
|
+
throw new Error('No root node found');
|
|
114
|
+
}
|
|
115
|
+
const remappedId = (id) => options.nodeIdRemapper.remap(id);
|
|
116
|
+
const addMutations = [];
|
|
117
|
+
root.forEachAddedNodeRoot(mutations.nodeAdds, (node) => {
|
|
118
|
+
var _a;
|
|
119
|
+
if (!node.parent) {
|
|
120
|
+
throw new Error(`Can't render incremental add of root node ${node.id}`);
|
|
121
|
+
}
|
|
122
|
+
addMutations.push({
|
|
123
|
+
nextId: ((_a = node.nextSibling) === null || _a === void 0 ? void 0 : _a.id) !== undefined ? remappedId(node.nextSibling.id) : null,
|
|
124
|
+
parentId: remappedId(node.parent.id),
|
|
125
|
+
node: node.render(options),
|
|
126
|
+
});
|
|
127
|
+
});
|
|
128
|
+
const removeMutations = [];
|
|
129
|
+
for (const [id, parentId] of mutations.nodeRemoves) {
|
|
130
|
+
removeMutations.push({ parentId: remappedId(parentId), id: remappedId(id) });
|
|
131
|
+
}
|
|
132
|
+
const textMutations = [];
|
|
133
|
+
for (const id of mutations.textChanges) {
|
|
134
|
+
const node = self.getNodeById(id);
|
|
135
|
+
if (node.data.kind !== '#text') {
|
|
136
|
+
throw new Error(`Can't render incremental text mutation of ${node.data.kind} node ${id}`);
|
|
137
|
+
}
|
|
138
|
+
textMutations.push({ id: remappedId(id), value: node.data.textContent });
|
|
139
|
+
}
|
|
140
|
+
const attributeMutations = [];
|
|
141
|
+
for (const [id, attrNames] of mutations.attributeChanges) {
|
|
142
|
+
const node = self.getNodeById(id);
|
|
143
|
+
if (node.data.kind !== '#element') {
|
|
144
|
+
throw new Error(`Can't render incremental attribute mutation of ${node.data.kind} node ${id}`);
|
|
145
|
+
}
|
|
146
|
+
const attributes = {};
|
|
147
|
+
for (const attrName of attrNames) {
|
|
148
|
+
attributes[attrName] = (_a = node.data.attributes[attrName]) !== null && _a !== void 0 ? _a : null;
|
|
149
|
+
}
|
|
150
|
+
attributeMutations.push({ id: remappedId(id), attributes });
|
|
151
|
+
}
|
|
152
|
+
return {
|
|
153
|
+
data: {
|
|
154
|
+
source: IncrementalSource.Mutation,
|
|
155
|
+
adds: addMutations,
|
|
156
|
+
removes: removeMutations,
|
|
157
|
+
texts: textMutations,
|
|
158
|
+
attributes: attributeMutations,
|
|
159
|
+
},
|
|
160
|
+
type: RecordType.IncrementalSnapshot,
|
|
161
|
+
timestamp: options.timestamp,
|
|
162
|
+
};
|
|
163
|
+
},
|
|
164
|
+
get root() {
|
|
165
|
+
return rootId === undefined ? undefined : self.getNodeById(rootId);
|
|
166
|
+
},
|
|
167
|
+
set root(node) {
|
|
168
|
+
self.onNodeConnected(node, undefined);
|
|
169
|
+
},
|
|
170
|
+
};
|
|
171
|
+
return self;
|
|
172
|
+
}
|
|
173
|
+
//# sourceMappingURL=vDocument.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vDocument.js","sourceRoot":"","sources":["../../../../../src/domain/record/serialization/conversions/vDocument.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import type { SerializedNodeWithId } from '../../../../types';
|
|
2
|
+
import { PlaybackState } from '../../../../types';
|
|
3
|
+
import type { NodeId } from '../../itemIds';
|
|
4
|
+
import type { V1RenderOptions } from './renderOptions';
|
|
5
|
+
import type { VDocument } from './vDocument';
|
|
6
|
+
import type { VStyleSheet } from './vStyleSheet';
|
|
7
|
+
export interface VNode {
|
|
8
|
+
after(node: VNode): void;
|
|
9
|
+
appendChild(node: VNode): void;
|
|
10
|
+
before(node: VNode): void;
|
|
11
|
+
remove(): void;
|
|
12
|
+
setAttachedStyleSheets(sheets: VStyleSheet[]): void;
|
|
13
|
+
setAttribute(name: string, value: string | null): void;
|
|
14
|
+
setPlaybackState(state: PlaybackState): void;
|
|
15
|
+
setScrollPosition(left: number, top: number): void;
|
|
16
|
+
setSize(width: number, height: number): void;
|
|
17
|
+
setTextContent(value: string): void;
|
|
18
|
+
forEachAddedNodeRoot(nodeAdds: Set<NodeId>, action: (node: VNode) => void): void;
|
|
19
|
+
forSelfAndEachDescendant(action: (node: VNode) => void): void;
|
|
20
|
+
mapChildren<Result>(action: (node: VNode) => Result): Result[];
|
|
21
|
+
render(options: V1RenderOptions): SerializedNodeWithId;
|
|
22
|
+
get data(): VNodeData;
|
|
23
|
+
get id(): NodeId;
|
|
24
|
+
get ownerDocument(): VDocument;
|
|
25
|
+
state: VNodeState;
|
|
26
|
+
firstChild: VNode | undefined;
|
|
27
|
+
lastChild: VNode | undefined;
|
|
28
|
+
previousSibling: VNode | undefined;
|
|
29
|
+
nextSibling: VNode | undefined;
|
|
30
|
+
parent: VNode | undefined;
|
|
31
|
+
}
|
|
32
|
+
export type VNodeState = 'new' | 'connected' | 'disconnected';
|
|
33
|
+
export type VNodeData = {
|
|
34
|
+
kind: '#cdata-section';
|
|
35
|
+
} | {
|
|
36
|
+
kind: '#document';
|
|
37
|
+
attachedStyleSheets?: VStyleSheet[] | undefined;
|
|
38
|
+
scrollLeft?: number;
|
|
39
|
+
scrollTop?: number;
|
|
40
|
+
} | {
|
|
41
|
+
kind: '#doctype';
|
|
42
|
+
name: string;
|
|
43
|
+
publicId: string;
|
|
44
|
+
systemId: string;
|
|
45
|
+
} | {
|
|
46
|
+
kind: '#document-fragment';
|
|
47
|
+
attachedStyleSheets?: VStyleSheet[] | undefined;
|
|
48
|
+
} | {
|
|
49
|
+
kind: '#element';
|
|
50
|
+
tag: string;
|
|
51
|
+
attachedStyleSheets?: VStyleSheet[] | undefined;
|
|
52
|
+
attributes: Record<string, string>;
|
|
53
|
+
isSVG?: boolean;
|
|
54
|
+
playbackState?: PlaybackState;
|
|
55
|
+
scrollLeft?: number;
|
|
56
|
+
scrollTop?: number;
|
|
57
|
+
width?: number;
|
|
58
|
+
height?: number;
|
|
59
|
+
} | {
|
|
60
|
+
kind: '#shadow-root';
|
|
61
|
+
attachedStyleSheets?: VStyleSheet[] | undefined;
|
|
62
|
+
} | {
|
|
63
|
+
kind: '#text';
|
|
64
|
+
textContent: string;
|
|
65
|
+
};
|
|
66
|
+
export declare function createVNode(document: VDocument, id: NodeId, data: VNodeData): VNode;
|
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
import { PlaybackState, NodeType } from '../../../../types';
|
|
2
|
+
export function createVNode(document, id, data) {
|
|
3
|
+
let state = 'new';
|
|
4
|
+
const assertConnectedCorrectly = () => {
|
|
5
|
+
if (self.state !== 'connected') {
|
|
6
|
+
throw new Error(`Expected node ${self.id} to be connected, not ${self.state}`);
|
|
7
|
+
}
|
|
8
|
+
for (const connection of ['firstChild', 'lastChild', 'previousSibling', 'nextSibling', 'parent']) {
|
|
9
|
+
const connectedNode = self[connection];
|
|
10
|
+
if (connectedNode && connectedNode.state !== 'connected') {
|
|
11
|
+
throw new Error(`Expected node ${self.id}'s ${connection} to be connected, not ${connectedNode.state}`);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
const self = {
|
|
16
|
+
after(node) {
|
|
17
|
+
var _a;
|
|
18
|
+
node.parent = self.parent;
|
|
19
|
+
node.previousSibling = self;
|
|
20
|
+
if (self.nextSibling) {
|
|
21
|
+
self.nextSibling.previousSibling = node;
|
|
22
|
+
}
|
|
23
|
+
node.nextSibling = self.nextSibling;
|
|
24
|
+
self.nextSibling = node;
|
|
25
|
+
if (((_a = self.parent) === null || _a === void 0 ? void 0 : _a.lastChild) === self) {
|
|
26
|
+
self.parent.lastChild = node;
|
|
27
|
+
}
|
|
28
|
+
document.onNodeConnected(node, self.parent);
|
|
29
|
+
assertConnectedCorrectly();
|
|
30
|
+
},
|
|
31
|
+
appendChild(node) {
|
|
32
|
+
if (self.lastChild) {
|
|
33
|
+
self.lastChild.after(node);
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
36
|
+
node.parent = self;
|
|
37
|
+
self.firstChild = node;
|
|
38
|
+
self.lastChild = node;
|
|
39
|
+
document.onNodeConnected(node, self);
|
|
40
|
+
assertConnectedCorrectly();
|
|
41
|
+
},
|
|
42
|
+
before(node) {
|
|
43
|
+
var _a;
|
|
44
|
+
node.parent = self.parent;
|
|
45
|
+
node.nextSibling = self;
|
|
46
|
+
if (self.previousSibling) {
|
|
47
|
+
self.previousSibling.nextSibling = node;
|
|
48
|
+
}
|
|
49
|
+
node.previousSibling = self.previousSibling;
|
|
50
|
+
self.previousSibling = node;
|
|
51
|
+
if (((_a = self.parent) === null || _a === void 0 ? void 0 : _a.firstChild) === self) {
|
|
52
|
+
self.parent.firstChild = node;
|
|
53
|
+
}
|
|
54
|
+
document.onNodeConnected(node, self.parent);
|
|
55
|
+
assertConnectedCorrectly();
|
|
56
|
+
},
|
|
57
|
+
remove() {
|
|
58
|
+
var _a, _b;
|
|
59
|
+
if (self.state === 'disconnected') {
|
|
60
|
+
return; // This is a redundant remove.
|
|
61
|
+
}
|
|
62
|
+
if (((_a = self.parent) === null || _a === void 0 ? void 0 : _a.firstChild) === self) {
|
|
63
|
+
self.parent.firstChild = self.nextSibling;
|
|
64
|
+
}
|
|
65
|
+
if (((_b = self.parent) === null || _b === void 0 ? void 0 : _b.lastChild) === self) {
|
|
66
|
+
self.parent.lastChild = self.previousSibling;
|
|
67
|
+
}
|
|
68
|
+
if (self.previousSibling) {
|
|
69
|
+
self.previousSibling.nextSibling = self.nextSibling;
|
|
70
|
+
}
|
|
71
|
+
if (self.nextSibling) {
|
|
72
|
+
self.nextSibling.previousSibling = self.previousSibling;
|
|
73
|
+
}
|
|
74
|
+
const parent = self.parent;
|
|
75
|
+
self.parent = undefined;
|
|
76
|
+
self.previousSibling = undefined;
|
|
77
|
+
self.nextSibling = undefined;
|
|
78
|
+
document.onNodeDisconnected(self, parent);
|
|
79
|
+
},
|
|
80
|
+
setAttachedStyleSheets(sheets) {
|
|
81
|
+
assertConnectedCorrectly();
|
|
82
|
+
switch (data.kind) {
|
|
83
|
+
case '#document':
|
|
84
|
+
case '#document-fragment':
|
|
85
|
+
case '#element':
|
|
86
|
+
case '#shadow-root':
|
|
87
|
+
data.attachedStyleSheets = sheets;
|
|
88
|
+
break;
|
|
89
|
+
default:
|
|
90
|
+
throw new Error(`Cannot attach stylesheets to ${data.kind} node ${id}`);
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
setAttribute(name, value) {
|
|
94
|
+
assertConnectedCorrectly();
|
|
95
|
+
if (data.kind !== '#element') {
|
|
96
|
+
throw new Error(`Cannot set attribute ${name} on ${data.kind} node ${id}`);
|
|
97
|
+
}
|
|
98
|
+
if (value === null) {
|
|
99
|
+
delete data.attributes[name];
|
|
100
|
+
}
|
|
101
|
+
else {
|
|
102
|
+
data.attributes[name] = value;
|
|
103
|
+
}
|
|
104
|
+
document.onAttributeChanged(self, name);
|
|
105
|
+
},
|
|
106
|
+
setPlaybackState(state) {
|
|
107
|
+
assertConnectedCorrectly();
|
|
108
|
+
if (data.kind !== '#element') {
|
|
109
|
+
throw new Error(`Cannot set media playback state of ${data.kind} node ${id}`);
|
|
110
|
+
}
|
|
111
|
+
data.playbackState = state;
|
|
112
|
+
},
|
|
113
|
+
setScrollPosition(left, top) {
|
|
114
|
+
assertConnectedCorrectly();
|
|
115
|
+
if (data.kind !== '#document' && data.kind !== '#element') {
|
|
116
|
+
throw new Error(`Cannot set scroll position on ${data.kind} node ${id}`);
|
|
117
|
+
}
|
|
118
|
+
// Treat zero coordinates as 'not scrolled' unless this element has scrolled in the past.
|
|
119
|
+
if (left !== 0 || data.scrollLeft !== undefined) {
|
|
120
|
+
data.scrollLeft = left;
|
|
121
|
+
}
|
|
122
|
+
if (top !== 0 || data.scrollTop !== undefined) {
|
|
123
|
+
data.scrollTop = top;
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
setSize(width, height) {
|
|
127
|
+
assertConnectedCorrectly();
|
|
128
|
+
if (data.kind !== '#element') {
|
|
129
|
+
throw new Error(`Cannot set size of ${data.kind} node ${id}`);
|
|
130
|
+
}
|
|
131
|
+
data.width = width;
|
|
132
|
+
data.height = height;
|
|
133
|
+
},
|
|
134
|
+
setTextContent(value) {
|
|
135
|
+
assertConnectedCorrectly();
|
|
136
|
+
if (data.kind !== '#text') {
|
|
137
|
+
throw new Error(`Cannot set text on ${data.kind} node ${id}`);
|
|
138
|
+
}
|
|
139
|
+
data.textContent = value;
|
|
140
|
+
document.onTextChanged(self);
|
|
141
|
+
},
|
|
142
|
+
forEachAddedNodeRoot(nodeAdds, action) {
|
|
143
|
+
if (nodeAdds.has(id)) {
|
|
144
|
+
// This is the root of a newly-added subtree.
|
|
145
|
+
action(self);
|
|
146
|
+
return;
|
|
147
|
+
}
|
|
148
|
+
// This is an existing node, but there may be new nodes among our descendants. Visit
|
|
149
|
+
// children in reverse order to match the ordering that the V1 serialization
|
|
150
|
+
// algorithm would use.
|
|
151
|
+
for (let child = self.lastChild; child; child = child.previousSibling) {
|
|
152
|
+
child.forEachAddedNodeRoot(nodeAdds, action);
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
forSelfAndEachDescendant(action) {
|
|
156
|
+
action(self);
|
|
157
|
+
for (let child = self.firstChild; child; child = child.nextSibling) {
|
|
158
|
+
child.forSelfAndEachDescendant(action);
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
mapChildren(action) {
|
|
162
|
+
const results = [];
|
|
163
|
+
for (let child = self.firstChild; child; child = child.nextSibling) {
|
|
164
|
+
results.push(action(child));
|
|
165
|
+
}
|
|
166
|
+
return results;
|
|
167
|
+
},
|
|
168
|
+
render(options) {
|
|
169
|
+
var _a, _b, _c, _d, _e;
|
|
170
|
+
assertConnectedCorrectly();
|
|
171
|
+
const id = (_b = (_a = options.nodeIdRemapper) === null || _a === void 0 ? void 0 : _a.remap(self.id)) !== null && _b !== void 0 ? _b : self.id;
|
|
172
|
+
switch (data.kind) {
|
|
173
|
+
case '#cdata-section':
|
|
174
|
+
return {
|
|
175
|
+
type: NodeType.CDATA,
|
|
176
|
+
id,
|
|
177
|
+
textContent: '',
|
|
178
|
+
};
|
|
179
|
+
case '#doctype':
|
|
180
|
+
return {
|
|
181
|
+
type: NodeType.DocumentType,
|
|
182
|
+
id,
|
|
183
|
+
name: data.name,
|
|
184
|
+
publicId: data.publicId,
|
|
185
|
+
systemId: data.systemId,
|
|
186
|
+
};
|
|
187
|
+
case '#document':
|
|
188
|
+
return {
|
|
189
|
+
type: NodeType.Document,
|
|
190
|
+
id,
|
|
191
|
+
childNodes: self.mapChildren((node) => node.render(options)),
|
|
192
|
+
adoptedStyleSheets: (_c = data.attachedStyleSheets) === null || _c === void 0 ? void 0 : _c.map((sheet) => sheet.renderAsAdoptedStyleSheet()),
|
|
193
|
+
};
|
|
194
|
+
case '#document-fragment':
|
|
195
|
+
return {
|
|
196
|
+
type: NodeType.DocumentFragment,
|
|
197
|
+
id,
|
|
198
|
+
childNodes: self.mapChildren((node) => node.render(options)),
|
|
199
|
+
adoptedStyleSheets: (_d = data.attachedStyleSheets) === null || _d === void 0 ? void 0 : _d.map((sheet) => sheet.renderAsAdoptedStyleSheet()),
|
|
200
|
+
isShadowRoot: false,
|
|
201
|
+
};
|
|
202
|
+
case '#element': {
|
|
203
|
+
const attributes = {};
|
|
204
|
+
// Add size-related virtual attributes before the real DOM attributes, to match
|
|
205
|
+
// the ordering used in the V1 format.
|
|
206
|
+
if (data.width !== undefined && data.height !== undefined) {
|
|
207
|
+
attributes.rr_width = `${data.width}px`;
|
|
208
|
+
attributes.rr_height = `${data.height}px`;
|
|
209
|
+
}
|
|
210
|
+
// Add DOM attributes.
|
|
211
|
+
Object.assign(attributes, data.attributes);
|
|
212
|
+
// Add other virtual attributes after the real DOM attributes, to match the
|
|
213
|
+
// ordering used in the V1 format.
|
|
214
|
+
if (data.attachedStyleSheets !== undefined) {
|
|
215
|
+
attributes._cssText = data.attachedStyleSheets.map((sheet) => sheet.renderAsCssText()).join('');
|
|
216
|
+
}
|
|
217
|
+
if (data.playbackState !== undefined) {
|
|
218
|
+
attributes.rr_mediaState = data.playbackState === PlaybackState.Paused ? 'paused' : 'played';
|
|
219
|
+
}
|
|
220
|
+
if (data.scrollLeft) {
|
|
221
|
+
attributes.rr_scrollLeft = data.scrollLeft;
|
|
222
|
+
}
|
|
223
|
+
if (data.scrollTop) {
|
|
224
|
+
attributes.rr_scrollTop = data.scrollTop;
|
|
225
|
+
}
|
|
226
|
+
return {
|
|
227
|
+
type: NodeType.Element,
|
|
228
|
+
id,
|
|
229
|
+
tagName: data.tag,
|
|
230
|
+
attributes,
|
|
231
|
+
childNodes: self.mapChildren((node) => node.render(options)),
|
|
232
|
+
isSVG: data.isSVG === true ? true : undefined,
|
|
233
|
+
};
|
|
234
|
+
}
|
|
235
|
+
case '#shadow-root':
|
|
236
|
+
return {
|
|
237
|
+
type: NodeType.DocumentFragment,
|
|
238
|
+
id,
|
|
239
|
+
childNodes: self.mapChildren((node) => node.render(options)),
|
|
240
|
+
adoptedStyleSheets: (_e = data.attachedStyleSheets) === null || _e === void 0 ? void 0 : _e.map((sheet) => sheet.renderAsAdoptedStyleSheet()),
|
|
241
|
+
isShadowRoot: true,
|
|
242
|
+
};
|
|
243
|
+
case '#text':
|
|
244
|
+
return {
|
|
245
|
+
type: NodeType.Text,
|
|
246
|
+
id,
|
|
247
|
+
textContent: data.textContent,
|
|
248
|
+
};
|
|
249
|
+
default:
|
|
250
|
+
data;
|
|
251
|
+
throw new Error(`Rendering not implemented for ${self.data.kind} node ${id}`);
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
get data() {
|
|
255
|
+
return data;
|
|
256
|
+
},
|
|
257
|
+
get ownerDocument() {
|
|
258
|
+
return document;
|
|
259
|
+
},
|
|
260
|
+
get id() {
|
|
261
|
+
return id;
|
|
262
|
+
},
|
|
263
|
+
get state() {
|
|
264
|
+
return state;
|
|
265
|
+
},
|
|
266
|
+
set state(value) {
|
|
267
|
+
if ((state === 'new' && value !== 'connected') ||
|
|
268
|
+
(state === 'connected' && value !== 'disconnected') ||
|
|
269
|
+
state === 'disconnected') {
|
|
270
|
+
throw new Error(`Invalid state transition from ${state} to ${value}`);
|
|
271
|
+
}
|
|
272
|
+
state = value;
|
|
273
|
+
},
|
|
274
|
+
firstChild: undefined,
|
|
275
|
+
lastChild: undefined,
|
|
276
|
+
previousSibling: undefined,
|
|
277
|
+
nextSibling: undefined,
|
|
278
|
+
parent: undefined,
|
|
279
|
+
};
|
|
280
|
+
return self;
|
|
281
|
+
}
|
|
282
|
+
//# sourceMappingURL=vNode.js.map
|