Code clean
This commit is contained in:
parent
e8261ca7e6
commit
174e9e09e8
|
@ -10,16 +10,15 @@ const DEFAULT_STATE = {
|
|||
const reducer = (state = DEFAULT_STATE, action) => {
|
||||
switch (action.type) {
|
||||
case TYPES.TOGGLE_EXPERIMENT:
|
||||
let experiments = [...state.experiments];
|
||||
experiments = experiments.map((experiment) => {
|
||||
if (experiment.name === action.experimentName) {
|
||||
experiment.variation = action.newVariation;
|
||||
}
|
||||
return experiment;
|
||||
});
|
||||
return {
|
||||
...state,
|
||||
experiments,
|
||||
experiments: state.experiments.map((experiment) => ({
|
||||
...experiment,
|
||||
variation:
|
||||
experiment.name === action.experimentName
|
||||
? action.newVariation
|
||||
: experiment.variation,
|
||||
})),
|
||||
};
|
||||
case TYPES.SET_EXPERIMENTS:
|
||||
return {
|
||||
|
|
|
@ -7,25 +7,17 @@ import { EXPERIMENT_NAME_PREFIX } from './constants';
|
|||
export function* getExperiments() {
|
||||
const storageItems = Object.entries({ ...window.localStorage }).filter(
|
||||
(item) => {
|
||||
if (item[0].indexOf(EXPERIMENT_NAME_PREFIX) === 0) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
return item[0].indexOf(EXPERIMENT_NAME_PREFIX) === 0;
|
||||
}
|
||||
);
|
||||
|
||||
const experiments = [];
|
||||
storageItems.forEach((storageItem) => {
|
||||
const experiments = storageItems.map((storageItem) => {
|
||||
const [key, value] = storageItem;
|
||||
const objectValue = JSON.parse(value);
|
||||
|
||||
const experiment = {
|
||||
return {
|
||||
name: key.replace(EXPERIMENT_NAME_PREFIX, ''),
|
||||
variation: objectValue.variationName
|
||||
? objectValue.variationName
|
||||
: 'control',
|
||||
variation: objectValue.variationName || 'control',
|
||||
};
|
||||
experiments.push(experiment);
|
||||
});
|
||||
|
||||
yield setExperiments(experiments);
|
||||
|
|
Loading…
Reference in New Issue