2017-10-28 02:04:44 +11: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-25 13:09:35 +10:00
|
|
|
export const displayMedia = getMeta('display_media');
|
2018-09-24 13:44:01 +10:00
|
|
|
export const expandSpoilers = getMeta('expand_spoilers');
|
2017-10-30 02:10:15 +11:00
|
|
|
export const unfollowModal = getMeta('unfollow_modal');
|
|
|
|
export const boostModal = getMeta('boost_modal');
|
|
|
|
export const deleteModal = getMeta('delete_modal');
|
2017-10-31 13:27:48 +11:00
|
|
|
export const me = getMeta('me');
|
2018-03-02 16:02:42 +11:00
|
|
|
export const searchEnabled = getMeta('search_enabled');
|
2018-06-15 23:51:37 +10:00
|
|
|
export const invitesEnabled = getMeta('invites_enabled');
|
2019-04-21 12:41:34 +10:00
|
|
|
export const repository = getMeta('repository');
|
|
|
|
export const source_url = getMeta('source_url');
|
2018-07-14 11:56:34 +10:00
|
|
|
export const version = getMeta('version');
|
2018-10-12 13:04:08 +11:00
|
|
|
export const mascot = getMeta('mascot');
|
2018-12-31 04:57:50 +11:00
|
|
|
export const profile_directory = getMeta('profile_directory');
|
2019-01-04 23:10:43 +11:00
|
|
|
export const isStaff = getMeta('is_staff');
|
2019-05-26 05:27:00 +10:00
|
|
|
export const forceSingleColumn = !getMeta('advanced_layout');
|
2019-06-27 03:33:04 +10:00
|
|
|
export const useBlurhash = getMeta('use_blurhash');
|
2017-10-28 02:04:44 +11:00
|
|
|
|
|
|
|
export default initialState;
|