2017-08-14 09:00:47 -04:00
|
|
|
import { get } from 'lodash';
|
|
|
|
import { Map } from 'immutable';
|
|
|
|
import uuid from 'uuid/v4';
|
|
|
|
import {
|
|
|
|
MEDIA_LIBRARY_OPEN,
|
|
|
|
MEDIA_LIBRARY_CLOSE,
|
|
|
|
MEDIA_INSERT,
|
|
|
|
MEDIA_LOAD_REQUEST,
|
|
|
|
MEDIA_LOAD_SUCCESS,
|
|
|
|
MEDIA_LOAD_FAILURE,
|
|
|
|
MEDIA_PERSIST_REQUEST,
|
|
|
|
MEDIA_PERSIST_SUCCESS,
|
|
|
|
MEDIA_PERSIST_FAILURE,
|
|
|
|
MEDIA_DELETE_REQUEST,
|
|
|
|
MEDIA_DELETE_SUCCESS,
|
|
|
|
MEDIA_DELETE_FAILURE,
|
|
|
|
} from '../actions/mediaLibrary';
|
|
|
|
|
|
|
|
const mediaLibrary = (state = Map({ isVisible: false, controlMedia: Map() }), action) => {
|
|
|
|
switch (action.type) {
|
|
|
|
case MEDIA_LIBRARY_OPEN: {
|
|
|
|
const { controlID, forImage } = action.payload || {};
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('isVisible', true);
|
|
|
|
map.set('forImage', forImage);
|
|
|
|
map.set('controlID', controlID);
|
|
|
|
map.set('canInsert', !!controlID);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
case MEDIA_LIBRARY_CLOSE:
|
|
|
|
return state.set('isVisible', false);
|
|
|
|
case MEDIA_INSERT: {
|
|
|
|
const controlID = state.get('controlID');
|
|
|
|
const mediaPath = get(action, ['payload', 'mediaPath']);
|
|
|
|
return state.setIn(['controlMedia', controlID], mediaPath);
|
|
|
|
}
|
|
|
|
case MEDIA_LOAD_REQUEST:
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('isLoading', true);
|
|
|
|
map.set('isPaginating', action.payload.page > 1);
|
|
|
|
});
|
|
|
|
case MEDIA_LOAD_SUCCESS: {
|
2017-11-09 16:14:34 -05:00
|
|
|
const { files = [], page, canPaginate, dynamicSearch, dynamicSearchQuery } = action.payload;
|
2017-08-14 09:00:47 -04:00
|
|
|
const filesWithKeys = files.map(file => ({ ...file, key: uuid() }));
|
|
|
|
return state.withMutations(map => {
|
|
|
|
map.set('isLoading', false);
|
|
|
|
map.set('isPaginating', false);
|
|
|
|
map.set('page', page);
|
2017-11-09 16:14:34 -05:00
|
|
|
map.set('hasNextPage', canPaginate && files.length > 0);
|
2017-08-14 09:00:47 -04:00
|
|
|
map.set('dynamicSearch', dynamicSearch);
|
|
|
|
map.set('dynamicSearchQuery', dynamicSearchQuery);
|
|
|
|
map.set('dynamicSearchActive', !!dynamicSearchQuery);
|
|
|
|
if (page && page > 1) {
|
|
|
|
const updatedFiles = map.get('files').concat(filesWithKeys);
|
|
|
|
map.set('files', updatedFiles);
|
|
|
|
} else {
|
|
|
|
map.set('files', filesWithKeys);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
case MEDIA_LOAD_FAILURE:
|
|
|
|
return state.set('isLoading', false);
|
|
|
|
case MEDIA_PERSIST_REQUEST:
|
|
|
|
return state.set('isPersisting', true);
|
|
|
|
case MEDIA_PERSIST_SUCCESS: {
|
|
|
|
const { file } = action.payload;
|
|
|
|
return state.withMutations(map => {
|
|
|
|
const fileWithKey = { ...file, key: uuid() };
|
|
|
|
const updatedFiles = [fileWithKey, ...map.get('files')];
|
|
|
|
map.set('files', updatedFiles);
|
|
|
|
map.set('isPersisting', false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
case MEDIA_PERSIST_FAILURE:
|
|
|
|
return state.set('isPersisting', false);
|
|
|
|
case MEDIA_DELETE_REQUEST:
|
|
|
|
return state.set('isDeleting', true);
|
|
|
|
case MEDIA_DELETE_SUCCESS: {
|
|
|
|
const { key } = action.payload.file;
|
|
|
|
return state.withMutations(map => {
|
|
|
|
const updatedFiles = map.get('files').filter(file => file.key !== key);
|
|
|
|
map.set('files', updatedFiles);
|
|
|
|
map.set('isDeleting', false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
case MEDIA_DELETE_FAILURE:
|
|
|
|
return state.set('isDeleting', false);
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default mediaLibrary;
|