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',
|
2018-07-11 20:49:07 +00:00
|
|
|
side_arm_reply_mode : 'keep',
|
2018-08-22 11:17:21 +00:00
|
|
|
show_reply_count : false,
|
2018-08-22 13:58:57 +00:00
|
|
|
always_show_spoilers_field: false,
|
2018-08-29 13:26:24 +00:00
|
|
|
confirm_missing_media_description: false,
|
2018-11-27 17:25:51 +00:00
|
|
|
confirm_before_clearing_draft: true,
|
2018-09-28 18:58:03 +00:00
|
|
|
preselect_on_reply: true,
|
2018-10-30 13:46:48 +00:00
|
|
|
inline_preview_cards: true,
|
2018-08-28 12:10:26 +00:00
|
|
|
content_warnings : ImmutableMap({
|
|
|
|
auto_unfold : false,
|
2018-08-28 15:16:30 +00:00
|
|
|
filter : null,
|
2018-08-28 12:10:26 +00:00
|
|
|
}),
|
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,
|
|
|
|
}),
|
2018-09-29 23:44:02 +00:00
|
|
|
show_action_bar : true,
|
2017-11-18 03:11:18 +00:00
|
|
|
}),
|
|
|
|
media : ImmutableMap({
|
|
|
|
letterbox : true,
|
|
|
|
fullwidth : true,
|
|
|
|
}),
|
2018-09-06 18:55:11 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
};
|