2815a86e0c
* algolia integration skeleton * Configuration Defaults * Implemented partial entries with lazy loading of complete file * Moved backend selection logic to actioncreators * basic pagination for entries * general search skeleton * Basic search result listing * Redo search for different search terms * search results pagination * Changing integration config & handling * Changing integration config & handling * new integration config model
34 lines
941 B
JavaScript
34 lines
941 B
JavaScript
import Immutable from 'immutable';
|
|
import _ from 'lodash';
|
|
import * as publishModes from '../constants/publishModes';
|
|
import { CONFIG_REQUEST, CONFIG_SUCCESS, CONFIG_FAILURE } from '../actions/config';
|
|
|
|
const defaults = {
|
|
publish_mode: publishModes.SIMPLE
|
|
};
|
|
|
|
const applyDefaults = (config) => {
|
|
// Make sure there is a public folder
|
|
_.set(defaults,
|
|
'public_folder',
|
|
config.media_folder.charAt(0) === '/' ? config.media_folder : '/' + config.media_folder);
|
|
|
|
return _.defaultsDeep(config, defaults);
|
|
};
|
|
|
|
const config = (state = null, action) => {
|
|
switch (action.type) {
|
|
case CONFIG_REQUEST:
|
|
return Immutable.Map({ isFetching: true });
|
|
case CONFIG_SUCCESS:
|
|
const config = applyDefaults(action.payload);
|
|
return Immutable.fromJS(config);
|
|
case CONFIG_FAILURE:
|
|
return Immutable.Map({ error: action.payload.toString() });
|
|
default:
|
|
return state;
|
|
}
|
|
};
|
|
|
|
export default config;
|