You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
852 B
37 lines
852 B
import { cloneDeep } from 'lodash';
|
|
|
|
const version = 38;
|
|
|
|
/**
|
|
* The purpose of this migration is to assign all users to a test group for the fullScreenVsPopup a/b test
|
|
*/
|
|
export default {
|
|
version,
|
|
async migrate(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) {
|
|
return state;
|
|
}
|
|
|
|
return {
|
|
...state,
|
|
ABTestController: {
|
|
...ABTestControllerState,
|
|
abTests: {
|
|
...abTests,
|
|
fullScreenVsPopup: 'control',
|
|
},
|
|
},
|
|
};
|
|
}
|
|
|