32 lines
793 B
JavaScript
32 lines
793 B
JavaScript
import * as types from "constants/action_types";
|
|
import lbry from "lbry";
|
|
|
|
const reducers = {};
|
|
const defaultState = {
|
|
clientSettings: {
|
|
showNsfw: lbry.getClientSetting("showNsfw"),
|
|
},
|
|
};
|
|
|
|
reducers[types.DAEMON_SETTINGS_RECEIVED] = function(state, action) {
|
|
return Object.assign({}, state, {
|
|
daemonSettings: action.data.settings,
|
|
});
|
|
};
|
|
|
|
reducers[types.CLIENT_SETTING_CHANGED] = function(state, action) {
|
|
const { key, value } = action.data;
|
|
const clientSettings = Object.assign({}, state.clientSettings);
|
|
|
|
clientSettings[key] = value;
|
|
|
|
return Object.assign({}, state, {
|
|
clientSettings,
|
|
});
|
|
};
|
|
|
|
export default function reducer(state = defaultState, action) {
|
|
const handler = reducers[action.type];
|
|
if (handler) return handler(state, action);
|
|
return state;
|
|
}
|