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