File size: 2,520 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
import { combineReducers } from '@wordpress/data';
import { findIndex } from 'lodash';
import type { Action } from './actions';
import type { SubscriberState } from './types';
import type { Reducer } from 'redux';
export const subscriber: Reducer< SubscriberState, Action > = ( state = {}, action ) => {
/**
* ↓ Import subscribers
*/
if ( action.type === 'IMPORT_CSV_SUBSCRIBERS_START' ) {
return Object.assign( {}, state, {
import: {
inProgress: true,
file: action.file,
emails: action.emails,
},
} );
} else if ( action.type === 'IMPORT_CSV_SUBSCRIBERS_START_SUCCESS' ) {
const imports = Array.from( state.imports || [] );
imports.push( {
id: action.jobId,
status: 'pending',
} );
return Object.assign( {}, state, {
import: {
inProgress: true,
job: { id: action.jobId },
},
imports,
} );
} else if ( action.type === 'IMPORT_CSV_SUBSCRIBERS_START_FAILED' ) {
return Object.assign( {}, state, {
import: {
inProgress: false,
error: action.error,
},
} );
} else if ( action.type === 'IMPORT_CSV_SUBSCRIBERS_UPDATE' ) {
if ( action.job ) {
return Object.assign( {}, state, {
import: {
inProgress: true,
job: action.job,
},
} );
}
return Object.assign( {}, state, {
import: {
inProgress: false,
error: undefined,
},
} );
}
/**
* ↓ Add subscribers
*/
if ( action.type === 'ADD_SUBSCRIBERS_START' ) {
return Object.assign( {}, state, {
add: { inProgress: true },
} );
} else if ( action.type === 'ADD_SUBSCRIBERS_SUCCESS' ) {
return Object.assign( {}, state, {
add: {
inProgress: false,
response: action.response,
},
} );
} else if ( action.type === 'ADD_SUBSCRIBERS_FAILED' ) {
return Object.assign( {}, state, {
add: { inProgress: false },
} );
}
/**
* ↓ Get import
*/
if ( action.type === 'GET_SUBSCRIBERS_IMPORT_SUCCESS' ) {
const imports = state.imports ? Array.from( state.imports ) : [];
const i = findIndex( imports, { id: action.importJob.id } );
i !== -1 ? ( imports[ i ] = action.importJob ) : imports.push( action.importJob );
return Object.assign( {}, state, {
imports,
} );
}
/**
* ↓ Get imports
*/
if ( action.type === 'GET_SUBSCRIBERS_IMPORTS_SUCCESS' ) {
return Object.assign( {}, state, {
imports: action.imports,
hydrated: true,
} );
}
return state;
};
const reducers = combineReducers( { subscriber } );
export type State = ReturnType< typeof reducers >;
export default reducers;
|