File size: 4,818 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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
import { withStorageKey } from '@automattic/state-utils';
import { get, isEmpty, map, omit, omitBy } from 'lodash';
import {
IMPORTS_AUTHORS_SET_MAPPING,
IMPORTS_AUTHORS_START_MAPPING,
IMPORTS_IMPORT_CANCEL,
IMPORTS_IMPORT_LOCK,
IMPORTS_IMPORT_RECEIVE,
IMPORTS_IMPORT_RECEIVED_RESET,
IMPORTS_IMPORT_RESET,
IMPORTS_IMPORT_START,
IMPORTS_IMPORT_UNLOCK,
IMPORTS_START_IMPORTING,
IMPORTS_UPLOAD_FAILED,
IMPORTS_PRE_UPLOAD_FAILED,
IMPORTS_UPLOAD_COMPLETED,
IMPORTS_UPLOAD_SET_PROGRESS,
IMPORTS_UPLOAD_START,
} from 'calypso/state/action-types';
import { combineReducers, keyedReducer } from 'calypso/state/utils';
import { fromApi } from './api';
import { appStates } from './constants';
import siteImporter from './site-importer/reducer';
import uploads from './uploads/reducer';
import urlAnalyzer from './url-analyzer/reducer';
function isImporterStatusHydrated( state = false, action ) {
switch ( action.type ) {
case IMPORTS_IMPORT_RECEIVE:
return true;
case IMPORTS_IMPORT_RECEIVED_RESET:
return false;
}
return state;
}
function importerStatus( state = {}, action ) {
switch ( action.type ) {
case IMPORTS_IMPORT_CANCEL:
case IMPORTS_IMPORT_RESET:
return omit( state, action.importerId );
case IMPORTS_UPLOAD_FAILED:
return {
...state,
[ action.importerId ]: {
...state[ action.importerId ],
importerState: appStates.UPLOAD_FAILURE,
errorData: { type: 'uploadError', description: action.error },
},
};
case IMPORTS_PRE_UPLOAD_FAILED:
return {
...state,
[ action.importerId ]: {
...state[ action.importerId ],
importerState: appStates.UPLOAD_FAILURE,
errorData: { type: 'preUploadError', description: action.error, code: action.errorCode },
file: action.file,
},
};
case IMPORTS_UPLOAD_COMPLETED:
return {
...omit( state, action.importerId ),
[ action.importerStatus.importerId ]: action.importerStatus,
};
case IMPORTS_IMPORT_RECEIVE: {
// The REST endpoint returns an empty `[]` array if there are no known imports.
// In that case we don't update the `importerStatus` map, and only mark it as hydrated.
if ( isEmpty( action.importerStatus ) ) {
return state;
}
// don't receive the response if the importer is locked
if ( action.isLocked ) {
return state;
}
// convert the response with `fromApi` only after we know it's not empty
const newImporterStatus = fromApi( action.importerStatus );
return omitBy(
{
// filter the original set of importers...
...state,
// ...and the importer being received.
[ newImporterStatus.importerId ]: newImporterStatus,
},
( importer ) =>
[ appStates.CANCEL_PENDING, appStates.DEFUNCT, appStates.EXPIRED ].includes(
importer.importerState
)
);
}
case IMPORTS_AUTHORS_START_MAPPING:
return {
...state,
[ action.importerId ]: {
...state[ action.importerId ],
importerState: appStates.MAP_AUTHORS,
},
};
case IMPORTS_AUTHORS_SET_MAPPING:
return {
...state,
[ action.importerId ]: {
...state[ action.importerId ],
customData: {
...state[ action.importerId ]?.customData,
sourceAuthors: map(
get( state[ action.importerId ], 'customData.sourceAuthors' ),
( author ) =>
action.sourceAuthor.id === author.id
? {
...author,
mappedTo: action.targetAuthor,
}
: author
),
},
},
};
case IMPORTS_UPLOAD_SET_PROGRESS:
return {
...state,
[ action.importerId ]: {
...state[ action.importerId ],
percentComplete: ( action.uploadLoaded / ( action.uploadTotal + Number.EPSILON ) ) * 100,
},
};
case IMPORTS_IMPORT_START:
return {
...state,
[ action.importerId ]: {
importerId: action.importerId,
importerState: appStates.READY_FOR_UPLOAD,
site: { ID: action.siteId },
type: action.importerType,
},
};
case IMPORTS_START_IMPORTING:
return {
...state,
[ action.importerId ]: {
...state[ action.importerId ],
importerState: appStates.IMPORTING,
},
};
case IMPORTS_UPLOAD_START:
return {
...state,
[ action.importerId ]: {
...state[ action.importerId ],
importerState: appStates.UPLOADING,
filename: action.filename,
},
};
}
return state;
}
const importerLocks = keyedReducer( 'importerId', ( state = false, action ) => {
switch ( action.type ) {
case IMPORTS_IMPORT_LOCK:
return true;
case IMPORTS_IMPORT_UNLOCK:
return false;
}
return state;
} );
const combinedReducer = combineReducers( {
importerLocks,
importerStatus,
isImporterStatusHydrated,
uploads,
siteImporter,
urlAnalyzer,
} );
export default withStorageKey( 'imports', combinedReducer );
|