bigbuffet-rw/app/soapbox/reducers/soapbox.js

31 lines
940 B
JavaScript
Raw Normal View History

2020-08-23 10:48:45 -07:00
import { ADMIN_CONFIG_UPDATE_SUCCESS } from '../actions/admin';
import { SOAPBOX_CONFIG_REQUEST_SUCCESS } from '../actions/soapbox';
import { Map as ImmutableMap, List as ImmutableList, fromJS } from 'immutable';
import { ConfigDB } from 'soapbox/utils/config_db';
const initialState = ImmutableMap();
2020-08-23 10:48:45 -07:00
const updateFromAdmin = (state, config) => {
const configs = config.get('configs', ImmutableList());
try {
return ConfigDB.find(configs, ':pleroma', ':frontend_configurations')
.get('value')
.find(value => value.getIn(['tuple', 0]) === ':soapbox_fe')
.getIn(['tuple', 1]);
} catch {
return state;
}
2020-08-23 10:48:45 -07:00
};
export default function soapbox(state = initialState, action) {
switch(action.type) {
case SOAPBOX_CONFIG_REQUEST_SUCCESS:
return fromJS(action.soapboxConfig);
2020-08-23 10:48:45 -07:00
case ADMIN_CONFIG_UPDATE_SUCCESS:
return updateFromAdmin(state, fromJS(action.config));
default:
return state;
}
};