@multiplayer-app/session-recorder-react-native 1.0.1-beta.3 → 1.0.1-beta.4
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 +1 -2
- package/README.md +216 -155
- package/SessionRecorderNative.podspec +9 -14
- package/android/build.gradle +21 -44
- package/android/gradle.properties +4 -4
- package/android/src/main/AndroidManifest.xml +2 -0
- package/android/src/main/java/com/multiplayer/sessionrecordernative/SessionRecorderNativeConfig.kt +52 -0
- package/android/src/main/java/com/multiplayer/sessionrecordernative/SessionRecorderNativeModule.kt +860 -0
- package/android/src/main/java/com/multiplayer/sessionrecordernative/SessionRecorderNativeModuleSpec.kt +51 -0
- package/android/src/main/java/com/multiplayer/sessionrecordernative/SessionRecorderNativePackage.kt +33 -0
- package/android/src/main/java/com/multiplayer/sessionrecordernative/model/TargetInfo.kt +9 -0
- package/android/src/main/java/com/multiplayer/sessionrecordernative/util/ViewUtils.kt +72 -0
- package/android/src/main/java/com/xxx/XxxModule.kt +23 -0
- package/ios/SessionRecorderNative.podspec +4 -2
- package/ios/SessionRecorderNative.swift +1 -1
- package/ios/SessionRecorderNativeSpec.swift +3 -3
- package/ios/Xxx.h +5 -0
- package/ios/Xxx.mm +21 -0
- package/lib/module/components/ScreenRecorderView/ScreenRecorderView.js +23 -0
- package/lib/module/components/ScreenRecorderView/ScreenRecorderView.js.map +1 -0
- package/lib/module/components/ScreenRecorderView/index.js +4 -0
- package/lib/module/components/ScreenRecorderView/index.js.map +1 -0
- package/lib/module/components/SessionRecorderWidget/ErrorBanner.js +64 -0
- package/lib/module/components/SessionRecorderWidget/ErrorBanner.js.map +1 -0
- package/lib/module/components/SessionRecorderWidget/FinalPopover.js +74 -0
- package/lib/module/components/SessionRecorderWidget/FinalPopover.js.map +1 -0
- package/lib/module/components/SessionRecorderWidget/FloatingButton.js +191 -0
- package/lib/module/components/SessionRecorderWidget/FloatingButton.js.map +1 -0
- package/lib/module/components/SessionRecorderWidget/InitialPopover.js +138 -0
- package/lib/module/components/SessionRecorderWidget/InitialPopover.js.map +1 -0
- package/lib/module/components/SessionRecorderWidget/ModalContainer.js +177 -0
- package/lib/module/components/SessionRecorderWidget/ModalContainer.js.map +1 -0
- package/lib/module/components/SessionRecorderWidget/ModalHeader.js +27 -0
- package/lib/module/components/SessionRecorderWidget/ModalHeader.js.map +1 -0
- package/lib/module/components/SessionRecorderWidget/SessionRecorderWidget.js +133 -0
- package/lib/module/components/SessionRecorderWidget/SessionRecorderWidget.js.map +1 -0
- package/lib/module/components/SessionRecorderWidget/icons.js +93 -0
- package/lib/module/components/SessionRecorderWidget/icons.js.map +1 -0
- package/lib/module/components/SessionRecorderWidget/index.js +5 -0
- package/lib/module/components/SessionRecorderWidget/index.js.map +1 -0
- package/lib/module/components/SessionRecorderWidget/styles.js +173 -0
- package/lib/module/components/SessionRecorderWidget/styles.js.map +1 -0
- package/lib/module/components/index.js +5 -0
- package/lib/module/components/index.js.map +1 -0
- package/lib/module/config/constants.js +42 -0
- package/lib/module/config/constants.js.map +1 -0
- package/lib/module/config/defaults.js +81 -0
- package/lib/module/config/defaults.js.map +1 -0
- package/lib/module/config/index.js +9 -0
- package/lib/module/config/index.js.map +1 -0
- package/lib/module/config/masking.js +35 -0
- package/lib/module/config/masking.js.map +1 -0
- package/lib/module/config/session-recorder.js +44 -0
- package/lib/module/config/session-recorder.js.map +1 -0
- package/lib/module/config/validators.js +28 -0
- package/lib/module/config/validators.js.map +1 -0
- package/lib/module/config/widget.js +35 -0
- package/lib/module/config/widget.js.map +1 -0
- package/lib/module/context/SessionRecorderContext.js +93 -0
- package/lib/module/context/SessionRecorderContext.js.map +1 -0
- package/lib/module/context/SessionRecorderStore.js +12 -0
- package/lib/module/context/SessionRecorderStore.js.map +1 -0
- package/lib/module/context/useSessionRecorderStore.js +20 -0
- package/lib/module/context/useSessionRecorderStore.js.map +1 -0
- package/lib/module/context/useStoreSelector.js +27 -0
- package/lib/module/context/useStoreSelector.js.map +1 -0
- package/lib/module/index.js +13 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/native/SessionRecorderNative.js +74 -0
- package/lib/module/native/SessionRecorderNative.js.map +1 -0
- package/lib/module/native/index.js +4 -0
- package/lib/module/native/index.js.map +1 -0
- package/lib/module/otel/helpers.js +218 -0
- package/lib/module/otel/helpers.js.map +1 -0
- package/lib/module/otel/index.js +95 -0
- package/lib/module/otel/index.js.map +1 -0
- package/lib/module/otel/instrumentations/index.js +102 -0
- package/lib/module/otel/instrumentations/index.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/module/patch/index.js +4 -0
- package/lib/module/patch/index.js.map +1 -0
- package/lib/module/patch/xhr.js +116 -0
- package/lib/module/patch/xhr.js.map +1 -0
- package/lib/module/recorder/eventExporter.js +130 -0
- package/lib/module/recorder/eventExporter.js.map +1 -0
- package/lib/module/recorder/gestureRecorder.js +641 -0
- package/lib/module/recorder/gestureRecorder.js.map +1 -0
- package/lib/module/recorder/index.js +168 -0
- package/lib/module/recorder/index.js.map +1 -0
- package/lib/module/recorder/navigationTracker.js +228 -0
- package/lib/module/recorder/navigationTracker.js.map +1 -0
- package/lib/module/recorder/screenRecorder.js +495 -0
- package/lib/module/recorder/screenRecorder.js.map +1 -0
- package/lib/module/services/api.service.js +149 -0
- package/lib/module/services/api.service.js.map +1 -0
- package/lib/module/services/network.service.js +178 -0
- package/lib/module/services/network.service.js.map +1 -0
- package/lib/module/services/screenMaskingService.js +107 -0
- package/lib/module/services/screenMaskingService.js.map +1 -0
- package/lib/module/services/storage.service.js +179 -0
- package/lib/module/services/storage.service.js.map +1 -0
- package/lib/module/session-recorder.js +541 -0
- package/lib/module/session-recorder.js.map +1 -0
- package/lib/module/types/configs.js +4 -0
- package/lib/module/types/configs.js.map +1 -0
- package/lib/module/types/expo-constants.d.js +2 -0
- package/lib/module/types/expo-constants.d.js.map +1 -0
- package/lib/module/types/index.js +11 -0
- package/lib/module/types/index.js.map +1 -0
- package/lib/module/types/session-recorder.js +68 -0
- package/lib/module/types/session-recorder.js.map +1 -0
- package/lib/module/types/session.js +9 -0
- package/lib/module/types/session.js.map +1 -0
- package/lib/module/utils/app-metadata.js +28 -0
- package/lib/module/utils/app-metadata.js.map +1 -0
- package/lib/module/utils/constants.optional.expo.js +6 -0
- package/lib/module/utils/constants.optional.expo.js.map +1 -0
- package/lib/module/utils/constants.optional.js +8 -0
- package/lib/module/utils/constants.optional.js.map +1 -0
- package/lib/module/utils/createStore.js +27 -0
- package/lib/module/utils/createStore.js.map +1 -0
- package/lib/module/utils/index.js +11 -0
- package/lib/module/utils/index.js.map +1 -0
- package/lib/module/utils/logger.js +193 -0
- package/lib/module/utils/logger.js.map +1 -0
- package/lib/module/utils/platform.js +340 -0
- package/lib/module/utils/platform.js.map +1 -0
- package/lib/module/utils/request-utils.js +58 -0
- package/lib/module/utils/request-utils.js.map +1 -0
- package/lib/module/utils/rrweb-events.js +276 -0
- package/lib/module/utils/rrweb-events.js.map +1 -0
- package/lib/module/utils/session.js +21 -0
- package/lib/module/utils/session.js.map +1 -0
- package/lib/module/utils/shallowEqual.js +17 -0
- package/lib/module/utils/shallowEqual.js.map +1 -0
- package/lib/module/utils/time.js +17 -0
- package/lib/module/utils/time.js.map +1 -0
- package/lib/module/utils/type-utils.js +69 -0
- package/lib/module/utils/type-utils.js.map +1 -0
- package/lib/module/version.js +4 -0
- package/lib/module/version.js.map +1 -0
- package/lib/typescript/package.json +1 -0
- package/lib/typescript/src/components/ScreenRecorderView/ScreenRecorderView.d.ts +6 -0
- package/lib/typescript/src/components/ScreenRecorderView/ScreenRecorderView.d.ts.map +1 -0
- package/lib/typescript/src/components/ScreenRecorderView/index.d.ts +2 -0
- package/lib/typescript/src/components/ScreenRecorderView/index.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/components/SessionRecorderWidget/ErrorBanner.d.ts +1 -0
- package/lib/typescript/src/components/SessionRecorderWidget/ErrorBanner.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/components/SessionRecorderWidget/FinalPopover.d.ts +2 -1
- package/lib/typescript/src/components/SessionRecorderWidget/FinalPopover.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/components/SessionRecorderWidget/FloatingButton.d.ts +1 -0
- package/lib/typescript/src/components/SessionRecorderWidget/FloatingButton.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/components/SessionRecorderWidget/InitialPopover.d.ts +2 -1
- package/lib/typescript/src/components/SessionRecorderWidget/InitialPopover.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/components/SessionRecorderWidget/ModalContainer.d.ts +1 -0
- package/lib/typescript/src/components/SessionRecorderWidget/ModalContainer.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/components/SessionRecorderWidget/ModalHeader.d.ts +1 -0
- package/lib/typescript/src/components/SessionRecorderWidget/ModalHeader.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/components/SessionRecorderWidget/SessionRecorderWidget.d.ts +1 -0
- package/lib/typescript/src/components/SessionRecorderWidget/SessionRecorderWidget.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/components/SessionRecorderWidget/icons.d.ts +1 -0
- package/lib/typescript/src/components/SessionRecorderWidget/icons.d.ts.map +1 -0
- package/lib/typescript/src/components/SessionRecorderWidget/index.d.ts +3 -0
- package/lib/typescript/src/components/SessionRecorderWidget/index.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/components/SessionRecorderWidget/styles.d.ts +4 -3
- package/lib/typescript/src/components/SessionRecorderWidget/styles.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/components/index.d.ts +1 -0
- package/lib/typescript/src/components/index.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/config/constants.d.ts +1 -0
- package/lib/typescript/src/config/constants.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/config/defaults.d.ts +2 -1
- package/lib/typescript/src/config/defaults.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/config/index.d.ts +1 -0
- package/lib/typescript/src/config/index.d.ts.map +1 -0
- package/lib/typescript/src/config/masking.d.ts +3 -0
- package/lib/typescript/src/config/masking.d.ts.map +1 -0
- package/lib/typescript/src/config/session-recorder.d.ts +3 -0
- package/lib/typescript/src/config/session-recorder.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/config/validators.d.ts +1 -0
- package/lib/typescript/src/config/validators.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/config/widget.d.ts +2 -1
- package/lib/typescript/src/config/widget.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/context/SessionRecorderContext.d.ts +3 -2
- package/lib/typescript/src/context/SessionRecorderContext.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/context/SessionRecorderStore.d.ts +2 -1
- package/lib/typescript/src/context/SessionRecorderStore.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/context/useSessionRecorderStore.d.ts +2 -1
- package/lib/typescript/src/context/useSessionRecorderStore.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/context/useStoreSelector.d.ts +2 -1
- package/lib/typescript/src/context/useStoreSelector.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/index.d.ts +1 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/native/SessionRecorderNative.d.ts +21 -3
- package/lib/typescript/src/native/SessionRecorderNative.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/native/index.d.ts +1 -0
- package/lib/typescript/src/native/index.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/otel/helpers.d.ts +3 -2
- package/lib/typescript/src/otel/helpers.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/otel/index.d.ts +2 -2
- package/lib/typescript/src/otel/index.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/otel/instrumentations/index.d.ts +2 -1
- package/lib/typescript/src/otel/instrumentations/index.d.ts.map +1 -0
- package/lib/typescript/src/patch/index.d.ts +2 -0
- package/lib/typescript/src/patch/index.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/patch/xhr.d.ts +1 -0
- package/lib/typescript/src/patch/xhr.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/recorder/eventExporter.d.ts +2 -1
- package/lib/typescript/src/recorder/eventExporter.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/recorder/gestureRecorder.d.ts +3 -2
- package/lib/typescript/src/recorder/gestureRecorder.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/recorder/index.d.ts +3 -2
- package/lib/typescript/src/recorder/index.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/recorder/navigationTracker.d.ts +2 -1
- package/lib/typescript/src/recorder/navigationTracker.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/recorder/screenRecorder.d.ts +4 -4
- package/lib/typescript/src/recorder/screenRecorder.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/services/api.service.d.ts +2 -1
- package/lib/typescript/src/services/api.service.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/services/network.service.d.ts +1 -0
- package/lib/typescript/src/services/network.service.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/services/screenMaskingService.d.ts +2 -1
- package/lib/typescript/src/services/screenMaskingService.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/services/storage.service.d.ts +2 -1
- package/lib/typescript/src/services/storage.service.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/session-recorder.d.ts +3 -2
- package/lib/typescript/src/session-recorder.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/types/configs.d.ts +3 -2
- package/lib/typescript/src/types/configs.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/types/index.d.ts +1 -0
- package/lib/typescript/src/types/index.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/types/session-recorder.d.ts +3 -2
- package/lib/typescript/src/types/session-recorder.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/types/session.d.ts +1 -0
- package/lib/typescript/src/types/session.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/app-metadata.d.ts +1 -0
- package/lib/typescript/src/utils/app-metadata.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/constants.optional.d.ts +1 -0
- package/lib/typescript/src/utils/constants.optional.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/constants.optional.expo.d.ts +1 -0
- package/lib/typescript/src/utils/constants.optional.expo.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/createStore.d.ts +1 -0
- package/lib/typescript/src/utils/createStore.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/index.d.ts +1 -0
- package/lib/typescript/src/utils/index.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/logger.d.ts +1 -0
- package/lib/typescript/src/utils/logger.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/platform.d.ts +2 -1
- package/lib/typescript/src/utils/platform.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/request-utils.d.ts +1 -0
- package/lib/typescript/src/utils/request-utils.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/rrweb-events.d.ts +2 -1
- package/lib/typescript/src/utils/rrweb-events.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/session.d.ts +1 -0
- package/lib/typescript/src/utils/session.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/shallowEqual.d.ts +1 -0
- package/lib/typescript/src/utils/shallowEqual.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/time.d.ts +1 -0
- package/lib/typescript/src/utils/time.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/utils/type-utils.d.ts +1 -0
- package/lib/typescript/src/utils/type-utils.d.ts.map +1 -0
- package/{dist → lib/typescript/src}/version.d.ts +1 -0
- package/lib/typescript/src/version.d.ts.map +1 -0
- package/package.json +133 -44
- package/src/components/ScreenRecorderView/ScreenRecorderView.tsx +20 -0
- package/src/components/SessionRecorderWidget/ErrorBanner.tsx +58 -0
- package/src/components/SessionRecorderWidget/FinalPopover.tsx +96 -0
- package/src/components/SessionRecorderWidget/FloatingButton.tsx +176 -0
- package/src/components/SessionRecorderWidget/InitialPopover.tsx +167 -0
- package/src/components/SessionRecorderWidget/ModalContainer.tsx +189 -0
- package/src/components/SessionRecorderWidget/ModalHeader.tsx +24 -0
- package/src/components/SessionRecorderWidget/SessionRecorderWidget.tsx +136 -0
- package/src/components/SessionRecorderWidget/icons.tsx +52 -0
- package/{dist/components/SessionRecorderWidget/index.d.ts → src/components/SessionRecorderWidget/index.ts} +1 -0
- package/src/components/SessionRecorderWidget/styles.ts +169 -0
- package/src/components/index.ts +2 -0
- package/src/config/constants.ts +68 -0
- package/src/config/defaults.ts +101 -0
- package/src/config/index.ts +6 -0
- package/src/config/masking.ts +34 -0
- package/src/config/session-recorder.ts +59 -0
- package/src/config/validators.ts +31 -0
- package/src/config/widget.ts +38 -0
- package/src/context/SessionRecorderContext.tsx +138 -0
- package/src/context/SessionRecorderStore.ts +21 -0
- package/src/context/useSessionRecorderStore.ts +27 -0
- package/src/context/useStoreSelector.ts +34 -0
- package/src/index.ts +10 -0
- package/src/native/SessionRecorderNative.ts +164 -0
- package/src/native/index.ts +1 -0
- package/src/otel/helpers.ts +274 -0
- package/src/otel/index.ts +135 -0
- package/src/otel/instrumentations/index.ts +115 -0
- package/src/patch/index.ts +1 -0
- package/src/patch/xhr.ts +149 -0
- package/src/recorder/eventExporter.ts +155 -0
- package/src/recorder/gestureRecorder.ts +681 -0
- package/src/recorder/index.ts +190 -0
- package/src/recorder/navigationTracker.ts +245 -0
- package/src/recorder/screenRecorder.ts +549 -0
- package/src/services/api.service.ts +215 -0
- package/src/services/network.service.ts +182 -0
- package/src/services/screenMaskingService.ts +122 -0
- package/src/services/storage.service.ts +219 -0
- package/src/session-recorder.ts +591 -0
- package/src/types/configs.ts +96 -0
- package/src/types/expo-constants.d.ts +7 -0
- package/src/types/index.ts +29 -0
- package/src/types/session-recorder.ts +386 -0
- package/src/types/session.ts +65 -0
- package/src/utils/app-metadata.ts +31 -0
- package/src/utils/constants.optional.expo.ts +5 -0
- package/src/utils/constants.optional.ts +16 -0
- package/src/utils/createStore.ts +29 -0
- package/src/utils/index.ts +8 -0
- package/src/utils/logger.ts +216 -0
- package/src/utils/platform.ts +370 -0
- package/src/utils/request-utils.ts +61 -0
- package/src/utils/rrweb-events.ts +316 -0
- package/src/utils/session.ts +19 -0
- package/src/utils/shallowEqual.ts +14 -0
- package/src/utils/time.ts +17 -0
- package/src/utils/type-utils.ts +75 -0
- package/src/version.ts +1 -0
- package/REACT_NATIVE_SETUP.md +0 -91
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +0 -7
- package/android/gradlew +0 -249
- package/android/gradlew.bat +0 -92
- package/copy-react-native-dist.sh +0 -56
- package/dist/components/ScreenRecorderView/ScreenRecorderView.d.ts +0 -5
- package/dist/components/ScreenRecorderView/ScreenRecorderView.js +0 -1
- package/dist/components/ScreenRecorderView/ScreenRecorderView.js.map +0 -1
- package/dist/components/ScreenRecorderView/index.js +0 -1
- package/dist/components/ScreenRecorderView/index.js.map +0 -1
- package/dist/components/SessionRecorderWidget/ErrorBanner.js +0 -1
- package/dist/components/SessionRecorderWidget/ErrorBanner.js.map +0 -1
- package/dist/components/SessionRecorderWidget/FinalPopover.js +0 -1
- package/dist/components/SessionRecorderWidget/FinalPopover.js.map +0 -1
- package/dist/components/SessionRecorderWidget/FloatingButton.js +0 -1
- package/dist/components/SessionRecorderWidget/FloatingButton.js.map +0 -1
- package/dist/components/SessionRecorderWidget/InitialPopover.js +0 -1
- package/dist/components/SessionRecorderWidget/InitialPopover.js.map +0 -1
- package/dist/components/SessionRecorderWidget/ModalContainer.js +0 -1
- package/dist/components/SessionRecorderWidget/ModalContainer.js.map +0 -1
- package/dist/components/SessionRecorderWidget/ModalHeader.js +0 -1
- package/dist/components/SessionRecorderWidget/ModalHeader.js.map +0 -1
- package/dist/components/SessionRecorderWidget/SessionRecorderWidget.js +0 -1
- package/dist/components/SessionRecorderWidget/SessionRecorderWidget.js.map +0 -1
- package/dist/components/SessionRecorderWidget/icons.js +0 -1
- package/dist/components/SessionRecorderWidget/icons.js.map +0 -1
- package/dist/components/SessionRecorderWidget/index.js +0 -1
- package/dist/components/SessionRecorderWidget/index.js.map +0 -1
- package/dist/components/SessionRecorderWidget/styles.js +0 -1
- package/dist/components/SessionRecorderWidget/styles.js.map +0 -1
- package/dist/components/index.js +0 -1
- package/dist/components/index.js.map +0 -1
- package/dist/config/constants.js +0 -1
- package/dist/config/constants.js.map +0 -1
- package/dist/config/defaults.js +0 -1
- package/dist/config/defaults.js.map +0 -1
- package/dist/config/index.js +0 -1
- package/dist/config/index.js.map +0 -1
- package/dist/config/masking.d.ts +0 -2
- package/dist/config/masking.js +0 -1
- package/dist/config/masking.js.map +0 -1
- package/dist/config/session-recorder.d.ts +0 -2
- package/dist/config/session-recorder.js +0 -1
- package/dist/config/session-recorder.js.map +0 -1
- package/dist/config/validators.js +0 -1
- package/dist/config/validators.js.map +0 -1
- package/dist/config/widget.js +0 -1
- package/dist/config/widget.js.map +0 -1
- package/dist/context/SessionRecorderContext.js +0 -1
- package/dist/context/SessionRecorderContext.js.map +0 -1
- package/dist/context/SessionRecorderStore.js +0 -1
- package/dist/context/SessionRecorderStore.js.map +0 -1
- package/dist/context/useSessionRecorderStore.js +0 -1
- package/dist/context/useSessionRecorderStore.js.map +0 -1
- package/dist/context/useStoreSelector.js +0 -1
- package/dist/context/useStoreSelector.js.map +0 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +0 -1
- package/dist/native/GestureRecorderNative.d.ts +0 -57
- package/dist/native/GestureRecorderNative.js +0 -1
- package/dist/native/GestureRecorderNative.js.map +0 -1
- package/dist/native/GestureRecorderNativeTurboSpec.d.ts +0 -31
- package/dist/native/GestureRecorderNativeTurboSpec.js +0 -1
- package/dist/native/GestureRecorderNativeTurboSpec.js.map +0 -1
- package/dist/native/SessionRecorderNative.js +0 -1
- package/dist/native/SessionRecorderNative.js.map +0 -1
- package/dist/native/SessionRecorderNativeTurboSpec.d.ts +0 -17
- package/dist/native/SessionRecorderNativeTurboSpec.js +0 -1
- package/dist/native/SessionRecorderNativeTurboSpec.js.map +0 -1
- package/dist/native/index.js +0 -1
- package/dist/native/index.js.map +0 -1
- package/dist/otel/helpers.js +0 -1
- package/dist/otel/helpers.js.map +0 -1
- package/dist/otel/index.js +0 -1
- package/dist/otel/index.js.map +0 -1
- package/dist/otel/instrumentations/index.js +0 -1
- package/dist/otel/instrumentations/index.js.map +0 -1
- package/dist/patch/index.d.ts +0 -1
- package/dist/patch/index.js +0 -1
- package/dist/patch/index.js.map +0 -1
- package/dist/patch/xhr.js +0 -1
- package/dist/patch/xhr.js.map +0 -1
- package/dist/recorder/eventExporter.js +0 -1
- package/dist/recorder/eventExporter.js.map +0 -1
- package/dist/recorder/gestureRecorder.js +0 -1
- package/dist/recorder/gestureRecorder.js.map +0 -1
- package/dist/recorder/index.js +0 -1
- package/dist/recorder/index.js.map +0 -1
- package/dist/recorder/navigationTracker.js +0 -1
- package/dist/recorder/navigationTracker.js.map +0 -1
- package/dist/recorder/screenRecorder.js +0 -1
- package/dist/recorder/screenRecorder.js.map +0 -1
- package/dist/services/api.service.js +0 -1
- package/dist/services/api.service.js.map +0 -1
- package/dist/services/network.service.js +0 -1
- package/dist/services/network.service.js.map +0 -1
- package/dist/services/screenMaskingService.js +0 -1
- package/dist/services/screenMaskingService.js.map +0 -1
- package/dist/services/storage.service.js +0 -1
- package/dist/services/storage.service.js.map +0 -1
- package/dist/session-recorder.js +0 -1
- package/dist/session-recorder.js.map +0 -1
- package/dist/types/configs.js +0 -1
- package/dist/types/configs.js.map +0 -1
- package/dist/types/index.js +0 -1
- package/dist/types/index.js.map +0 -1
- package/dist/types/session-recorder.js +0 -1
- package/dist/types/session-recorder.js.map +0 -1
- package/dist/types/session.js +0 -1
- package/dist/types/session.js.map +0 -1
- package/dist/utils/app-metadata.js +0 -1
- package/dist/utils/app-metadata.js.map +0 -1
- package/dist/utils/constants.optional.expo.js +0 -1
- package/dist/utils/constants.optional.expo.js.map +0 -1
- package/dist/utils/constants.optional.js +0 -1
- package/dist/utils/constants.optional.js.map +0 -1
- package/dist/utils/createStore.js +0 -1
- package/dist/utils/createStore.js.map +0 -1
- package/dist/utils/index.js +0 -1
- package/dist/utils/index.js.map +0 -1
- package/dist/utils/logger.js +0 -1
- package/dist/utils/logger.js.map +0 -1
- package/dist/utils/platform.js +0 -1
- package/dist/utils/platform.js.map +0 -1
- package/dist/utils/request-utils.js +0 -1
- package/dist/utils/request-utils.js.map +0 -1
- package/dist/utils/rrweb-events.js +0 -1
- package/dist/utils/rrweb-events.js.map +0 -1
- package/dist/utils/session.js +0 -1
- package/dist/utils/session.js.map +0 -1
- package/dist/utils/shallowEqual.js +0 -1
- package/dist/utils/shallowEqual.js.map +0 -1
- package/dist/utils/time.js +0 -1
- package/dist/utils/time.js.map +0 -1
- package/dist/utils/type-utils.js +0 -1
- package/dist/utils/type-utils.js.map +0 -1
- package/dist/version.js +0 -1
- package/dist/version.js.map +0 -1
- package/docs/AUTO_METADATA_DETECTION.md +0 -108
- package/react-native.config.js +0 -13
- /package/{dist/components/ScreenRecorderView/index.d.ts → src/components/ScreenRecorderView/index.ts} +0 -0
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { StyleSheet } from 'react-native';
|
|
4
|
+
export const sharedStyles = StyleSheet.create({
|
|
5
|
+
// Popover styles
|
|
6
|
+
popoverContent: {
|
|
7
|
+
flex: 1,
|
|
8
|
+
paddingHorizontal: 0
|
|
9
|
+
},
|
|
10
|
+
popoverHeader: {
|
|
11
|
+
flexDirection: 'column',
|
|
12
|
+
paddingBottom: 8,
|
|
13
|
+
paddingHorizontal: 16,
|
|
14
|
+
borderTopLeftRadius: 20,
|
|
15
|
+
borderTopRightRadius: 20,
|
|
16
|
+
backgroundColor: '#f4f9ff',
|
|
17
|
+
shadowColor: '#f4f9ff',
|
|
18
|
+
shadowOffset: {
|
|
19
|
+
width: 0,
|
|
20
|
+
height: 5
|
|
21
|
+
},
|
|
22
|
+
shadowOpacity: 1,
|
|
23
|
+
shadowRadius: 5,
|
|
24
|
+
elevation: 10
|
|
25
|
+
},
|
|
26
|
+
modalHandle: {
|
|
27
|
+
marginTop: 8,
|
|
28
|
+
marginBottom: 16,
|
|
29
|
+
width: 40,
|
|
30
|
+
height: 4,
|
|
31
|
+
backgroundColor: '#D1D5DB',
|
|
32
|
+
borderRadius: 2,
|
|
33
|
+
alignSelf: 'center'
|
|
34
|
+
},
|
|
35
|
+
popoverHeaderContent: {
|
|
36
|
+
flexDirection: 'row',
|
|
37
|
+
justifyContent: 'space-between',
|
|
38
|
+
alignItems: 'flex-start'
|
|
39
|
+
},
|
|
40
|
+
cancelButton: {
|
|
41
|
+
paddingHorizontal: 12,
|
|
42
|
+
paddingVertical: 6,
|
|
43
|
+
borderRadius: 6,
|
|
44
|
+
borderWidth: 1,
|
|
45
|
+
borderColor: '#e1e8f1',
|
|
46
|
+
backgroundColor: '#fff',
|
|
47
|
+
shadowColor: '#000',
|
|
48
|
+
shadowOffset: {
|
|
49
|
+
width: 0,
|
|
50
|
+
height: 2
|
|
51
|
+
},
|
|
52
|
+
shadowOpacity: 0.06,
|
|
53
|
+
shadowRadius: 3,
|
|
54
|
+
elevation: 3
|
|
55
|
+
},
|
|
56
|
+
cancelButtonText: {
|
|
57
|
+
color: '#374151',
|
|
58
|
+
fontSize: 14,
|
|
59
|
+
fontWeight: '500'
|
|
60
|
+
},
|
|
61
|
+
popoverBody: {
|
|
62
|
+
flex: 1,
|
|
63
|
+
padding: 16,
|
|
64
|
+
paddingTop: 24
|
|
65
|
+
},
|
|
66
|
+
title: {
|
|
67
|
+
fontSize: 18,
|
|
68
|
+
fontWeight: '600',
|
|
69
|
+
color: '#2d3748',
|
|
70
|
+
marginBottom: 12
|
|
71
|
+
},
|
|
72
|
+
description: {
|
|
73
|
+
fontSize: 14,
|
|
74
|
+
color: '#718096',
|
|
75
|
+
marginBottom: 16
|
|
76
|
+
},
|
|
77
|
+
popoverFooter: {
|
|
78
|
+
marginTop: 'auto',
|
|
79
|
+
paddingTop: 16
|
|
80
|
+
},
|
|
81
|
+
actionButton: {
|
|
82
|
+
paddingVertical: 16,
|
|
83
|
+
paddingHorizontal: 24,
|
|
84
|
+
borderRadius: 12,
|
|
85
|
+
alignItems: 'center'
|
|
86
|
+
},
|
|
87
|
+
actionButtonText: {
|
|
88
|
+
color: 'white',
|
|
89
|
+
fontSize: 16,
|
|
90
|
+
fontWeight: '500'
|
|
91
|
+
},
|
|
92
|
+
// Continuous recording styles
|
|
93
|
+
continuousRecordingSection: {
|
|
94
|
+
flexDirection: 'row',
|
|
95
|
+
justifyContent: 'space-between',
|
|
96
|
+
alignItems: 'center',
|
|
97
|
+
marginBottom: 20,
|
|
98
|
+
paddingVertical: 12,
|
|
99
|
+
paddingHorizontal: 16,
|
|
100
|
+
borderWidth: 1,
|
|
101
|
+
borderColor: '#e1e8f1',
|
|
102
|
+
backgroundColor: '#fff',
|
|
103
|
+
borderRadius: 12,
|
|
104
|
+
shadowColor: '#000',
|
|
105
|
+
shadowOffset: {
|
|
106
|
+
width: 0,
|
|
107
|
+
height: 2
|
|
108
|
+
},
|
|
109
|
+
shadowOpacity: 0.06,
|
|
110
|
+
shadowRadius: 3,
|
|
111
|
+
elevation: 3
|
|
112
|
+
},
|
|
113
|
+
continuousRecordingLabel: {
|
|
114
|
+
fontSize: 16,
|
|
115
|
+
fontWeight: '500',
|
|
116
|
+
color: '#374151'
|
|
117
|
+
},
|
|
118
|
+
continuousOverlay: {
|
|
119
|
+
borderRadius: 12,
|
|
120
|
+
borderWidth: 1,
|
|
121
|
+
borderColor: '#e1e8f1',
|
|
122
|
+
backgroundColor: '#fff',
|
|
123
|
+
padding: 12,
|
|
124
|
+
shadowColor: '#000',
|
|
125
|
+
shadowOffset: {
|
|
126
|
+
width: 0,
|
|
127
|
+
height: 2
|
|
128
|
+
},
|
|
129
|
+
shadowOpacity: 0.06,
|
|
130
|
+
shadowRadius: 3,
|
|
131
|
+
elevation: 3,
|
|
132
|
+
flexDirection: 'column',
|
|
133
|
+
gap: 8
|
|
134
|
+
},
|
|
135
|
+
continuousOverlayHeader: {
|
|
136
|
+
flexDirection: 'row',
|
|
137
|
+
alignItems: 'center',
|
|
138
|
+
gap: 8
|
|
139
|
+
},
|
|
140
|
+
continuousOverlayTitle: {
|
|
141
|
+
fontSize: 14,
|
|
142
|
+
fontWeight: '500',
|
|
143
|
+
color: '#2d3748'
|
|
144
|
+
},
|
|
145
|
+
continuousOverlayDescription: {
|
|
146
|
+
fontSize: 14,
|
|
147
|
+
color: '#718096',
|
|
148
|
+
lineHeight: 20
|
|
149
|
+
},
|
|
150
|
+
// Comment input styles
|
|
151
|
+
commentInput: {
|
|
152
|
+
borderWidth: 1,
|
|
153
|
+
borderColor: '#D1D5DB',
|
|
154
|
+
borderRadius: 8,
|
|
155
|
+
padding: 12,
|
|
156
|
+
fontSize: 16,
|
|
157
|
+
color: '#374151',
|
|
158
|
+
backgroundColor: '#F9FAFB',
|
|
159
|
+
marginBottom: 24,
|
|
160
|
+
minHeight: 80
|
|
161
|
+
},
|
|
162
|
+
// Button color variants
|
|
163
|
+
startButton: {
|
|
164
|
+
backgroundColor: '#473cfb'
|
|
165
|
+
},
|
|
166
|
+
stopButton: {
|
|
167
|
+
backgroundColor: '#473cfb'
|
|
168
|
+
},
|
|
169
|
+
saveButton: {
|
|
170
|
+
backgroundColor: '#473cfb'
|
|
171
|
+
}
|
|
172
|
+
});
|
|
173
|
+
//# sourceMappingURL=styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["StyleSheet","sharedStyles","create","popoverContent","flex","paddingHorizontal","popoverHeader","flexDirection","paddingBottom","borderTopLeftRadius","borderTopRightRadius","backgroundColor","shadowColor","shadowOffset","width","height","shadowOpacity","shadowRadius","elevation","modalHandle","marginTop","marginBottom","borderRadius","alignSelf","popoverHeaderContent","justifyContent","alignItems","cancelButton","paddingVertical","borderWidth","borderColor","cancelButtonText","color","fontSize","fontWeight","popoverBody","padding","paddingTop","title","description","popoverFooter","actionButton","actionButtonText","continuousRecordingSection","continuousRecordingLabel","continuousOverlay","gap","continuousOverlayHeader","continuousOverlayTitle","continuousOverlayDescription","lineHeight","commentInput","minHeight","startButton","stopButton","saveButton"],"sourceRoot":"../../../../src","sources":["components/SessionRecorderWidget/styles.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["components/index.ts"],"mappings":";;AAAA,cAAc,+BAAsB;AACpC,cAAc,kCAAyB","ignoreList":[]}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
export const OTEL_MP_SAMPLE_TRACE_RATIO = 0.15;
|
|
4
|
+
export const SESSION_ID_PROP_NAME = 'multiplayer-session-id';
|
|
5
|
+
export const SESSION_SHORT_ID_PROP_NAME = 'multiplayer-session-short-id';
|
|
6
|
+
export const SESSION_CONTINUOUS_DEBUGGING_PROP_NAME = 'multiplayer-session-continuous-debugging';
|
|
7
|
+
export const SESSION_STATE_PROP_NAME = 'multiplayer-session-state';
|
|
8
|
+
export const SESSION_TYPE_PROP_NAME = 'multiplayer-session-type';
|
|
9
|
+
export const SESSION_PROP_NAME = 'multiplayer-session-data';
|
|
10
|
+
export const SESSION_STARTED_EVENT = 'debug-session:started';
|
|
11
|
+
export const SESSION_STOPPED_EVENT = 'debug-session:stopped';
|
|
12
|
+
export const SESSION_SUBSCRIBE_EVENT = 'debug-session:subscribe';
|
|
13
|
+
export const SESSION_UNSUBSCRIBE_EVENT = 'debug-session:unsubscribe';
|
|
14
|
+
export const SESSION_AUTO_CREATED = 'debug-session:auto-created';
|
|
15
|
+
export const SESSION_ADD_EVENT = 'debug-session:rrweb:add-event';
|
|
16
|
+
export const DEFAULT_MAX_HTTP_CAPTURING_PAYLOAD_SIZE = 100000;
|
|
17
|
+
export const SESSION_RESPONSE = 'multiplayer-debug-session-response';
|
|
18
|
+
export const CONTINUOUS_DEBUGGING_TIMEOUT = 60000; // 1 minutes
|
|
19
|
+
|
|
20
|
+
export const DEBUG_SESSION_MAX_DURATION_SECONDS = 10 * 60 + 30; // TODO: move to shared config otel core
|
|
21
|
+
|
|
22
|
+
// // Package version - injected by webpack during build
|
|
23
|
+
// declare const PACKAGE_VERSION: string
|
|
24
|
+
// export const PACKAGE_VERSION_EXPORT = PACKAGE_VERSION || '1.0.0'
|
|
25
|
+
|
|
26
|
+
// Regex patterns for OpenTelemetry ignore URLs
|
|
27
|
+
export const OTEL_IGNORE_URLS = [
|
|
28
|
+
// Traces endpoint
|
|
29
|
+
/.*\/v1\/traces/,
|
|
30
|
+
// Debug sessions endpoints
|
|
31
|
+
/.*\/v0\/radar\/debug-sessions\/start\/?$/, /.*\/v0\/radar\/debug-sessions\/[^/]+\/stop\/?$/, /.*\/v0\/radar\/debug-sessions\/[^/]+\/cancel\/?$/,
|
|
32
|
+
// Continuous debug sessions endpoints
|
|
33
|
+
/.*\/v0\/radar\/continuous-debug-sessions\/start\/?$/, /.*\/v0\/radar\/continuous-debug-sessions\/[^/]+\/save\/?$/, /.*\/v0\/radar\/continuous-debug-sessions\/[^/]+\/cancel\/?$/,
|
|
34
|
+
// Remote debug session endpoint
|
|
35
|
+
/.*\/v0\/radar\/remote-debug-session\/check\/?$/,
|
|
36
|
+
// Connectivity probe endpoints (avoid noisy spans)
|
|
37
|
+
/https:\/\/clients3\.google\.com\/generate_204/, /http:\/\/clients3\.google\.com\/generate_204/, /http(s)?:\/\/www\.google\.com\/generate_204/, /http(s)?:\/\/connectivitycheck\.android\.com\/generate_204/, /http(s)?:\/\/connectivitycheck\.gstatic\.com\/generate_204/, /http(s)?:\/\/captive\.apple\.com/
|
|
38
|
+
|
|
39
|
+
// Or use a more general pattern to catch all radar API endpoints
|
|
40
|
+
// /.*\/v0\/radar\/.*/
|
|
41
|
+
];
|
|
42
|
+
//# sourceMappingURL=constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["OTEL_MP_SAMPLE_TRACE_RATIO","SESSION_ID_PROP_NAME","SESSION_SHORT_ID_PROP_NAME","SESSION_CONTINUOUS_DEBUGGING_PROP_NAME","SESSION_STATE_PROP_NAME","SESSION_TYPE_PROP_NAME","SESSION_PROP_NAME","SESSION_STARTED_EVENT","SESSION_STOPPED_EVENT","SESSION_SUBSCRIBE_EVENT","SESSION_UNSUBSCRIBE_EVENT","SESSION_AUTO_CREATED","SESSION_ADD_EVENT","DEFAULT_MAX_HTTP_CAPTURING_PAYLOAD_SIZE","SESSION_RESPONSE","CONTINUOUS_DEBUGGING_TIMEOUT","DEBUG_SESSION_MAX_DURATION_SECONDS","OTEL_IGNORE_URLS"],"sourceRoot":"../../../src","sources":["config/constants.ts"],"mappings":";;AACA,OAAO,MAAMA,0BAA0B,GAAG,IAAI;AAE9C,OAAO,MAAMC,oBAAoB,GAAG,wBAAwB;AAE5D,OAAO,MAAMC,0BAA0B,GAAG,8BAA8B;AAExE,OAAO,MAAMC,sCAAsC,GAAG,0CAA0C;AAEhG,OAAO,MAAMC,uBAAuB,GAAG,2BAA2B;AAElE,OAAO,MAAMC,sBAAsB,GAAG,0BAA0B;AAEhE,OAAO,MAAMC,iBAAiB,GAAG,0BAA0B;AAE3D,OAAO,MAAMC,qBAAqB,GAAG,uBAAuB;AAE5D,OAAO,MAAMC,qBAAqB,GAAG,uBAAuB;AAE5D,OAAO,MAAMC,uBAAuB,GAAG,yBAAyB;AAEhE,OAAO,MAAMC,yBAAyB,GAAG,2BAA2B;AAEpE,OAAO,MAAMC,oBAAoB,GAAG,4BAA4B;AAEhE,OAAO,MAAMC,iBAAiB,GAAG,+BAA+B;AAEhE,OAAO,MAAMC,uCAAuC,GAAG,MAAM;AAE7D,OAAO,MAAMC,gBAAgB,GAAG,oCAAoC;AAEpE,OAAO,MAAMC,4BAA4B,GAAG,KAAK,EAAC;;AAElD,OAAO,MAAMC,kCAAkC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAC;;AAE/D;AACA;AACA;;AAGA;AACA,OAAO,MAAMC,gBAAgB,GAAG;AAC9B;AACA,gBAAgB;AAChB;AACA,0CAA0C,EAC1C,gDAAgD,EAChD,kDAAkD;AAElD;AACA,qDAAqD,EACrD,2DAA2D,EAC3D,6DAA6D;AAE7D;AACA,gDAAgD;AAEhD;AACA,+CAA+C,EAC/C,8CAA8C,EAC9C,6CAA6C,EAC7C,4DAA4D,EAC5D,4DAA4D,EAC5D;;AAEA;AACA;AAAA,CACD","ignoreList":[]}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { SessionRecorderSdk, MULTIPLAYER_BASE_API_URL, MULTIPLAYER_OTEL_DEFAULT_TRACES_EXPORTER_HTTP_URL } from '@multiplayer-app/session-recorder-common';
|
|
4
|
+
import { LogLevel, WidgetButtonPlacement } from "../types/index.js";
|
|
5
|
+
import { OTEL_MP_SAMPLE_TRACE_RATIO, DEFAULT_MAX_HTTP_CAPTURING_PAYLOAD_SIZE } from "./constants.js";
|
|
6
|
+
const {
|
|
7
|
+
mask,
|
|
8
|
+
sensitiveFields,
|
|
9
|
+
sensitiveHeaders
|
|
10
|
+
} = SessionRecorderSdk;
|
|
11
|
+
export const DEFAULT_MASKING_CONFIG = {
|
|
12
|
+
isContentMaskingEnabled: true,
|
|
13
|
+
maskBody: mask(sensitiveFields),
|
|
14
|
+
maskHeaders: mask(sensitiveHeaders),
|
|
15
|
+
maskBodyFieldsList: sensitiveFields,
|
|
16
|
+
maskHeadersList: sensitiveHeaders,
|
|
17
|
+
headersToInclude: [],
|
|
18
|
+
headersToExclude: [],
|
|
19
|
+
// Screen masking options
|
|
20
|
+
maskImages: false,
|
|
21
|
+
maskLabels: false,
|
|
22
|
+
maskButtons: false,
|
|
23
|
+
maskWebViews: false,
|
|
24
|
+
maskTextInputs: true,
|
|
25
|
+
maskSandboxedViews: false
|
|
26
|
+
};
|
|
27
|
+
export const DEFAULT_WIDGET_TEXT_CONFIG = {
|
|
28
|
+
initialTitleWithContinuous: 'Encountered an issue?',
|
|
29
|
+
initialTitleWithoutContinuous: 'Encountered an issue?',
|
|
30
|
+
initialDescriptionWithContinuous: 'Record your session so we can see the problem and fix it faster.',
|
|
31
|
+
initialDescriptionWithoutContinuous: 'Record your session so we can see the problem and fix it faster.',
|
|
32
|
+
continuousRecordingLabel: 'Continuous recording',
|
|
33
|
+
startRecordingButtonText: 'Start recording',
|
|
34
|
+
finalTitle: 'Done recording?',
|
|
35
|
+
finalDescription: 'You can also add a quick note with extra context, expectations, or questions. Thank you!',
|
|
36
|
+
commentPlaceholder: 'Add a message...',
|
|
37
|
+
saveButtonText: 'Submit recording',
|
|
38
|
+
cancelButtonText: 'Cancel recording',
|
|
39
|
+
continuousOverlayTitle: 'Save time, skip the reproductions',
|
|
40
|
+
continuousOverlayDescription: 'We keep a rolling record of your recent activity. If something doesn’t work as expected, just save the recording and continue working. No need to worry about exceptions and errors - we automatically save recordings for those!',
|
|
41
|
+
saveLastSnapshotButtonText: 'Save recording',
|
|
42
|
+
submitDialogTitle: 'Save recording',
|
|
43
|
+
submitDialogSubtitle: 'This full-stack session recording will be saved directly to your selected Multiplayer project. All data is automatically correlated end-to-end.',
|
|
44
|
+
submitDialogCommentLabel: 'You can also add context, comments, or notes.',
|
|
45
|
+
submitDialogCommentPlaceholder: 'Add a message...',
|
|
46
|
+
submitDialogSubmitText: 'Save',
|
|
47
|
+
submitDialogCancelText: 'Cancel'
|
|
48
|
+
};
|
|
49
|
+
export const BASE_CONFIG = {
|
|
50
|
+
apiKey: '',
|
|
51
|
+
version: '',
|
|
52
|
+
application: '',
|
|
53
|
+
environment: '',
|
|
54
|
+
showContinuousRecording: true,
|
|
55
|
+
widget: {
|
|
56
|
+
enabled: true,
|
|
57
|
+
button: {
|
|
58
|
+
visible: true,
|
|
59
|
+
placement: WidgetButtonPlacement.bottomRight
|
|
60
|
+
},
|
|
61
|
+
textOverrides: DEFAULT_WIDGET_TEXT_CONFIG
|
|
62
|
+
},
|
|
63
|
+
apiBaseUrl: MULTIPLAYER_BASE_API_URL,
|
|
64
|
+
exporterEndpoint: MULTIPLAYER_OTEL_DEFAULT_TRACES_EXPORTER_HTTP_URL,
|
|
65
|
+
schemifyDocSpanPayload: true,
|
|
66
|
+
ignoreUrls: [],
|
|
67
|
+
propagateTraceHeaderCorsUrls: [],
|
|
68
|
+
sampleTraceRatio: OTEL_MP_SAMPLE_TRACE_RATIO,
|
|
69
|
+
maxCapturingHttpPayloadSize: DEFAULT_MAX_HTTP_CAPTURING_PAYLOAD_SIZE,
|
|
70
|
+
captureBody: true,
|
|
71
|
+
captureHeaders: true,
|
|
72
|
+
masking: DEFAULT_MASKING_CONFIG,
|
|
73
|
+
recordScreen: true,
|
|
74
|
+
recordGestures: true,
|
|
75
|
+
recordNavigation: true,
|
|
76
|
+
logger: {
|
|
77
|
+
enabled: false,
|
|
78
|
+
level: LogLevel.INFO
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
//# sourceMappingURL=defaults.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["SessionRecorderSdk","MULTIPLAYER_BASE_API_URL","MULTIPLAYER_OTEL_DEFAULT_TRACES_EXPORTER_HTTP_URL","LogLevel","WidgetButtonPlacement","OTEL_MP_SAMPLE_TRACE_RATIO","DEFAULT_MAX_HTTP_CAPTURING_PAYLOAD_SIZE","mask","sensitiveFields","sensitiveHeaders","DEFAULT_MASKING_CONFIG","isContentMaskingEnabled","maskBody","maskHeaders","maskBodyFieldsList","maskHeadersList","headersToInclude","headersToExclude","maskImages","maskLabels","maskButtons","maskWebViews","maskTextInputs","maskSandboxedViews","DEFAULT_WIDGET_TEXT_CONFIG","initialTitleWithContinuous","initialTitleWithoutContinuous","initialDescriptionWithContinuous","initialDescriptionWithoutContinuous","continuousRecordingLabel","startRecordingButtonText","finalTitle","finalDescription","commentPlaceholder","saveButtonText","cancelButtonText","continuousOverlayTitle","continuousOverlayDescription","saveLastSnapshotButtonText","submitDialogTitle","submitDialogSubtitle","submitDialogCommentLabel","submitDialogCommentPlaceholder","submitDialogSubmitText","submitDialogCancelText","BASE_CONFIG","apiKey","version","application","environment","showContinuousRecording","widget","enabled","button","visible","placement","bottomRight","textOverrides","apiBaseUrl","exporterEndpoint","schemifyDocSpanPayload","ignoreUrls","propagateTraceHeaderCorsUrls","sampleTraceRatio","maxCapturingHttpPayloadSize","captureBody","captureHeaders","masking","recordScreen","recordGestures","recordNavigation","logger","level","INFO"],"sourceRoot":"../../../src","sources":["config/defaults.ts"],"mappings":";;AAAA,SACEA,kBAAkB,EAClBC,wBAAwB,EACxBC,iDAAiD,QAC5C,0CAA0C;AACjD,SACEC,QAAQ,EACRC,qBAAqB,QAEhB,mBAAU;AACjB,SACEC,0BAA0B,EAC1BC,uCAAuC,QAClC,gBAAa;AAEpB,MAAM;EAAEC,IAAI;EAAEC,eAAe;EAAEC;AAAiB,CAAC,GAAGT,kBAAkB;AAEtE,OAAO,MAAMU,sBAAyD,GAAG;EACvEC,uBAAuB,EAAE,IAAI;EAC7BC,QAAQ,EAAEL,IAAI,CAACC,eAAe,CAAC;EAC/BK,WAAW,EAAEN,IAAI,CAACE,gBAAgB,CAAC;EACnCK,kBAAkB,EAAEN,eAAe;EACnCO,eAAe,EAAEN,gBAAgB;EACjCO,gBAAgB,EAAE,EAAE;EACpBC,gBAAgB,EAAE,EAAE;EACpB;EACAC,UAAU,EAAE,KAAK;EACjBC,UAAU,EAAE,KAAK;EACjBC,WAAW,EAAE,KAAK;EAClBC,YAAY,EAAE,KAAK;EACnBC,cAAc,EAAE,IAAI;EACpBC,kBAAkB,EAAE;AACtB,CAAC;AAED,OAAO,MAAMC,0BAA6E,GAAG;EAC3FC,0BAA0B,EAAE,uBAAuB;EACnDC,6BAA6B,EAAE,uBAAuB;EACtDC,gCAAgC,EAAE,kEAAkE;EACpGC,mCAAmC,EAAE,kEAAkE;EACvGC,wBAAwB,EAAE,sBAAsB;EAChDC,wBAAwB,EAAE,iBAAiB;EAC3CC,UAAU,EAAE,iBAAiB;EAC7BC,gBAAgB,EAAE,0FAA0F;EAC5GC,kBAAkB,EAAE,kBAAkB;EACtCC,cAAc,EAAE,kBAAkB;EAClCC,gBAAgB,EAAE,kBAAkB;EACpCC,sBAAsB,EAAE,mCAAmC;EAC3DC,4BAA4B,EAAE,mOAAmO;EACjQC,0BAA0B,EAAE,gBAAgB;EAC5CC,iBAAiB,EAAE,gBAAgB;EACnCC,oBAAoB,EAAE,iJAAiJ;EACvKC,wBAAwB,EAAE,+CAA+C;EACzEC,8BAA8B,EAAE,kBAAkB;EAClDC,sBAAsB,EAAE,MAAM;EAC9BC,sBAAsB,EAAE;AAC1B,CAAC;AAED,OAAO,MAAMC,WAAmC,GAAG;EACjDC,MAAM,EAAE,EAAE;EAEVC,OAAO,EAAE,EAAE;EACXC,WAAW,EAAE,EAAE;EACfC,WAAW,EAAE,EAAE;EAEfC,uBAAuB,EAAE,IAAI;EAE7BC,MAAM,EAAE;IACNC,OAAO,EAAE,IAAI;IACbC,MAAM,EAAE;MACNC,OAAO,EAAE,IAAI;MACbC,SAAS,EAAEnD,qBAAqB,CAACoD;IACnC,CAAC;IACDC,aAAa,EAAEjC;EACjB,CAAC;EAGDkC,UAAU,EAAEzD,wBAAwB;EACpC0D,gBAAgB,EAAEzD,iDAAiD;EAEnE0D,sBAAsB,EAAE,IAAI;EAE5BC,UAAU,EAAE,EAAE;EACdC,4BAA4B,EAAE,EAAE;EAEhCC,gBAAgB,EAAE1D,0BAA0B;EAC5C2D,2BAA2B,EAAE1D,uCAAuC;EAEpE2D,WAAW,EAAE,IAAI;EACjBC,cAAc,EAAE,IAAI;EACpBC,OAAO,EAAEzD,sBAAsB;EAG/B0D,YAAY,EAAE,IAAI;EAClBC,cAAc,EAAE,IAAI;EACpBC,gBAAgB,EAAE,IAAI;EAEtBC,MAAM,EAAE;IACNnB,OAAO,EAAE,KAAK;IACdoB,KAAK,EAAErE,QAAQ,CAACsE;EAClB;AACF,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// Export all config-related functions and constants
|
|
4
|
+
export * from "./constants.js";
|
|
5
|
+
export * from "./defaults.js";
|
|
6
|
+
export * from "./validators.js";
|
|
7
|
+
export * from "./masking.js";
|
|
8
|
+
export * from "./session-recorder.js";
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["config/index.ts"],"mappings":";;AAAA;AACA,cAAc,gBAAa;AAC3B,cAAc,eAAY;AAC1B,cAAc,iBAAc;AAC5B,cAAc,cAAW;AACzB,cAAc,uBAAoB","ignoreList":[]}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { DEFAULT_MASKING_CONFIG } from "./defaults.js";
|
|
4
|
+
import { isValidArray, isValidBoolean, isValidFunction } from "./validators.js";
|
|
5
|
+
import { SessionRecorderSdk } from '@multiplayer-app/session-recorder-common';
|
|
6
|
+
const {
|
|
7
|
+
mask,
|
|
8
|
+
sensitiveFields,
|
|
9
|
+
sensitiveHeaders
|
|
10
|
+
} = SessionRecorderSdk;
|
|
11
|
+
export const getMaskingConfig = masking => {
|
|
12
|
+
const baseMasking = DEFAULT_MASKING_CONFIG;
|
|
13
|
+
if (typeof masking !== 'object') {
|
|
14
|
+
return baseMasking;
|
|
15
|
+
}
|
|
16
|
+
const maskHeadersList = isValidArray(masking.maskHeadersList, sensitiveHeaders);
|
|
17
|
+
const maskBodyFieldsList = isValidArray(masking.maskBodyFieldsList, sensitiveFields);
|
|
18
|
+
return {
|
|
19
|
+
maskHeadersList,
|
|
20
|
+
maskBodyFieldsList,
|
|
21
|
+
headersToInclude: isValidArray(masking.headersToInclude, baseMasking.headersToInclude),
|
|
22
|
+
headersToExclude: isValidArray(masking.headersToExclude, baseMasking.headersToExclude),
|
|
23
|
+
isContentMaskingEnabled: isValidBoolean(masking.isContentMaskingEnabled, baseMasking.isContentMaskingEnabled),
|
|
24
|
+
maskBody: isValidFunction(masking.maskBody, mask(maskBodyFieldsList)),
|
|
25
|
+
maskHeaders: isValidFunction(masking.maskHeaders, mask(maskHeadersList)),
|
|
26
|
+
// Screen masking options
|
|
27
|
+
maskTextInputs: isValidBoolean(masking.maskTextInputs, baseMasking.maskTextInputs),
|
|
28
|
+
maskImages: isValidBoolean(masking.maskImages, baseMasking.maskImages),
|
|
29
|
+
maskButtons: isValidBoolean(masking.maskButtons, baseMasking.maskButtons),
|
|
30
|
+
maskLabels: isValidBoolean(masking.maskLabels, baseMasking.maskLabels),
|
|
31
|
+
maskWebViews: isValidBoolean(masking.maskWebViews, baseMasking.maskWebViews),
|
|
32
|
+
maskSandboxedViews: isValidBoolean(masking.maskSandboxedViews, baseMasking.maskSandboxedViews)
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
//# sourceMappingURL=masking.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["DEFAULT_MASKING_CONFIG","isValidArray","isValidBoolean","isValidFunction","SessionRecorderSdk","mask","sensitiveFields","sensitiveHeaders","getMaskingConfig","masking","baseMasking","maskHeadersList","maskBodyFieldsList","headersToInclude","headersToExclude","isContentMaskingEnabled","maskBody","maskHeaders","maskTextInputs","maskImages","maskButtons","maskLabels","maskWebViews","maskSandboxedViews"],"sourceRoot":"../../../src","sources":["config/masking.ts"],"mappings":";;AACA,SAASA,sBAAsB,QAAQ,eAAY;AACnD,SAASC,YAAY,EAAEC,cAAc,EAAEC,eAAe,QAAQ,iBAAc;AAC5E,SAASC,kBAAkB,QAAQ,0CAA0C;AAE7E,MAAM;EAAEC,IAAI;EAAEC,eAAe;EAAEC;AAAiB,CAAC,GAAGH,kBAAkB;AAEtE,OAAO,MAAMI,gBAAgB,GAAIC,OAAwB,IAAwC;EAC/F,MAAMC,WAAW,GAAGV,sBAAsB;EAE1C,IAAI,OAAOS,OAAO,KAAK,QAAQ,EAAE;IAC/B,OAAOC,WAAW;EACpB;EAEA,MAAMC,eAAe,GAAGV,YAAY,CAACQ,OAAO,CAACE,eAAe,EAAEJ,gBAAgB,CAAC;EAC/E,MAAMK,kBAAkB,GAAGX,YAAY,CAACQ,OAAO,CAACG,kBAAkB,EAAEN,eAAe,CAAC;EAEpF,OAAO;IACLK,eAAe;IACfC,kBAAkB;IAClBC,gBAAgB,EAAEZ,YAAY,CAACQ,OAAO,CAACI,gBAAgB,EAAEH,WAAW,CAACG,gBAAgB,CAAC;IACtFC,gBAAgB,EAAEb,YAAY,CAACQ,OAAO,CAACK,gBAAgB,EAAEJ,WAAW,CAACI,gBAAgB,CAAC;IACtFC,uBAAuB,EAAEb,cAAc,CAACO,OAAO,CAACM,uBAAuB,EAAEL,WAAW,CAACK,uBAAuB,CAAC;IAC7GC,QAAQ,EAAEb,eAAe,CAACM,OAAO,CAACO,QAAQ,EAAEX,IAAI,CAACO,kBAAkB,CAAC,CAAC;IACrEK,WAAW,EAAEd,eAAe,CAACM,OAAO,CAACQ,WAAW,EAAEZ,IAAI,CAACM,eAAe,CAAC,CAAC;IACxE;IACAO,cAAc,EAAEhB,cAAc,CAACO,OAAO,CAACS,cAAc,EAAER,WAAW,CAACQ,cAAc,CAAC;IAClFC,UAAU,EAAEjB,cAAc,CAACO,OAAO,CAACU,UAAU,EAAET,WAAW,CAACS,UAAU,CAAC;IACtEC,WAAW,EAAElB,cAAc,CAACO,OAAO,CAACW,WAAW,EAAEV,WAAW,CAACU,WAAW,CAAC;IACzEC,UAAU,EAAEnB,cAAc,CAACO,OAAO,CAACY,UAAU,EAAEX,WAAW,CAACW,UAAU,CAAC;IACtEC,YAAY,EAAEpB,cAAc,CAACO,OAAO,CAACa,YAAY,EAAEZ,WAAW,CAACY,YAAY,CAAC;IAC5EC,kBAAkB,EAAErB,cAAc,CAACO,OAAO,CAACc,kBAAkB,EAAEb,WAAW,CAACa,kBAAkB;EAC/F,CAAC;AACH,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { LogLevel } from "../types/index.js";
|
|
4
|
+
import { BASE_CONFIG } from "./defaults.js";
|
|
5
|
+
import { getMaskingConfig } from "./masking.js";
|
|
6
|
+
import { isValidString, isValidNumber, isValidBoolean, isValidArray } from "./validators.js";
|
|
7
|
+
import { getWidgetConfig } from "./widget.js";
|
|
8
|
+
const getLoggerConfig = config => {
|
|
9
|
+
if (!config || typeof config !== 'object') {
|
|
10
|
+
return BASE_CONFIG.logger;
|
|
11
|
+
}
|
|
12
|
+
return {
|
|
13
|
+
level: isValidNumber(config.level, LogLevel.INFO),
|
|
14
|
+
enabled: isValidBoolean(config.enabled, false)
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
export const getSessionRecorderConfig = c => {
|
|
18
|
+
if (!c) {
|
|
19
|
+
return BASE_CONFIG;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
apiKey: isValidString(c.apiKey, BASE_CONFIG.apiKey),
|
|
23
|
+
version: isValidString(c.version, BASE_CONFIG.version),
|
|
24
|
+
application: isValidString(c.application, BASE_CONFIG.application),
|
|
25
|
+
environment: isValidString(c.environment, BASE_CONFIG.environment),
|
|
26
|
+
exporterEndpoint: isValidString(c.exporterEndpoint, BASE_CONFIG.exporterEndpoint),
|
|
27
|
+
apiBaseUrl: isValidString(c.apiBaseUrl, BASE_CONFIG.apiBaseUrl),
|
|
28
|
+
showContinuousRecording: isValidBoolean(c.showContinuousRecording, BASE_CONFIG.showContinuousRecording),
|
|
29
|
+
ignoreUrls: isValidArray(c.ignoreUrls, BASE_CONFIG.ignoreUrls),
|
|
30
|
+
sampleTraceRatio: isValidNumber(c.sampleTraceRatio, BASE_CONFIG.sampleTraceRatio),
|
|
31
|
+
propagateTraceHeaderCorsUrls: c.propagateTraceHeaderCorsUrls || BASE_CONFIG.propagateTraceHeaderCorsUrls,
|
|
32
|
+
schemifyDocSpanPayload: isValidBoolean(c.schemifyDocSpanPayload, BASE_CONFIG.schemifyDocSpanPayload),
|
|
33
|
+
maxCapturingHttpPayloadSize: isValidNumber(c.maxCapturingHttpPayloadSize, BASE_CONFIG.maxCapturingHttpPayloadSize),
|
|
34
|
+
captureBody: isValidBoolean(c.captureBody, BASE_CONFIG.captureBody),
|
|
35
|
+
captureHeaders: isValidBoolean(c.captureHeaders, BASE_CONFIG.captureHeaders),
|
|
36
|
+
recordScreen: isValidBoolean(c.recordScreen, BASE_CONFIG.recordScreen),
|
|
37
|
+
recordGestures: isValidBoolean(c.recordGestures, BASE_CONFIG.recordGestures),
|
|
38
|
+
recordNavigation: isValidBoolean(c.recordNavigation, BASE_CONFIG.recordNavigation),
|
|
39
|
+
masking: getMaskingConfig(c.masking),
|
|
40
|
+
widget: getWidgetConfig(c.widget),
|
|
41
|
+
logger: getLoggerConfig(c.logger)
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
//# sourceMappingURL=session-recorder.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["LogLevel","BASE_CONFIG","getMaskingConfig","isValidString","isValidNumber","isValidBoolean","isValidArray","getWidgetConfig","getLoggerConfig","config","logger","level","INFO","enabled","getSessionRecorderConfig","c","apiKey","version","application","environment","exporterEndpoint","apiBaseUrl","showContinuousRecording","ignoreUrls","sampleTraceRatio","propagateTraceHeaderCorsUrls","schemifyDocSpanPayload","maxCapturingHttpPayloadSize","captureBody","captureHeaders","recordScreen","recordGestures","recordNavigation","masking","widget"],"sourceRoot":"../../../src","sources":["config/session-recorder.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Validation helper functions for configuration objects
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
export const isValidStringOrRegExp = (value, defaultValue) => {
|
|
8
|
+
return typeof value === 'string' || value instanceof RegExp ? value : defaultValue;
|
|
9
|
+
};
|
|
10
|
+
export const isValidString = (value, defaultValue) => {
|
|
11
|
+
return typeof value === 'string' ? value.trim() : defaultValue;
|
|
12
|
+
};
|
|
13
|
+
export const isValidNumber = (value, defaultValue) => {
|
|
14
|
+
return typeof value === 'number' ? value : defaultValue;
|
|
15
|
+
};
|
|
16
|
+
export const isValidBoolean = (value, defaultValue) => {
|
|
17
|
+
return typeof value === 'boolean' ? value : defaultValue;
|
|
18
|
+
};
|
|
19
|
+
export const isValidArray = (value, defaultValue) => {
|
|
20
|
+
return Array.isArray(value) ? [...value] : [...defaultValue];
|
|
21
|
+
};
|
|
22
|
+
export const isValidEnum = (value, defaultValue, enumValues) => {
|
|
23
|
+
return enumValues.includes(value) ? value : defaultValue;
|
|
24
|
+
};
|
|
25
|
+
export const isValidFunction = (value, defaultValue) => {
|
|
26
|
+
return typeof value === 'function' ? value : defaultValue;
|
|
27
|
+
};
|
|
28
|
+
//# sourceMappingURL=validators.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["isValidStringOrRegExp","value","defaultValue","RegExp","isValidString","trim","isValidNumber","isValidBoolean","isValidArray","Array","isArray","isValidEnum","enumValues","includes","isValidFunction"],"sourceRoot":"../../../src","sources":["config/validators.ts"],"mappings":";;AAAA;AACA;AACA;;AAEA,OAAO,MAAMA,qBAAqB,GAAGA,CAACC,KAAkC,EAAEC,YAA6B,KAAK;EAC1G,OAAO,OAAOD,KAAK,KAAK,QAAQ,IAAIA,KAAK,YAAYE,MAAM,GAAGF,KAAK,GAAGC,YAAY;AACpF,CAAC;AAED,OAAO,MAAME,aAAa,GAAGA,CAAmBH,KAA6B,EAAEC,YAAoB,KAAK;EACtG,OAAO,OAAOD,KAAK,KAAK,QAAQ,GAAGA,KAAK,CAACI,IAAI,CAAC,CAAC,GAAGH,YAAY;AAChE,CAAC;AAED,OAAO,MAAMI,aAAa,GAAGA,CAACL,KAAyB,EAAEC,YAAoB,KAAK;EAChF,OAAO,OAAOD,KAAK,KAAK,QAAQ,GAAGA,KAAK,GAAGC,YAAY;AACzD,CAAC;AAED,OAAO,MAAMK,cAAc,GAAGA,CAACN,KAA0B,EAAEC,YAAqB,KAAK;EACnF,OAAO,OAAOD,KAAK,KAAK,SAAS,GAAGA,KAAK,GAAGC,YAAY;AAC1D,CAAC;AAED,OAAO,MAAMM,YAAY,GAAGA,CAAIP,KAAmC,EAAEC,YAA8B,KAAU;EAC3G,OAAOO,KAAK,CAACC,OAAO,CAACT,KAAK,CAAC,GAAG,CAAC,GAAGA,KAAK,CAAC,GAAU,CAAC,GAAGC,YAAY,CAAQ;AAC5E,CAAC;AAED,OAAO,MAAMS,WAAW,GAAGA,CAAIV,KAAc,EAAEC,YAAe,EAAEU,UAAe,KAAQ;EACrF,OAAOA,UAAU,CAACC,QAAQ,CAACZ,KAAU,CAAC,GAAGA,KAAK,GAAQC,YAAY;AACpE,CAAC;AAED,OAAO,MAAMY,eAAe,GAAGA,CAACb,KAAU,EAAEC,YAAiB,KAAK;EAChE,OAAO,OAAOD,KAAK,KAAK,UAAU,GAAGA,KAAK,GAAGC,YAAY;AAC3D,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { WidgetButtonPlacement } from "../types/index.js";
|
|
4
|
+
import { BASE_CONFIG } from "./defaults.js";
|
|
5
|
+
import { isValidBoolean, isValidEnum, isValidString } from "./validators.js";
|
|
6
|
+
export const getWidgetConfig = config => {
|
|
7
|
+
const textOverrides = getTextOverridesConfig(config?.textOverrides, BASE_CONFIG.widget.textOverrides);
|
|
8
|
+
const def = {
|
|
9
|
+
enabled: true,
|
|
10
|
+
button: {
|
|
11
|
+
visible: true,
|
|
12
|
+
placement: WidgetButtonPlacement.bottomRight
|
|
13
|
+
},
|
|
14
|
+
textOverrides
|
|
15
|
+
};
|
|
16
|
+
const placementCandidate = config?.button?.placement || def.button.placement;
|
|
17
|
+
return {
|
|
18
|
+
textOverrides,
|
|
19
|
+
enabled: isValidBoolean(config && config.enabled, def.enabled),
|
|
20
|
+
button: {
|
|
21
|
+
visible: isValidBoolean(config && config.button && config.button.visible, def.button.visible),
|
|
22
|
+
placement: isValidEnum(placementCandidate, def.button.placement, Object.values(WidgetButtonPlacement))
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
const getTextOverridesConfig = (config, defaultConfig) => {
|
|
27
|
+
if (!config || typeof config !== 'object') {
|
|
28
|
+
return defaultConfig;
|
|
29
|
+
}
|
|
30
|
+
return Object.keys(defaultConfig).reduce((acc, key) => {
|
|
31
|
+
acc[key] = isValidString(config[key], defaultConfig[key]);
|
|
32
|
+
return acc;
|
|
33
|
+
}, {});
|
|
34
|
+
};
|
|
35
|
+
//# sourceMappingURL=widget.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["WidgetButtonPlacement","BASE_CONFIG","isValidBoolean","isValidEnum","isValidString","getWidgetConfig","config","textOverrides","getTextOverridesConfig","widget","def","enabled","button","visible","placement","bottomRight","placementCandidate","Object","values","defaultConfig","keys","reduce","acc","key"],"sourceRoot":"../../../src","sources":["config/widget.ts"],"mappings":";;AAAA,SAAsCA,qBAAqB,QAAQ,mBAAU;AAC7E,SAASC,WAAW,QAAQ,eAAY;AACxC,SAASC,cAAc,EAAEC,WAAW,EAAEC,aAAa,QAAQ,iBAAc;AAEzE,OAAO,MAAMC,eAAe,GAAIC,MAAwC,IAAK;EAC3E,MAAMC,aAAa,GAAGC,sBAAsB,CAACF,MAAM,EAAEC,aAAa,EAAEN,WAAW,CAACQ,MAAM,CAACF,aAAa,CAAC;EAErG,MAAMG,GAAG,GAAG;IACVC,OAAO,EAAE,IAAI;IACbC,MAAM,EAAE;MAAEC,OAAO,EAAE,IAAI;MAAEC,SAAS,EAAEd,qBAAqB,CAACe;IAAY,CAAC;IACvER;EACF,CAAC;EAED,MAAMS,kBAAkB,GAAGV,MAAM,EAAEM,MAAM,EAAEE,SAAS,IAAIJ,GAAG,CAACE,MAAM,CAACE,SAAS;EAE5E,OAAO;IACLP,aAAa;IACbI,OAAO,EAAET,cAAc,CAACI,MAAM,IAAIA,MAAM,CAACK,OAAO,EAAED,GAAG,CAACC,OAAO,CAAC;IAC9DC,MAAM,EAAE;MACNC,OAAO,EAAEX,cAAc,CAACI,MAAM,IAAIA,MAAM,CAACM,MAAM,IAAIN,MAAM,CAACM,MAAM,CAACC,OAAO,EAAEH,GAAG,CAACE,MAAM,CAACC,OAAO,CAAC;MAC7FC,SAAS,EAAEX,WAAW,CACpBa,kBAAkB,EAClBN,GAAG,CAACE,MAAM,CAACE,SAAS,EACpBG,MAAM,CAACC,MAAM,CAAClB,qBAAqB,CACrC;IACF;EACF,CAAC;AACH,CAAC;AAED,MAAMQ,sBAAsB,GAAGA,CAACF,MAAW,EAAEa,aAAkB,KAAK;EAClE,IAAI,CAACb,MAAM,IAAI,OAAOA,MAAM,KAAK,QAAQ,EAAE;IACzC,OAAOa,aAAa;EACtB;EACA,OAAOF,MAAM,CAACG,IAAI,CAACD,aAAa,CAAC,CAACE,MAAM,CAAC,CAACC,GAAG,EAAEC,GAAG,KAAK;IACrDD,GAAG,CAACC,GAAG,CAAC,GAAGnB,aAAa,CAACE,MAAM,CAACiB,GAAG,CAAC,EAAEJ,aAAa,CAACI,GAAG,CAAC,CAAC;IACzD,OAAOD,GAAG;EACZ,CAAC,EAAE,CAAC,CAA4B,CAAC;AACnC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React, { createContext, useContext, useEffect, useCallback } from 'react';
|
|
4
|
+
import sessionRecorder from "../session-recorder.js";
|
|
5
|
+
import { ScreenRecorderView } from "../components/ScreenRecorderView/index.js";
|
|
6
|
+
import SessionRecorderWidget from "../components/SessionRecorderWidget/index.js";
|
|
7
|
+
import { SessionType } from '@multiplayer-app/session-recorder-common';
|
|
8
|
+
import { sessionRecorderStore } from "./SessionRecorderStore.js";
|
|
9
|
+
import { useStoreSelector } from "./useStoreSelector.js";
|
|
10
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
11
|
+
const SessionRecorderContext = /*#__PURE__*/createContext(null);
|
|
12
|
+
export const SessionRecorderProvider = ({
|
|
13
|
+
children,
|
|
14
|
+
options
|
|
15
|
+
}) => {
|
|
16
|
+
const isInitialized = useStoreSelector(sessionRecorderStore, s => s.isInitialized);
|
|
17
|
+
useEffect(() => {
|
|
18
|
+
if (options) {
|
|
19
|
+
sessionRecorder.init(options);
|
|
20
|
+
}
|
|
21
|
+
sessionRecorderStore.setState({
|
|
22
|
+
isInitialized: sessionRecorder.isInitialized
|
|
23
|
+
});
|
|
24
|
+
}, []);
|
|
25
|
+
useEffect(() => {
|
|
26
|
+
sessionRecorderStore.setState({
|
|
27
|
+
sessionState: sessionRecorder.sessionState,
|
|
28
|
+
sessionType: sessionRecorder.sessionType
|
|
29
|
+
});
|
|
30
|
+
const onStateChange = (sessionState, sessionType) => {
|
|
31
|
+
sessionRecorderStore.setState({
|
|
32
|
+
sessionState,
|
|
33
|
+
sessionType
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
|
+
sessionRecorder.on('state-change', onStateChange);
|
|
37
|
+
return () => {
|
|
38
|
+
sessionRecorder.off('state-change', onStateChange);
|
|
39
|
+
};
|
|
40
|
+
}, []);
|
|
41
|
+
const startSession = useCallback((sessionType = SessionType.PLAIN) => {
|
|
42
|
+
return sessionRecorder.start(sessionType);
|
|
43
|
+
}, []);
|
|
44
|
+
const stopSession = useCallback(comment => {
|
|
45
|
+
return sessionRecorder.stop(comment);
|
|
46
|
+
}, []);
|
|
47
|
+
const pauseSession = useCallback(() => {
|
|
48
|
+
return sessionRecorder.pause();
|
|
49
|
+
}, []);
|
|
50
|
+
const resumeSession = useCallback(() => {
|
|
51
|
+
return sessionRecorder.resume();
|
|
52
|
+
}, []);
|
|
53
|
+
const cancelSession = useCallback(() => {
|
|
54
|
+
return sessionRecorder.cancel();
|
|
55
|
+
}, []);
|
|
56
|
+
const saveSession = useCallback(() => {
|
|
57
|
+
return sessionRecorder.save();
|
|
58
|
+
}, []);
|
|
59
|
+
const openWidgetModal = useCallback(() => {
|
|
60
|
+
sessionRecorderStore.setState({
|
|
61
|
+
isWidgetModalVisible: true
|
|
62
|
+
});
|
|
63
|
+
}, []);
|
|
64
|
+
const closeWidgetModal = useCallback(() => {
|
|
65
|
+
sessionRecorderStore.setState({
|
|
66
|
+
isWidgetModalVisible: false
|
|
67
|
+
});
|
|
68
|
+
}, []);
|
|
69
|
+
return /*#__PURE__*/_jsxs(SessionRecorderContext.Provider, {
|
|
70
|
+
value: {
|
|
71
|
+
instance: sessionRecorder,
|
|
72
|
+
openWidgetModal,
|
|
73
|
+
closeWidgetModal,
|
|
74
|
+
startSession,
|
|
75
|
+
stopSession,
|
|
76
|
+
pauseSession,
|
|
77
|
+
resumeSession,
|
|
78
|
+
cancelSession,
|
|
79
|
+
saveSession
|
|
80
|
+
},
|
|
81
|
+
children: [/*#__PURE__*/_jsx(ScreenRecorderView, {
|
|
82
|
+
children: children
|
|
83
|
+
}), isInitialized && !!sessionRecorder.config.widget.enabled && /*#__PURE__*/_jsx(SessionRecorderWidget, {})]
|
|
84
|
+
});
|
|
85
|
+
};
|
|
86
|
+
export const useSessionRecorder = () => {
|
|
87
|
+
const context = useContext(SessionRecorderContext);
|
|
88
|
+
if (!context) {
|
|
89
|
+
throw new Error('useSessionRecorder must be used within a SessionRecorderProvider');
|
|
90
|
+
}
|
|
91
|
+
return context;
|
|
92
|
+
};
|
|
93
|
+
//# sourceMappingURL=SessionRecorderContext.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","createContext","useContext","useEffect","useCallback","sessionRecorder","ScreenRecorderView","SessionRecorderWidget","SessionType","sessionRecorderStore","useStoreSelector","jsx","_jsx","jsxs","_jsxs","SessionRecorderContext","SessionRecorderProvider","children","options","isInitialized","s","init","setState","sessionState","sessionType","onStateChange","on","off","startSession","PLAIN","start","stopSession","comment","stop","pauseSession","pause","resumeSession","resume","cancelSession","cancel","saveSession","save","openWidgetModal","isWidgetModalVisible","closeWidgetModal","Provider","value","instance","config","widget","enabled","useSessionRecorder","context","Error"],"sourceRoot":"../../../src","sources":["context/SessionRecorderContext.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import { createStore } from "../utils/createStore.js";
|
|
4
|
+
export const sessionRecorderStore = createStore({
|
|
5
|
+
isInitialized: false,
|
|
6
|
+
sessionType: null,
|
|
7
|
+
sessionState: null,
|
|
8
|
+
isWidgetModalVisible: false,
|
|
9
|
+
isOnline: true,
|
|
10
|
+
error: null
|
|
11
|
+
});
|
|
12
|
+
//# sourceMappingURL=SessionRecorderStore.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["createStore","sessionRecorderStore","isInitialized","sessionType","sessionState","isWidgetModalVisible","isOnline","error"],"sourceRoot":"../../../src","sources":["context/SessionRecorderStore.ts"],"mappings":";;AAAA,SAASA,WAAW,QAAoB,yBAAsB;AAa9D,OAAO,MAAMC,oBAAiD,GAAGD,WAAW,CAAuB;EACjGE,aAAa,EAAE,KAAK;EACpBC,WAAW,EAAE,IAAI;EACjBC,YAAY,EAAE,IAAI;EAClBC,oBAAoB,EAAE,KAAK;EAC3BC,QAAQ,EAAE,IAAI;EACdC,KAAK,EAAE;AACT,CAAC,CAAC","ignoreList":[]}
|