30 lines
698 B
TypeScript
30 lines
698 B
TypeScript
import { SORT_PREFERENCES } from '../actions/actionsTypes';
|
|
import { DisplayMode, SortBy } from '../lib/constants';
|
|
import { IPreferences, TApplicationActions } from '../definitions';
|
|
|
|
export const initialState: IPreferences = {
|
|
sortBy: SortBy.Activity,
|
|
groupByType: false,
|
|
showFavorites: false,
|
|
showUnread: false,
|
|
showAvatar: true,
|
|
displayMode: DisplayMode.Expanded
|
|
};
|
|
|
|
export default (state = initialState, action: TApplicationActions): IPreferences => {
|
|
switch (action.type) {
|
|
case SORT_PREFERENCES.SET_ALL:
|
|
return {
|
|
...state,
|
|
...action.preferences
|
|
};
|
|
case SORT_PREFERENCES.SET:
|
|
return {
|
|
...state,
|
|
...action.preference
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
};
|