2017-10-27 11:04:44 -04:00
|
|
|
const element = document.getElementById('initial-state');
|
|
|
|
const initialState = element && JSON.parse(element.textContent);
|
|
|
|
|
|
|
|
const getMeta = (prop) => initialState && initialState.meta && initialState.meta[prop];
|
|
|
|
|
|
|
|
export const reduceMotion = getMeta('reduce_motion');
|
|
|
|
export const autoPlayGif = getMeta('auto_play_gif');
|
2018-02-08 18:26:57 -05:00
|
|
|
export const displaySensitiveMedia = getMeta('display_sensitive_media');
|
2017-10-29 11:10:15 -04:00
|
|
|
export const unfollowModal = getMeta('unfollow_modal');
|
|
|
|
export const boostModal = getMeta('boost_modal');
|
|
|
|
export const deleteModal = getMeta('delete_modal');
|
2017-10-30 22:27:48 -04:00
|
|
|
export const me = getMeta('me');
|
2018-03-02 00:02:42 -05:00
|
|
|
export const searchEnabled = getMeta('search_enabled');
|
2017-10-27 11:04:44 -04:00
|
|
|
|
|
|
|
export default initialState;
|