2017-12-03 23:26:40 -08:00
|
|
|
import { STORE_HYDRATE } from 'flavours/glitch/actions/store';
|
2020-11-15 20:16:39 -08:00
|
|
|
import { APP_LAYOUT_CHANGE } from 'flavours/glitch/actions/app';
|
2017-07-10 16:00:14 -07:00
|
|
|
import { Map as ImmutableMap } from 'immutable';
|
2022-10-11 01:41:15 -07:00
|
|
|
import { layoutFromWindow } from 'flavours/glitch/utils/is_mobile';
|
2016-08-26 10:12:19 -07:00
|
|
|
|
2017-07-10 16:00:14 -07:00
|
|
|
const initialState = ImmutableMap({
|
2017-04-14 17:32:42 -07:00
|
|
|
streaming_api_base_url: null,
|
2017-01-09 03:37:15 -08:00
|
|
|
access_token: null,
|
2020-11-15 20:16:39 -08:00
|
|
|
layout: layoutFromWindow(),
|
2022-07-04 17:41:40 -07:00
|
|
|
permissions: '0',
|
2017-01-09 03:37:15 -08:00
|
|
|
});
|
2016-08-26 10:12:19 -07:00
|
|
|
|
|
|
|
export default function meta(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-01-09 03:37:15 -08:00
|
|
|
case STORE_HYDRATE:
|
2020-11-15 20:16:39 -08:00
|
|
|
return state.merge(
|
|
|
|
action.state.get('meta'))
|
|
|
|
.set('permissions', action.state.getIn(['role', 'permissions']))
|
|
|
|
.set('layout', layoutFromWindow(action.state.getIn(['local_settings', 'layout']))
|
|
|
|
);
|
|
|
|
case APP_LAYOUT_CHANGE:
|
|
|
|
return state.set('layout', action.layout);
|
2017-01-09 03:37:15 -08:00
|
|
|
default:
|
|
|
|
return state;
|
2016-08-26 10:12:19 -07:00
|
|
|
}
|
2016-09-12 10:20:55 -07:00
|
|
|
};
|