mastodon/app/javascript/flavours/glitch/reducers/local_settings.js

58 lines
1.5 KiB
JavaScript
Raw Normal View History

2017-11-18 03:11:18 +00:00
// Package imports.
import { Map as ImmutableMap } from 'immutable';
// Our imports.
2017-12-04 07:26:40 +00:00
import { STORE_HYDRATE } from 'flavours/glitch/actions/store';
import { LOCAL_SETTING_CHANGE } from 'flavours/glitch/actions/local_settings';
2017-11-18 03:11:18 +00:00
const initialState = ImmutableMap({
layout : 'auto',
stretch : true,
navbar_under : false,
side_arm : 'none',
side_arm_reply_mode : 'keep',
show_reply_count : false,
always_show_spoilers_field: false,
confirm_missing_media_description: false,
content_warnings : ImmutableMap({
auto_unfold : false,
filter : null,
}),
2017-11-18 03:11:18 +00:00
collapsed : ImmutableMap({
enabled : true,
auto : ImmutableMap({
all : false,
notifications : true,
lengthy : true,
reblogs : false,
replies : false,
media : false,
}),
backgrounds : ImmutableMap({
user_backgrounds : false,
preview_images : false,
}),
}),
media : ImmutableMap({
letterbox : true,
fullwidth : true,
}),
notifications : ImmutableMap({
favicon_badge : false,
tab_badge : true,
}),
2017-11-18 03:11:18 +00:00
});
const hydrate = (state, localSettings) => state.mergeDeep(localSettings);
export default function localSettings(state = initialState, action) {
switch(action.type) {
case STORE_HYDRATE:
return hydrate(state, action.state.get('local_settings'));
case LOCAL_SETTING_CHANGE:
return state.setIn(action.key, action.value);
default:
return state;
}
};