Code clean

This commit is contained in:
Moon 2022-02-22 10:27:42 -08:00
parent e8261ca7e6
commit 174e9e09e8
2 changed files with 11 additions and 20 deletions

View File

@ -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 {

View File

@ -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);