mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
398a45bfdd
This was done to reduce the number of direct dependencies we have. It should be functionally equivalent. The bundle size should not change, as we use `clone` as a transitive dependency in a number of places.
38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
const version = 38
|
|
import { cloneDeep } from 'lodash'
|
|
import ABTestController from '../controllers/ab-test'
|
|
import { getRandomArrayItem } from '../lib/util'
|
|
|
|
/**
|
|
* The purpose of this migration is to assign all users to a test group for the fullScreenVsPopup a/b test
|
|
*/
|
|
export default {
|
|
version,
|
|
migrate: async function (originalVersionedData) {
|
|
const versionedData = cloneDeep(originalVersionedData)
|
|
versionedData.meta.version = version
|
|
const state = versionedData.data
|
|
versionedData.data = transformState(state)
|
|
return versionedData
|
|
},
|
|
}
|
|
|
|
function transformState (state) {
|
|
const { ABTestController: ABTestControllerState = {} } = state
|
|
const { abTests = {} } = ABTestControllerState
|
|
|
|
if (!abTests.fullScreenVsPopup) {
|
|
state = {
|
|
...state,
|
|
ABTestController: {
|
|
...ABTestControllerState,
|
|
abTests: {
|
|
...abTests,
|
|
fullScreenVsPopup: getRandomArrayItem(ABTestController.abTestGroupNames.fullScreenVsPopup),
|
|
},
|
|
},
|
|
}
|
|
}
|
|
return state
|
|
}
|