2017-10-27 10:04:44 -05: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-09-24 22:09:35 -05:00
|
|
|
export const displayMedia = getMeta('display_media');
|
2018-09-23 22:44:01 -05:00
|
|
|
export const expandSpoilers = getMeta('expand_spoilers');
|
2017-10-29 10:10:15 -05:00
|
|
|
export const unfollowModal = getMeta('unfollow_modal');
|
|
|
|
|
export const boostModal = getMeta('boost_modal');
|
|
|
|
|
export const deleteModal = getMeta('delete_modal');
|
2017-10-30 21:27:48 -05:00
|
|
|
export const me = getMeta('me');
|
2018-03-01 23:02:42 -06:00
|
|
|
export const searchEnabled = getMeta('search_enabled');
|
2018-06-15 08:51:37 -05:00
|
|
|
export const invitesEnabled = getMeta('invites_enabled');
|
2018-07-13 20:56:34 -05:00
|
|
|
export const version = getMeta('version');
|
2018-10-11 21:04:08 -05:00
|
|
|
export const mascot = getMeta('mascot');
|
2018-12-30 11:57:50 -06:00
|
|
|
export const profile_directory = getMeta('profile_directory');
|
2019-01-04 06:10:43 -06:00
|
|
|
export const isStaff = getMeta('is_staff');
|
2017-10-27 10:04:44 -05:00
|
|
|
|
|
|
|
|
export default initialState;
|