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