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