2017-06-06 23:19:12 +02:00
|
|
|
import * as types from "constants/action_types";
|
2017-06-28 09:12:01 +02:00
|
|
|
import lbry from "lbry";
|
2017-05-17 23:52:45 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
const reducers = {};
|
2017-06-28 09:12:01 +02:00
|
|
|
const defaultState = {
|
|
|
|
clientSettings: {
|
|
|
|
showNsfw: lbry.getClientSetting("showNsfw"),
|
2017-08-19 23:34:45 +02:00
|
|
|
themes: [],
|
2017-06-28 09:12:01 +02:00
|
|
|
},
|
|
|
|
};
|
2017-05-17 23:52:45 +02:00
|
|
|
|
|
|
|
reducers[types.DAEMON_SETTINGS_RECEIVED] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
2017-06-06 23:19:12 +02:00
|
|
|
daemonSettings: action.data.settings,
|
|
|
|
});
|
2017-06-06 06:21:55 +02:00
|
|
|
};
|
2017-05-17 23:52:45 +02:00
|
|
|
|
2017-06-28 09:12:01 +02:00
|
|
|
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,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-08-19 23:34:45 +02:00
|
|
|
reducers[types.GET_THEMES] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
themes: action.data.themes,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-05-17 23:52:45 +02:00
|
|
|
export default function reducer(state = defaultState, action) {
|
|
|
|
const handler = reducers[action.type];
|
|
|
|
if (handler) return handler(state, action);
|
|
|
|
return state;
|
|
|
|
}
|