-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e37d14
commit 45ccbb2
Showing
5 changed files
with
98 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
src/applications/ivc-champva/10-10D/helpers/useBrowserMonitoring.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import { useEffect, useMemo } from 'react'; | ||
import { useSelector } from 'react-redux'; | ||
import { datadogRum } from '@datadog/browser-rum'; | ||
|
||
import environment from '@department-of-veterans-affairs/platform-utilities/environment'; | ||
import { makeSelectFeatureToggles } from '../selectors/feature-toggles'; | ||
|
||
const initializeRealUserMonitoring = () => { | ||
// Prevent RUM from re-initializing the SDK OR running on local/CI environments. | ||
if ( | ||
!environment.BASE_URL.includes('localhost') && | ||
!window.DD_RUM?.getInitConfiguration() | ||
) { | ||
datadogRum.init({ | ||
applicationId: 'cca24a05-9ea0-49ea-aaa9-0d1e04a17ba0', | ||
clientToken: 'puba5e0866f8008f60a6bc8b09ae555dd92', | ||
site: 'ddog-gov.com', | ||
service: '10-10d', | ||
env: environment.vspEnvironment(), | ||
sessionSampleRate: 100, | ||
sessionReplaySampleRate: 100, | ||
trackUserInteractions: true, | ||
trackFrustrations: true, | ||
trackResources: true, | ||
trackLongTasks: true, | ||
defaultPrivacyLevel: 'mask-user-input', | ||
}); | ||
|
||
// If sessionReplaySampleRate > 0, we need to manually start the recording | ||
datadogRum.startSessionReplayRecording(); | ||
} | ||
}; | ||
|
||
const useBrowserMonitoring = () => { | ||
// Retrieve feature flag values to control behavior | ||
const selectFeatureToggles = useMemo(makeSelectFeatureToggles, []); | ||
const featureToggles = useSelector(selectFeatureToggles); | ||
const { isBrowserMonitoringEnabled, isLoadingFeatureFlags } = featureToggles; | ||
|
||
useEffect( | ||
() => { | ||
if (isLoadingFeatureFlags) return; | ||
if (isBrowserMonitoringEnabled) { | ||
initializeRealUserMonitoring(); | ||
} else { | ||
delete window.DD_RUM; | ||
} | ||
}, | ||
[isBrowserMonitoringEnabled, isLoadingFeatureFlags], | ||
); | ||
}; | ||
|
||
export { useBrowserMonitoring }; |
17 changes: 17 additions & 0 deletions
17
src/applications/ivc-champva/10-10D/selectors/feature-toggles.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { createSelector } from 'reselect'; | ||
import { toggleValues } from '@department-of-veterans-affairs/platform-site-wide/selectors'; | ||
import FEATURE_FLAG_NAMES from '@department-of-veterans-affairs/platform-utilities/featureFlagNames'; | ||
|
||
const selectFeatureToggles = createSelector( | ||
state => ({ | ||
isLoadingFeatureFlags: state?.featureToggles?.loading, | ||
isBrowserMonitoringEnabled: toggleValues(state)[ | ||
FEATURE_FLAG_NAMES.form1010dBrowserMonitoringEnabled | ||
], | ||
}), | ||
toggles => toggles, | ||
); | ||
|
||
const makeSelectFeatureToggles = () => selectFeatureToggles; | ||
|
||
export { makeSelectFeatureToggles }; |
22 changes: 22 additions & 0 deletions
22
src/applications/ivc-champva/10-10D/tests/unit/selectors/feature-toggles.unit.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { expect } from 'chai'; | ||
import { makeSelectFeatureToggles } from '../../../selectors/feature-toggles'; | ||
|
||
describe('ezr FeatureToggles selector', () => { | ||
const state = { | ||
featureToggles: { | ||
/* eslint-disable camelcase */ | ||
form1010d_browser_monitoring_enabled: true, | ||
loading: false, | ||
}, | ||
}; | ||
|
||
describe('when `makeSelectFeatureToggles` executes', () => { | ||
it('should return feature toggles', () => { | ||
const selectFeatureToggles = makeSelectFeatureToggles(); | ||
expect(selectFeatureToggles(state)).to.eql({ | ||
isLoadingFeatureFlags: false, | ||
isBrowserMonitoringEnabled: true, | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters